diff --git a/vpr/src/route/rr_graph.cpp b/vpr/src/route/rr_graph.cpp index 6ee435d8367..dc678d20913 100644 --- a/vpr/src/route/rr_graph.cpp +++ b/vpr/src/route/rr_graph.cpp @@ -94,30 +94,67 @@ 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 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_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 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 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_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 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_to_curr_seg_type-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, - const int Fc, - const t_physical_tile_type_ptr Type, + const int seg_index, + const int max_Fc, + 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, @@ -297,18 +334,46 @@ 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 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* + * + */ 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); +/** + * @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_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* + * + */ static void load_perturbed_connection_block_pattern(vtr::NdMatrix& tracks_connected_to_pin, 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); @@ -1203,7 +1268,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)"); } @@ -1317,8 +1382,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()); @@ -3379,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, @@ -3389,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] }); @@ -3410,26 +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, 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, 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 iwidth = 0; iwidth < Type->width; iwidth++) { - for (int iheight = 0; iheight < Type->height; iheight++) { + 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 < 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 < max_Fc; iconn++) { - for (auto connected_layer : get_layers_pin_is_connected_to(Type, type_layer_index, ipin)) { + for (int iconn = 0; iconn < cur_Fc; iconn++) { + 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); @@ -3455,9 +3521,11 @@ 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 t_physical_tile_type_ptr Type, + const int seg_index, + const int max_Fc, + const t_physical_tile_type_ptr tile_type, const std::set type_layer, const bool perturb_switch_pattern, const e_directionality directionality) { @@ -3471,26 +3539,19 @@ 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) { + 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(Fc) //[0..Fc-1] + size_t(max_Fc) //[0..Fc-1] }, OPEN); //Unconnected @@ -3499,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] }, @@ -3512,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]++; } @@ -3559,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 */ } @@ -3599,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"); @@ -3609,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; @@ -3630,22 +3691,22 @@ 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, Fc, seg_index, 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 - 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: @@ -3685,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++; @@ -3706,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); @@ -3725,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 @@ -3733,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); } @@ -3779,9 +3840,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 * @@ -3859,7 +3921,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 @@ -3873,19 +3935,22 @@ 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); /* 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. */ @@ -3912,7 +3977,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; @@ -3987,7 +4052,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 * @@ -4002,10 +4068,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) { @@ -4015,8 +4077,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); @@ -4088,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, @@ -4127,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()); 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 99ab1e50cc5..8e03af2eb66 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 7.14 vpr 62.72 MiB -1 -1 0.37 18464 14 0.25 -1 -1 32772 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 277 309 1 207 91 17 17 289 -1 unnamed_device 23.9 MiB 0.42 1302 6007 1134 4530 343 62.7 MiB 0.07 0.00 8.06507 -165.8 -8.06507 8.06507 0.66 0.00125285 0.00118605 0.0298742 0.0277331 38 3079 21 6.55708e+06 325485 638502. 2209.35 3.54 0.278387 0.238683 23326 155178 -1 2542 18 1049 3126 148192 34301 6.81156 6.81156 -153.807 -6.81156 0 0 851065. 2944.86 0.22 0.07 0.13 -1 -1 0.22 0.0331119 0.0290435 184 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 7.03 vpr 62.76 MiB -1 -1 0.36 18524 14 0.28 -1 -1 32792 -1 -1 30 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 30 32 272 304 1 211 92 17 17 289 -1 unnamed_device 23.8 MiB 0.42 1258 10442 2540 7122 780 62.8 MiB 0.10 0.00 8.22247 -160.403 -8.22247 8.22247 0.66 0.000900411 0.000831524 0.0496397 0.045709 34 3281 19 6.55708e+06 361650 585099. 2024.56 3.37 0.293576 0.252736 22462 138074 -1 2855 18 1244 3629 199635 46848 7.04996 7.04996 -153.96 -7.04996 0 0 742403. 2568.87 0.20 0.08 0.12 -1 -1 0.20 0.0333648 0.0292402 184 184 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 5.41 vpr 62.80 MiB -1 -1 0.32 18040 11 0.22 -1 -1 32580 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 280 312 1 203 91 17 17 289 -1 unnamed_device 23.9 MiB 0.26 1264 8863 2060 5892 911 62.8 MiB 0.09 0.00 7.11975 -140.004 -7.11975 7.11975 0.66 0.000859212 0.000790002 0.0427845 0.0396421 36 3173 19 6.55708e+06 325485 612192. 2118.31 2.02 0.217093 0.188203 22750 144809 -1 2760 15 1101 3755 203186 46560 6.31024 6.31024 -137.874 -6.31024 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0297723 0.0262537 186 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 6.15 vpr 62.88 MiB -1 -1 0.34 18216 12 0.35 -1 -1 32664 -1 -1 31 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 29 32 275 307 1 205 92 17 17 289 -1 unnamed_device 23.9 MiB 0.43 1219 12719 3492 7061 2166 62.9 MiB 0.12 0.00 7.73186 -145.655 -7.73186 7.73186 0.69 0.000904693 0.00083497 0.0593236 0.054898 34 3645 27 6.55708e+06 373705 585099. 2024.56 2.39 0.243727 0.211662 22462 138074 -1 2819 18 1400 4397 251853 59239 6.56852 6.56852 -134.924 -6.56852 0 0 742403. 2568.87 0.20 0.09 0.12 -1 -1 0.20 0.0339786 0.0297771 190 190 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 12.99 vpr 63.03 MiB -1 -1 0.36 18536 13 0.27 -1 -1 32760 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 302 334 1 238 96 17 17 289 -1 unnamed_device 24.1 MiB 0.40 1537 9294 2316 6044 934 63.0 MiB 0.10 0.00 7.74403 -165.695 -7.74403 7.74403 0.65 0.000976527 0.000903928 0.0456228 0.0422018 28 4772 43 6.55708e+06 385760 500653. 1732.36 9.38 0.30691 0.264752 21310 115450 -1 3677 17 1667 4671 277990 64212 6.9195 6.9195 -161.915 -6.9195 0 0 612192. 2118.31 0.17 0.10 0.10 -1 -1 0.17 0.0350853 0.0308436 211 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 5.02 vpr 62.72 MiB -1 -1 0.37 18656 13 0.24 -1 -1 32720 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 292 324 1 216 94 17 17 289 -1 unnamed_device 23.8 MiB 0.33 1429 10318 2408 6874 1036 62.7 MiB 0.10 0.00 7.55004 -148.529 -7.55004 7.55004 0.70 0.000938339 0.000868462 0.0490933 0.0454435 30 3702 21 6.55708e+06 361650 526063. 1820.29 1.42 0.163343 0.143339 21886 126133 -1 3032 18 1348 4431 211919 49585 6.6027 6.6027 -144.169 -6.6027 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.0356151 0.0312959 199 198 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 4.45 vpr 62.16 MiB -1 -1 0.30 18108 12 0.19 -1 -1 32604 -1 -1 28 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63652 27 32 229 261 1 178 87 17 17 289 -1 unnamed_device 23.5 MiB 0.22 1042 7383 1841 5010 532 62.2 MiB 0.07 0.00 7.10318 -127.218 -7.10318 7.10318 0.66 0.000744709 0.000690449 0.0313116 0.0290229 28 2706 23 6.55708e+06 337540 500653. 1732.36 1.26 0.123241 0.107766 21310 115450 -1 2392 22 1205 3250 240801 75713 6.43104 6.43104 -126.122 -6.43104 0 0 612192. 2118.31 0.18 0.10 0.10 -1 -1 0.18 0.0322999 0.0282077 152 150 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 6.23 vpr 62.30 MiB -1 -1 0.32 18052 12 0.22 -1 -1 32688 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 31 32 229 261 1 185 86 17 17 289 -1 unnamed_device 23.4 MiB 0.25 1218 7457 1700 4721 1036 62.3 MiB 0.07 0.00 6.26429 -136.408 -6.26429 6.26429 0.68 0.000580322 0.000526755 0.0312198 0.0287395 36 3013 36 6.55708e+06 277265 612192. 2118.31 2.88 0.194984 0.168436 22750 144809 -1 2535 19 1046 3086 172167 39148 5.56972 5.56972 -130.236 -5.56972 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0286494 0.0251134 141 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 5.31 vpr 62.47 MiB -1 -1 0.32 18112 12 0.20 -1 -1 32596 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63972 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 23.5 MiB 0.24 1147 11573 2830 6597 2146 62.5 MiB 0.10 0.00 6.46263 -134.738 -6.46263 6.46263 0.66 0.000745577 0.000690541 0.0465846 0.0431429 28 3212 35 6.55708e+06 313430 500653. 1732.36 1.98 0.161481 0.141896 21310 115450 -1 2789 20 1233 3134 288271 89181 5.93292 5.93292 -138.747 -5.93292 0 0 612192. 2118.31 0.18 0.10 0.10 -1 -1 0.18 0.0304253 0.0266367 150 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 4.57 vpr 62.44 MiB -1 -1 0.27 18052 13 0.21 -1 -1 32700 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 23.5 MiB 0.29 1201 7613 1790 5065 758 62.4 MiB 0.07 0.00 7.6044 -163.149 -7.6044 7.6044 0.66 0.000809486 0.000751572 0.034173 0.031644 28 3358 45 6.55708e+06 301375 500653. 1732.36 1.33 0.16057 0.139581 21310 115450 -1 2771 16 1141 3137 179678 42083 6.54924 6.54924 -157.958 -6.54924 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0280525 0.0247342 157 156 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 4.80 vpr 61.96 MiB -1 -1 0.31 18072 12 0.20 -1 -1 32524 -1 -1 24 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63448 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 23.4 MiB 0.37 975 6890 1484 5091 315 62.0 MiB 0.06 0.00 7.2876 -142.231 -7.2876 7.2876 0.65 0.000700847 0.000649347 0.0281714 0.0261292 28 2669 16 6.55708e+06 289320 500653. 1732.36 1.49 0.108797 0.0951869 21310 115450 -1 2344 20 978 2637 155411 35551 6.35264 6.35264 -138.448 -6.35264 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0286087 0.0249574 132 128 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 4.92 vpr 62.04 MiB -1 -1 0.30 18136 12 0.15 -1 -1 32580 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63528 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 23.4 MiB 0.23 1124 10859 2500 7050 1309 62.0 MiB 0.09 0.00 6.80891 -152.833 -6.80891 6.80891 0.66 0.000733578 0.000678211 0.0447912 0.0414486 28 3221 50 6.55708e+06 265210 500653. 1732.36 1.84 0.167251 0.146031 21310 115450 -1 2684 17 1091 2924 168986 40534 6.36992 6.36992 -151.051 -6.36992 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0266778 0.023439 146 142 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 7.21 vpr 62.72 MiB -1 -1 0.35 18496 13 0.24 -1 -1 32748 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 283 315 1 222 93 17 17 289 -1 unnamed_device 23.8 MiB 0.31 1356 6603 1407 4412 784 62.7 MiB 0.07 0.00 8.08695 -168.334 -8.08695 8.08695 0.81 0.000940293 0.000872054 0.0326793 0.0303155 44 2909 15 6.55708e+06 349595 742403. 2568.87 3.52 0.279022 0.240476 24478 177802 -1 2461 15 1005 2960 138391 32617 7.32896 7.32896 -158.351 -7.32896 0 0 937218. 3242.97 0.25 0.07 0.16 -1 -1 0.25 0.0302965 0.0267535 191 189 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 8.41 vpr 62.75 MiB -1 -1 0.37 18472 14 0.31 -1 -1 32704 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 23.8 MiB 0.40 1549 7123 1334 5022 767 62.7 MiB 0.08 0.00 8.74533 -181.262 -8.74533 8.74533 0.65 0.000966653 0.000895006 0.0362306 0.0335558 36 3900 33 6.55708e+06 361650 612192. 2118.31 4.73 0.38933 0.333569 22750 144809 -1 3120 17 1318 3696 194391 45419 7.48896 7.48896 -166.817 -7.48896 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0355178 0.0312677 211 209 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 7.52 vpr 62.23 MiB -1 -1 0.29 17984 11 0.17 -1 -1 32512 -1 -1 27 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63724 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 23.6 MiB 0.22 935 9838 2446 5532 1860 62.2 MiB 0.08 0.00 6.43815 -124.278 -6.43815 6.43815 0.66 0.000722864 0.000669295 0.0393288 0.0364116 36 2455 49 6.55708e+06 325485 612192. 2118.31 4.23 0.272476 0.234464 22750 144809 -1 2074 16 1026 2882 145880 37165 5.56972 5.56972 -118.41 -5.56972 0 0 782063. 2706.10 0.22 0.07 0.13 -1 -1 0.22 0.0250507 0.0220408 147 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 11.30 vpr 62.77 MiB -1 -1 0.33 18632 12 0.29 -1 -1 32716 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 23.8 MiB 0.45 1403 9865 2364 6534 967 62.8 MiB 0.10 0.00 7.61832 -157.97 -7.61832 7.61832 0.65 0.000979143 0.000907484 0.0472703 0.0437639 34 4162 40 6.55708e+06 397815 585099. 2024.56 7.53 0.374961 0.323097 22462 138074 -1 3561 16 1531 5053 312901 69003 7.03204 7.03204 -158.379 -7.03204 0 0 742403. 2568.87 0.20 0.11 0.12 -1 -1 0.20 0.0343731 0.0303327 209 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 6.74 vpr 62.64 MiB -1 -1 0.34 18288 14 0.24 -1 -1 32780 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 23.8 MiB 0.28 1439 7653 1673 5509 471 62.6 MiB 0.08 0.00 7.67629 -159.38 -7.67629 7.67629 0.67 0.00106782 0.000975084 0.0377232 0.0348718 34 3661 29 6.55708e+06 349595 585099. 2024.56 3.30 0.297527 0.255432 22462 138074 -1 3227 16 1393 4155 254677 56826 6.78964 6.78964 -153.354 -6.78964 0 0 742403. 2568.87 0.20 0.09 0.12 -1 -1 0.20 0.031243 0.0274272 184 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 8.23 vpr 61.99 MiB -1 -1 0.30 18332 12 0.17 -1 -1 32392 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63480 32 32 227 259 1 178 87 17 17 289 -1 unnamed_device 23.4 MiB 0.32 1135 6807 1403 4768 636 62.0 MiB 0.08 0.00 7.47584 -167.104 -7.47584 7.47584 0.67 0.00074343 0.000689144 0.0376415 0.0350647 28 2836 44 6.55708e+06 277265 500653. 1732.36 4.89 0.23676 0.204764 21310 115450 -1 2503 18 941 2794 164839 37617 6.2395 6.2395 -153.848 -6.2395 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0282205 0.0248075 141 133 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 4.13 vpr 61.62 MiB -1 -1 0.27 17608 10 0.10 -1 -1 32384 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63100 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 23.0 MiB 0.16 826 8378 2614 4173 1591 61.6 MiB 0.07 0.00 5.4738 -124.829 -5.4738 5.4738 0.68 0.000562661 0.000522956 0.0308117 0.0286084 26 2202 45 6.55708e+06 192880 477104. 1650.88 1.23 0.113593 0.0991162 21022 109990 -1 1904 17 700 1663 136686 38924 4.68146 4.68146 -121.566 -4.68146 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0202265 0.0176632 91 87 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 7.83 vpr 62.35 MiB -1 -1 0.34 18004 13 0.18 -1 -1 32616 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63848 31 32 231 263 1 186 87 17 17 289 -1 unnamed_device 23.4 MiB 0.36 1089 7959 1662 5544 753 62.4 MiB 0.08 0.00 7.1116 -151.06 -7.1116 7.1116 0.78 0.000752731 0.000697107 0.0342957 0.031469 28 3001 25 6.55708e+06 289320 500653. 1732.36 4.33 0.225631 0.194806 21310 115450 -1 2590 18 1129 2937 165578 39108 6.72852 6.72852 -153.683 -6.72852 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.028428 0.0249674 149 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 5.74 vpr 62.84 MiB -1 -1 0.34 18536 13 0.27 -1 -1 32856 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 23.9 MiB 0.39 1422 6791 1371 4904 516 62.8 MiB 0.08 0.00 8.24149 -161.982 -8.24149 8.24149 0.70 0.00117347 0.00104835 0.0342775 0.0316591 28 3890 47 6.55708e+06 373705 500653. 1732.36 2.07 0.193632 0.168283 21310 115450 -1 3314 25 1965 6443 496259 165088 7.09316 7.09316 -157.694 -7.09316 0 0 612192. 2118.31 0.18 0.17 0.10 -1 -1 0.18 0.0463705 0.0405172 211 210 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 6.61 vpr 62.76 MiB -1 -1 0.38 18616 13 0.27 -1 -1 32468 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 23.9 MiB 0.44 1571 7639 1725 5480 434 62.8 MiB 0.09 0.00 7.9256 -167.417 -7.9256 7.9256 0.66 0.000929735 0.000860984 0.0394613 0.0364206 38 3822 44 6.55708e+06 325485 638502. 2209.35 2.90 0.215672 0.187505 23326 155178 -1 3247 15 1389 4538 246880 54439 6.98824 6.98824 -156.279 -6.98824 0 0 851065. 2944.86 0.22 0.09 0.14 -1 -1 0.22 0.0314134 0.0277449 194 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 3.78 vpr 61.54 MiB -1 -1 0.27 17756 9 0.10 -1 -1 32296 -1 -1 24 26 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63012 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 22.9 MiB 0.18 719 6668 1593 4477 598 61.5 MiB 0.05 0.00 4.68552 -94.026 -4.68552 4.68552 0.66 0.000512246 0.000476806 0.0207636 0.0193017 26 1778 19 6.55708e+06 289320 477104. 1650.88 0.86 0.0782395 0.0682055 21022 109990 -1 1584 15 597 1508 93970 21931 4.38194 4.38194 -95.8946 -4.38194 0 0 585099. 2024.56 0.17 0.05 0.10 -1 -1 0.17 0.0169054 0.0147885 87 76 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 5.35 vpr 62.55 MiB -1 -1 0.32 18308 13 0.32 -1 -1 32764 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 23.7 MiB 0.22 1351 10979 3098 6336 1545 62.5 MiB 0.11 0.00 8.17761 -160.563 -8.17761 8.17761 0.66 0.000927092 0.0008591 0.0548858 0.0508008 30 3690 26 6.55708e+06 301375 526063. 1820.29 1.79 0.173987 0.152849 21886 126133 -1 2989 16 1337 4047 197784 46628 7.2847 7.2847 -155.953 -7.2847 0 0 666494. 2306.21 0.26 0.08 0.12 -1 -1 0.26 0.0314382 0.0277119 193 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 5.21 vpr 61.35 MiB -1 -1 0.23 17828 8 0.10 -1 -1 32136 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62824 32 32 154 186 1 120 79 17 17 289 -1 unnamed_device 22.8 MiB 0.14 651 6501 1478 4780 243 61.4 MiB 0.05 0.00 4.41277 -92.7441 -4.41277 4.41277 0.66 0.000512563 0.000476039 0.0211761 0.0196855 28 1783 21 6.55708e+06 180825 500653. 1732.36 2.43 0.165895 0.142143 21310 115450 -1 1603 14 636 1411 82033 20644 3.82214 3.82214 -95.8147 -3.82214 0 0 612192. 2118.31 0.18 0.04 0.11 -1 -1 0.18 0.0160313 0.0140854 77 60 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 5.65 vpr 62.54 MiB -1 -1 0.33 18016 15 0.23 -1 -1 32816 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 254 286 1 197 90 17 17 289 -1 unnamed_device 23.5 MiB 0.39 1196 7728 1698 5709 321 62.5 MiB 0.08 0.00 8.17826 -163.063 -8.17826 8.17826 0.72 0.00083906 0.000778188 0.0353938 0.0328128 34 3092 21 6.55708e+06 313430 585099. 2024.56 1.76 0.18835 0.163666 22462 138074 -1 2774 63 2684 8832 1170555 624055 7.22924 7.22924 -156.603 -7.22924 0 0 742403. 2568.87 0.20 0.40 0.12 -1 -1 0.20 0.0875183 0.0749334 165 160 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 4.93 vpr 62.57 MiB -1 -1 0.33 18308 13 0.22 -1 -1 32704 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 23.8 MiB 0.26 1290 7929 1849 5090 990 62.6 MiB 0.08 0.00 7.1956 -157.385 -7.1956 7.1956 0.70 0.000847327 0.000784902 0.0367788 0.0340624 36 3101 19 6.55708e+06 313430 612192. 2118.31 1.50 0.158159 0.137804 22750 144809 -1 2628 17 1134 3256 168918 39645 6.21818 6.21818 -146.425 -6.21818 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0308984 0.0270994 168 166 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 5.42 vpr 62.67 MiB -1 -1 0.37 18308 13 0.31 -1 -1 32804 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 23.8 MiB 0.21 1302 9753 2433 6184 1136 62.7 MiB 0.10 0.00 7.90993 -159.862 -7.90993 7.90993 0.65 0.000907788 0.000841861 0.0458031 0.0424216 28 3838 36 6.55708e+06 349595 500653. 1732.36 1.96 0.177894 0.155505 21310 115450 -1 2999 21 1654 5200 269562 63388 7.1619 7.1619 -160.267 -7.1619 0 0 612192. 2118.31 0.18 0.11 0.11 -1 -1 0.18 0.0382226 0.0333751 187 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 5.58 vpr 62.10 MiB -1 -1 0.31 18044 12 0.15 -1 -1 32616 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63588 32 32 238 270 1 189 85 17 17 289 -1 unnamed_device 23.4 MiB 0.39 1221 7525 1804 5243 478 62.1 MiB 0.07 0.00 6.81858 -149.06 -6.81858 6.81858 0.70 0.000749943 0.000694529 0.0332414 0.0307542 34 3283 26 6.55708e+06 253155 585099. 2024.56 2.27 0.190272 0.164815 22462 138074 -1 2749 15 1023 2989 181961 41293 5.93798 5.93798 -142.769 -5.93798 0 0 742403. 2568.87 0.20 0.07 0.12 -1 -1 0.20 0.0250934 0.0221183 148 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 5.50 vpr 62.09 MiB -1 -1 0.31 18000 11 0.14 -1 -1 32736 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63584 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 23.6 MiB 0.16 989 9199 2086 6295 818 62.1 MiB 0.08 0.00 6.43069 -134.961 -6.43069 6.43069 0.66 0.000682079 0.000632132 0.036255 0.0335813 28 2534 18 6.55708e+06 277265 500653. 1732.36 2.51 0.188561 0.163137 21310 115450 -1 2287 14 909 2396 149590 35281 5.62118 5.62118 -131.641 -5.62118 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0218422 0.0192199 131 125 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 8.09 vpr 62.00 MiB -1 -1 0.32 18008 11 0.17 -1 -1 32596 -1 -1 28 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63488 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 23.3 MiB 0.48 932 12958 3701 6997 2260 62.0 MiB 0.10 0.00 6.5982 -125.759 -6.5982 6.5982 0.65 0.000724869 0.000669739 0.0507902 0.046931 32 2645 24 6.55708e+06 337540 554710. 1919.41 4.57 0.272498 0.235207 22174 131602 -1 2361 28 1350 3514 258755 74180 5.86158 5.86158 -127.686 -5.86158 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0384366 0.0333465 150 145 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 4.63 vpr 62.64 MiB -1 -1 0.28 18072 12 0.20 -1 -1 32668 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 23.5 MiB 0.23 1332 7326 1532 5228 566 62.6 MiB 0.08 0.00 7.49746 -163.819 -7.49746 7.49746 0.66 0.00109942 0.00100378 0.0349461 0.0323703 28 3385 27 6.55708e+06 313430 500653. 1732.36 1.41 0.146613 0.127899 21310 115450 -1 2821 17 1262 3325 180704 42519 6.38924 6.38924 -157.17 -6.38924 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0313577 0.0275515 180 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 4.78 vpr 62.15 MiB -1 -1 0.29 17924 12 0.20 -1 -1 32672 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 31 32 237 269 1 178 86 17 17 289 -1 unnamed_device 23.4 MiB 0.46 1141 5378 1025 3934 419 62.1 MiB 0.06 0.00 7.2858 -149.294 -7.2858 7.2858 0.66 0.000746783 0.000692429 0.0242349 0.0224794 28 3003 49 6.55708e+06 277265 500653. 1732.36 1.40 0.15186 0.131654 21310 115450 -1 2599 17 1054 2881 159276 37291 6.47024 6.47024 -145.428 -6.47024 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0270309 0.0237523 148 146 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 6.33 vpr 62.01 MiB -1 -1 0.33 18092 10 0.15 -1 -1 32772 -1 -1 22 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63500 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 23.5 MiB 0.16 1038 7643 2004 4942 697 62.0 MiB 0.08 0.00 5.84872 -123.373 -5.84872 5.84872 0.66 0.000842151 0.000775416 0.0367277 0.0338952 34 2652 32 6.55708e+06 265210 585099. 2024.56 3.15 0.246643 0.212336 22462 138074 -1 2218 14 806 2409 137837 32114 5.08326 5.08326 -116.542 -5.08326 0 0 742403. 2568.87 0.20 0.06 0.12 -1 -1 0.20 0.0230347 0.0203239 137 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 5.01 vpr 62.99 MiB -1 -1 0.36 18896 13 0.29 -1 -1 32900 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 23.9 MiB 0.24 1471 6791 1284 4967 540 63.0 MiB 0.08 0.00 7.9206 -163.84 -7.9206 7.9206 0.66 0.00100614 0.000930907 0.0353648 0.0326917 30 3900 46 6.55708e+06 373705 526063. 1820.29 1.53 0.193641 0.167934 21886 126133 -1 2938 15 1341 4212 195757 47245 7.0789 7.0789 -157.591 -7.0789 0 0 666494. 2306.21 0.21 0.09 0.10 -1 -1 0.21 0.0339491 0.0299756 221 221 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 6.07 vpr 62.65 MiB -1 -1 0.34 18808 14 0.31 -1 -1 33196 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 23.8 MiB 0.50 1376 6509 1418 4515 576 62.6 MiB 0.07 0.00 7.46584 -163.527 -7.46584 7.46584 0.66 0.000952289 0.000883953 0.0328295 0.0304267 34 3649 24 6.55708e+06 337540 585099. 2024.56 2.25 0.183778 0.159673 22462 138074 -1 3209 19 1483 4380 252993 58147 6.61598 6.61598 -157.876 -6.61598 0 0 742403. 2568.87 0.20 0.10 0.13 -1 -1 0.20 0.0364302 0.0319458 191 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 6.69 vpr 62.01 MiB -1 -1 0.32 17972 12 0.15 -1 -1 32300 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63500 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 23.3 MiB 0.21 1191 6716 1464 4657 595 62.0 MiB 0.06 0.00 7.49501 -150.663 -7.49501 7.49501 0.66 0.000736827 0.000681384 0.0268149 0.024762 36 2739 49 6.55708e+06 349595 612192. 2118.31 3.49 0.273543 0.235052 22750 144809 -1 2451 14 945 2568 146257 34226 6.3617 6.3617 -139.003 -6.3617 0 0 782063. 2706.10 0.25 0.07 0.13 -1 -1 0.25 0.0236466 0.0208673 156 150 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 12.92 vpr 62.89 MiB -1 -1 0.38 18540 12 0.35 -1 -1 32956 -1 -1 34 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64396 31 32 307 339 1 232 97 17 17 289 -1 unnamed_device 23.9 MiB 0.48 1434 7201 1575 4780 846 62.9 MiB 0.08 0.00 7.50893 -153.023 -7.50893 7.50893 0.66 0.000986119 0.000910966 0.0356064 0.0329237 28 4518 48 6.55708e+06 409870 500653. 1732.36 9.15 0.302981 0.261615 21310 115450 -1 3635 17 1650 4826 282573 65690 6.59244 6.59244 -148.359 -6.59244 0 0 612192. 2118.31 0.18 0.10 0.10 -1 -1 0.18 0.0355824 0.0312584 219 216 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 9.88 vpr 62.70 MiB -1 -1 0.39 18920 14 0.33 -1 -1 32828 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 23.8 MiB 0.22 1374 5474 1049 3945 480 62.7 MiB 0.06 0.00 8.16861 -161.211 -8.16861 8.16861 0.66 0.000959668 0.000889993 0.0285683 0.0264621 28 3932 23 6.55708e+06 349595 500653. 1732.36 6.37 0.260501 0.225089 21310 115450 -1 3284 18 1452 4273 253909 60691 7.1997 7.1997 -157.552 -7.1997 0 0 612192. 2118.31 0.18 0.11 0.11 -1 -1 0.18 0.0397622 0.0350197 202 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 5.75 vpr 62.69 MiB -1 -1 0.24 18808 13 0.33 -1 -1 32904 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 23.8 MiB 0.32 1387 6619 1451 4703 465 62.7 MiB 0.07 0.00 8.01146 -159.733 -8.01146 8.01146 0.69 0.000900467 0.000835027 0.0326339 0.0302312 36 3546 21 6.55708e+06 337540 612192. 2118.31 2.26 0.21103 0.182397 22750 144809 -1 3161 21 1696 5215 289539 65706 7.10844 7.10844 -156.911 -7.10844 0 0 782063. 2706.10 0.21 0.11 0.13 -1 -1 0.21 0.0352024 0.0310745 185 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 5.03 vpr 62.50 MiB -1 -1 0.39 18092 13 0.25 -1 -1 32992 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 23.4 MiB 0.39 1346 5039 929 3735 375 62.5 MiB 0.06 0.00 7.0422 -139.101 -7.0422 7.0422 0.66 0.0010101 0.000906695 0.0266767 0.0246674 30 3601 27 6.55708e+06 313430 526063. 1820.29 1.37 0.14102 0.122427 21886 126133 -1 2974 27 1332 4238 413128 180626 6.07044 6.07044 -135.521 -6.07044 0 0 666494. 2306.21 0.19 0.15 0.11 -1 -1 0.19 0.0449313 0.0390153 179 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 8.03 vpr 62.61 MiB -1 -1 0.30 18044 12 0.24 -1 -1 32860 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 23.6 MiB 0.22 1210 7108 1610 4933 565 62.6 MiB 0.07 0.00 6.87954 -141.685 -6.87954 6.87954 0.69 0.000828434 0.000768398 0.033236 0.0307738 28 3162 31 6.55708e+06 289320 500653. 1732.36 4.76 0.24687 0.21245 21310 115450 -1 2792 16 1149 3239 194030 44473 6.09232 6.09232 -140.235 -6.09232 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0290264 0.0255237 171 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 9.11 vpr 63.00 MiB -1 -1 0.43 19264 14 0.39 -1 -1 32900 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 24.0 MiB 0.35 1621 7439 1507 5629 303 63.0 MiB 0.09 0.00 8.33767 -177.625 -8.33767 8.33767 0.66 0.00105043 0.000965834 0.0402778 0.0372068 36 4483 50 6.55708e+06 373705 612192. 2118.31 5.22 0.304171 0.262982 22750 144809 -1 3592 17 1560 5035 287104 64510 7.16756 7.16756 -166.325 -7.16756 0 0 782063. 2706.10 0.25 0.10 0.12 -1 -1 0.25 0.0389671 0.0345651 230 230 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 10.81 vpr 62.55 MiB -1 -1 0.24 17956 11 0.24 -1 -1 32340 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 23.6 MiB 0.32 1199 8009 1837 5098 1074 62.5 MiB 0.08 0.00 6.67634 -139.796 -6.67634 6.67634 0.66 0.000816255 0.000757902 0.0360718 0.0334154 28 3632 25 6.55708e+06 313430 500653. 1732.36 7.52 0.228523 0.19753 21310 115450 -1 3034 17 1219 3512 237683 52838 6.02098 6.02098 -144.744 -6.02098 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.0294573 0.0258892 163 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 5.14 vpr 62.75 MiB -1 -1 0.38 18564 13 0.26 -1 -1 33112 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 23.8 MiB 0.37 1233 10087 2475 7168 444 62.8 MiB 0.10 0.00 8.06207 -155.797 -8.06207 8.06207 0.70 0.000909603 0.000841237 0.0485382 0.0448437 30 3293 46 6.55708e+06 337540 526063. 1820.29 1.51 0.193034 0.168017 21886 126133 -1 2675 26 1106 3751 251091 79270 6.93376 6.93376 -147.802 -6.93376 0 0 666494. 2306.21 0.19 0.11 0.10 -1 -1 0.19 0.0454805 0.0395261 193 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 10.45 vpr 62.97 MiB -1 -1 0.35 18216 12 0.25 -1 -1 32952 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 303 335 1 222 95 17 17 289 -1 unnamed_device 24.0 MiB 0.45 1436 6359 1286 4580 493 63.0 MiB 0.07 0.00 6.95103 -151.174 -6.95103 6.95103 0.67 0.000969674 0.000893551 0.0326121 0.0301622 30 3712 38 6.55708e+06 373705 526063. 1820.29 6.84 0.37167 0.319236 21886 126133 -1 3281 19 1479 5216 261732 58859 5.82238 5.82238 -142.785 -5.82238 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.03795 0.0332257 211 209 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 6.23 vpr 62.73 MiB -1 -1 0.31 18208 13 0.24 -1 -1 32700 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 23.8 MiB 0.23 1308 6183 1201 4740 242 62.7 MiB 0.07 0.00 7.54518 -157.312 -7.54518 7.54518 0.65 0.00075163 0.000679449 0.0301758 0.0278528 30 3205 18 6.55708e+06 349595 526063. 1820.29 2.98 0.249847 0.214846 21886 126133 -1 2732 14 1073 3168 149774 35292 6.66944 6.66944 -149.906 -6.66944 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0290196 0.0256323 183 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 5.55 vpr 62.92 MiB -1 -1 0.38 18092 13 0.21 -1 -1 33252 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 24.1 MiB 0.26 1388 8532 2067 5744 721 62.9 MiB 0.09 0.00 7.16941 -159.486 -7.16941 7.16941 0.72 0.000868861 0.000805197 0.0401885 0.0372054 30 3289 17 6.55708e+06 313430 526063. 1820.29 2.10 0.142413 0.124849 21886 126133 -1 2807 26 1192 3527 316815 132051 6.22018 6.22018 -150.463 -6.22018 0 0 666494. 2306.21 0.19 0.13 0.09 -1 -1 0.19 0.0430137 0.0373816 178 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 7.96 vpr 62.69 MiB -1 -1 0.37 18568 12 0.24 -1 -1 32956 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 23.7 MiB 0.41 1391 9892 2367 6162 1363 62.7 MiB 0.10 0.00 7.40971 -158.505 -7.40971 7.40971 0.67 0.000937672 0.000858506 0.0471117 0.0435041 38 3339 27 6.55708e+06 361650 638502. 2209.35 4.40 0.346153 0.297764 23326 155178 -1 2841 15 1219 4211 197600 45318 6.53898 6.53898 -147.821 -6.53898 0 0 851065. 2944.86 0.21 0.05 0.09 -1 -1 0.21 0.0186167 0.0168474 197 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 6.72 vpr 62.86 MiB -1 -1 0.22 18752 13 0.31 -1 -1 33244 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 23.9 MiB 0.42 1496 6791 1324 4848 619 62.9 MiB 0.08 0.00 7.58188 -163.597 -7.58188 7.58188 0.66 0.000988434 0.000915037 0.033829 0.0312087 36 3856 17 6.55708e+06 373705 612192. 2118.31 3.20 0.232079 0.201055 22750 144809 -1 3244 19 1411 4282 222301 51731 6.62764 6.62764 -150.995 -6.62764 0 0 782063. 2706.10 0.21 0.10 0.13 -1 -1 0.21 0.0397662 0.0350184 212 212 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 5.89 vpr 62.64 MiB -1 -1 0.32 18052 14 0.27 -1 -1 32712 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 262 294 1 193 89 17 17 289 -1 unnamed_device 23.6 MiB 0.27 1153 11969 3180 6354 2435 62.6 MiB 0.11 0.00 8.31223 -163.645 -8.31223 8.31223 0.66 0.000855781 0.000792068 0.0548979 0.0508524 34 3446 43 6.55708e+06 301375 585099. 2024.56 2.36 0.2269 0.198158 22462 138074 -1 2795 19 1302 4041 241474 58208 7.7191 7.7191 -164.117 -7.7191 0 0 742403. 2568.87 0.21 0.10 0.13 -1 -1 0.21 0.0340522 0.02985 168 168 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 4.93 vpr 62.91 MiB -1 -1 0.32 18188 13 0.28 -1 -1 32728 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 291 323 1 224 95 17 17 289 -1 unnamed_device 24.0 MiB 0.40 1425 8519 1811 6143 565 62.9 MiB 0.09 0.00 8.29301 -163.281 -8.29301 8.29301 0.66 0.000935825 0.000864693 0.040325 0.037299 30 3639 21 6.55708e+06 373705 526063. 1820.29 1.44 0.152679 0.13372 21886 126133 -1 3048 15 1297 3920 193839 45269 7.32896 7.32896 -156.234 -7.32896 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0309719 0.0273613 198 197 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 7.57 vpr 63.17 MiB -1 -1 0.39 18536 13 0.28 -1 -1 32816 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 24.2 MiB 0.28 1386 9679 2058 7206 415 63.2 MiB 0.10 0.00 7.87649 -159.745 -7.87649 7.87649 0.66 0.000961697 0.000891505 0.0474816 0.043927 38 3311 30 6.55708e+06 373705 638502. 2209.35 3.91 0.35158 0.302819 23326 155178 -1 2716 16 1393 4118 186063 45893 6.6811 6.6811 -148.326 -6.6811 0 0 851065. 2944.86 0.22 0.08 0.14 -1 -1 0.22 0.0335478 0.0295485 213 211 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 4.64 vpr 63.07 MiB -1 -1 0.38 18564 12 0.30 -1 -1 32868 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 32 32 308 340 1 237 97 17 17 289 -1 unnamed_device 24.1 MiB 0.35 1456 8755 1875 6172 708 63.1 MiB 0.09 0.00 7.82047 -162.193 -7.82047 7.82047 0.65 0.000966957 0.000891491 0.0418651 0.038709 30 3744 18 6.55708e+06 397815 526063. 1820.29 1.09 0.153003 0.134045 21886 126133 -1 3061 15 1373 3745 174001 41817 7.0025 7.0025 -157.196 -7.0025 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0322148 0.0284523 216 214 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 6.31 vpr 61.89 MiB -1 -1 0.28 18112 11 0.15 -1 -1 32708 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63376 32 32 216 248 1 160 83 17 17 289 -1 unnamed_device 23.4 MiB 0.21 1004 9263 2865 4455 1943 61.9 MiB 0.08 0.00 6.22709 -128.104 -6.22709 6.22709 0.63 0.000682427 0.000631937 0.0377787 0.0348305 30 2463 15 6.55708e+06 229045 526063. 1820.29 3.19 0.240543 0.207023 21886 126133 -1 2091 18 889 2380 117579 28327 5.24832 5.24832 -126.347 -5.24832 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.025766 0.0225977 126 122 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 10.05 vpr 62.64 MiB -1 -1 0.25 18300 13 0.21 -1 -1 32780 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 254 286 1 195 88 17 17 289 -1 unnamed_device 23.7 MiB 0.36 1233 5938 1147 4519 272 62.6 MiB 0.07 0.00 7.61227 -159.82 -7.61227 7.61227 0.67 0.000835936 0.00077314 0.0285183 0.0264614 26 3709 42 6.55708e+06 289320 477104. 1650.88 6.69 0.293921 0.252629 21022 109990 -1 3051 20 1257 3519 238150 53555 6.82624 6.82624 -156.727 -6.82624 0 0 585099. 2024.56 0.17 0.09 0.10 -1 -1 0.17 0.0339574 0.0297006 161 160 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 12.75 vpr 63.02 MiB -1 -1 0.37 19092 14 0.42 -1 -1 33016 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 338 370 1 251 98 17 17 289 -1 unnamed_device 24.1 MiB 0.50 1522 6848 1188 5384 276 63.0 MiB 0.09 0.00 8.62537 -170.671 -8.62537 8.62537 0.67 0.00109536 0.00100593 0.0376128 0.0348002 28 4874 46 6.55708e+06 409870 500653. 1732.36 8.72 0.350957 0.302723 21310 115450 -1 4049 29 2764 9243 620816 154672 7.72935 7.72935 -170.936 -7.72935 0 0 612192. 2118.31 0.20 0.20 0.11 -1 -1 0.20 0.0595931 0.0519308 244 244 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 7.33 vpr 62.86 MiB -1 -1 0.36 18108 13 0.28 -1 -1 32700 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 24.0 MiB 0.42 1384 6823 1472 4881 470 62.9 MiB 0.08 0.00 7.83243 -170.302 -7.83243 7.83243 0.67 0.000899248 0.000834477 0.0339556 0.0314677 44 3050 17 6.55708e+06 325485 742403. 2568.87 3.51 0.278298 0.23934 24478 177802 -1 2643 14 1012 3046 157672 35722 6.7601 6.7601 -155.805 -6.7601 0 0 937218. 3242.97 0.26 0.07 0.16 -1 -1 0.26 0.0287496 0.0254365 178 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 7.34 vpr 61.97 MiB -1 -1 0.31 18024 11 0.17 -1 -1 32676 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63460 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 23.4 MiB 0.16 1068 5665 1228 3746 691 62.0 MiB 0.07 0.00 6.82549 -140.791 -6.82549 6.82549 0.90 0.00218 0.0020686 0.0265418 0.0245217 28 2758 48 6.55708e+06 277265 500653. 1732.36 4.04 0.234345 0.201356 21310 115450 -1 2223 15 863 2453 136374 32055 6.02098 6.02098 -137.567 -6.02098 0 0 612192. 2118.31 0.17 0.04 0.10 -1 -1 0.17 0.0190735 0.0169359 139 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 6.35 vpr 62.85 MiB -1 -1 0.36 19224 15 0.50 -1 -1 32812 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64360 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 24.3 MiB 0.27 1739 8198 1861 5696 641 62.9 MiB 0.10 0.00 9.48099 -183.773 -9.48099 9.48099 0.66 0.00111774 0.00103299 0.0453296 0.0418345 30 4766 43 6.55708e+06 409870 526063. 1820.29 2.53 0.223095 0.194443 21886 126133 -1 3758 20 2315 7493 367102 83035 8.17861 8.17861 -174.69 -8.17861 0 0 666494. 2306.21 0.19 0.13 0.11 -1 -1 0.19 0.0464022 0.0406802 257 257 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 5.49 vpr 62.80 MiB -1 -1 0.32 18440 13 0.32 -1 -1 32764 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 32 32 297 329 1 216 91 17 17 289 -1 unnamed_device 23.8 MiB 0.23 1402 8047 1818 5614 615 62.8 MiB 0.09 0.00 8.34252 -168.918 -8.34252 8.34252 0.67 0.000957082 0.000886521 0.0419248 0.0388136 28 3745 33 6.55708e+06 325485 500653. 1732.36 1.95 0.179527 0.15713 21310 115450 -1 3305 32 1424 4263 490479 193477 7.13236 7.13236 -164.015 -7.13236 0 0 612192. 2118.31 0.18 0.18 0.11 -1 -1 0.18 0.0562012 0.0487657 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 5.55 vpr 62.09 MiB -1 -1 0.27 17764 11 0.13 -1 -1 32676 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63584 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 23.5 MiB 0.30 1123 7079 1610 4999 470 62.1 MiB 0.07 0.00 6.21723 -134.883 -6.21723 6.21723 0.66 0.000732626 0.000673226 0.029886 0.0275582 28 3226 47 6.55708e+06 265210 500653. 1732.36 2.38 0.157597 0.137671 21310 115450 -1 2683 25 1169 3414 305780 96470 5.40772 5.40772 -133.925 -5.40772 0 0 612192. 2118.31 0.18 0.11 0.10 -1 -1 0.18 0.0347721 0.0302852 141 137 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 5.06 vpr 62.95 MiB -1 -1 0.35 18540 12 0.29 -1 -1 32892 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 23.9 MiB 0.42 1442 7336 1475 5411 450 62.9 MiB 0.08 0.00 7.74548 -154.851 -7.74548 7.74548 0.70 0.000724799 0.000653202 0.0324624 0.0297609 30 3768 28 6.55708e+06 361650 526063. 1820.29 1.44 0.128669 0.113276 21886 126133 -1 2990 17 1354 4447 206420 49162 6.6811 6.6811 -148.12 -6.6811 0 0 666494. 2306.21 0.19 0.09 0.12 -1 -1 0.19 0.0354458 0.0311621 213 211 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 6.91 vpr 62.32 MiB -1 -1 0.29 18044 12 0.19 -1 -1 32728 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 23.3 MiB 0.40 1234 7728 1773 5535 420 62.3 MiB 0.08 0.00 7.26258 -154.513 -7.26258 7.26258 0.67 0.000791369 0.00072307 0.0338127 0.0312146 30 3076 20 6.55708e+06 313430 526063. 1820.29 3.50 0.29432 0.254066 21886 126133 -1 2578 16 1075 2998 146869 34828 6.50944 6.50944 -149.849 -6.50944 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0275223 0.0242078 153 149 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 6.13 vpr 62.23 MiB -1 -1 0.31 18144 12 0.18 -1 -1 32644 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63720 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 23.4 MiB 0.18 964 11603 3147 6112 2344 62.2 MiB 0.10 0.00 6.97512 -139.748 -6.97512 6.97512 0.67 0.000743787 0.000688194 0.0505932 0.0468064 30 2394 29 6.55708e+06 253155 526063. 1820.29 2.94 0.276316 0.238859 21886 126133 -1 1946 17 802 2468 113048 27165 6.11164 6.11164 -132.147 -6.11164 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.027002 0.0237163 140 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 4.88 vpr 62.71 MiB -1 -1 0.39 18592 12 0.29 -1 -1 33380 -1 -1 31 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 23.9 MiB 0.26 1335 8579 2026 5633 920 62.7 MiB 0.09 0.00 6.72746 -129.302 -6.72746 6.72746 0.66 0.000908034 0.000839337 0.0408001 0.0377242 30 3317 43 6.55708e+06 373705 526063. 1820.29 1.42 0.180945 0.157472 21886 126133 -1 2826 18 1244 4120 188907 44459 6.10198 6.10198 -127.139 -6.10198 0 0 666494. 2306.21 0.20 0.08 0.12 -1 -1 0.20 0.0344755 0.0302573 190 190 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 5.63 vpr 63.21 MiB -1 -1 0.37 18564 13 0.35 -1 -1 32712 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 24.4 MiB 0.58 1542 6535 1180 4663 692 63.2 MiB 0.08 0.00 8.33266 -174.188 -8.33266 8.33266 0.69 0.00103233 0.000955937 0.0344458 0.0319218 30 4033 40 6.55708e+06 397815 526063. 1820.29 1.72 0.188799 0.164979 21886 126133 -1 3267 24 1656 4611 309598 104826 7.16956 7.16956 -164.247 -7.16956 0 0 666494. 2306.21 0.19 0.13 0.15 -1 -1 0.19 0.0459871 0.0403786 238 236 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 7.56 vpr 62.68 MiB -1 -1 0.38 18564 12 0.24 -1 -1 32920 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 290 322 1 219 93 17 17 289 -1 unnamed_device 23.8 MiB 0.43 1337 14373 3637 8257 2479 62.7 MiB 0.14 0.00 7.56736 -150.416 -7.56736 7.56736 0.66 0.000935771 0.00086679 0.0680709 0.0630665 36 3622 43 6.55708e+06 349595 612192. 2118.31 3.76 0.288068 0.250703 22750 144809 -1 3031 29 1892 6473 553405 193941 6.55324 6.55324 -142.68 -6.55324 0 0 782063. 2706.10 0.21 0.19 0.13 -1 -1 0.21 0.0518562 0.0450923 198 196 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 6.28 vpr 61.91 MiB -1 -1 0.26 17924 12 0.15 -1 -1 32732 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63392 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 23.3 MiB 0.48 1128 7404 1881 4703 820 61.9 MiB 0.07 0.00 6.63325 -140.069 -6.63325 6.63325 0.66 0.000691438 0.00063989 0.0303447 0.0280724 30 2675 25 6.55708e+06 241100 526063. 1820.29 2.93 0.220977 0.190241 21886 126133 -1 2183 16 874 2494 118684 28424 5.84792 5.84792 -135.25 -5.84792 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0244 0.0214827 126 120 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 7.40 vpr 62.49 MiB -1 -1 0.29 18292 12 0.21 -1 -1 32428 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63988 31 32 244 276 1 182 88 17 17 289 -1 unnamed_device 23.5 MiB 0.28 1170 7498 1759 4547 1192 62.5 MiB 0.07 0.00 7.01252 -142.578 -7.01252 7.01252 0.66 0.000808783 0.000740576 0.0332928 0.0307404 36 2969 23 6.55708e+06 301375 612192. 2118.31 4.11 0.308689 0.264552 22750 144809 -1 2577 16 1162 3661 196645 45570 5.97978 5.97978 -135.917 -5.97978 0 0 782063. 2706.10 0.22 0.08 0.13 -1 -1 0.22 0.0275096 0.0241508 154 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 6.88 vpr 62.68 MiB -1 -1 0.35 18296 11 0.18 -1 -1 32740 -1 -1 30 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 23.8 MiB 0.14 1298 4853 867 3420 566 62.7 MiB 0.06 0.00 6.85992 -133.534 -6.85992 6.85992 0.66 0.000882159 0.000807658 0.0246436 0.0228051 38 3068 19 6.55708e+06 361650 638502. 2209.35 3.67 0.268064 0.229169 23326 155178 -1 2722 17 1166 3960 199201 45763 5.98178 5.98178 -129.207 -5.98178 0 0 851065. 2944.86 0.22 0.08 0.14 -1 -1 0.22 0.0322791 0.0283257 190 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 5.17 vpr 62.55 MiB -1 -1 0.33 17804 11 0.20 -1 -1 32832 -1 -1 27 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 23.5 MiB 0.13 1170 7767 1783 5428 556 62.6 MiB 0.08 0.00 6.49677 -121.518 -6.49677 6.49677 0.66 0.00082224 0.000763471 0.0362767 0.0336815 28 3308 46 6.55708e+06 325485 500653. 1732.36 1.93 0.168629 0.146605 21310 115450 -1 2742 16 1154 3672 238825 52497 5.69192 5.69192 -121.797 -5.69192 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0285252 0.0250106 172 171 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 9.16 vpr 62.68 MiB -1 -1 0.33 18108 13 0.21 -1 -1 32640 -1 -1 26 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64188 30 32 235 267 1 176 88 17 17 289 -1 unnamed_device 23.8 MiB 0.23 1097 11593 3515 6131 1947 62.7 MiB 0.10 0.00 7.49937 -144.316 -7.49937 7.49937 0.66 0.000761158 0.000705534 0.048174 0.0446331 28 3200 50 6.55708e+06 313430 500653. 1732.36 5.81 0.265668 0.231189 21310 115450 -1 2553 20 1158 3375 193107 45194 6.78764 6.78764 -141.625 -6.78764 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0310005 0.0271482 148 147 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 5.84 vpr 62.61 MiB -1 -1 0.35 18308 12 0.20 -1 -1 32396 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 23.6 MiB 0.28 1348 8993 2218 6004 771 62.6 MiB 0.09 0.00 7.3262 -158.713 -7.3262 7.3262 0.66 0.000854954 0.000792122 0.0405551 0.037575 28 3637 33 6.55708e+06 337540 500653. 1732.36 2.49 0.160188 0.139864 21310 115450 -1 3055 22 1532 4483 326671 87119 6.71264 6.71264 -157.26 -6.71264 0 0 612192. 2118.31 0.18 0.12 0.08 -1 -1 0.18 0.0374486 0.0326911 174 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 8.24 vpr 62.73 MiB -1 -1 0.25 18316 13 0.28 -1 -1 32752 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 23.9 MiB 0.26 1215 5718 1125 4239 354 62.7 MiB 0.06 0.00 8.06933 -153.277 -8.06933 8.06933 0.66 0.000906357 0.000840753 0.0289939 0.0268333 26 3789 32 6.55708e+06 325485 477104. 1650.88 4.92 0.263373 0.227354 21022 109990 -1 3184 22 1707 5165 324877 74151 7.0025 7.0025 -157.365 -7.0025 0 0 585099. 2024.56 0.17 0.12 0.10 -1 -1 0.17 0.039164 0.0341592 187 187 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 5.73 vpr 62.96 MiB -1 -1 0.38 18672 14 0.26 -1 -1 32956 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 24.0 MiB 0.25 1301 9407 2176 6085 1146 63.0 MiB 0.10 0.00 8.35433 -163.826 -8.35433 8.35433 0.66 0.000931923 0.000862795 0.0466193 0.0431242 28 3805 35 6.55708e+06 337540 500653. 1732.36 2.27 0.178966 0.156723 21310 115450 -1 3098 17 1364 3824 225167 51687 7.18182 7.18182 -157.405 -7.18182 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.0336074 0.029524 196 196 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 7.45 vpr 62.54 MiB -1 -1 0.41 18824 14 0.24 -1 -1 32936 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 23.8 MiB 0.24 1247 10385 2379 5942 2064 62.5 MiB 0.10 0.00 7.58177 -145.01 -7.58177 7.58177 0.70 0.000872343 0.000807836 0.0491473 0.0455188 34 3317 49 6.55708e+06 301375 585099. 2024.56 3.94 0.34154 0.293385 22462 138074 -1 2731 17 1199 3748 206549 48044 6.70864 6.70864 -142.763 -6.70864 0 0 742403. 2568.87 0.21 0.09 0.13 -1 -1 0.21 0.0317779 0.0278821 175 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 9.14 vpr 62.70 MiB -1 -1 0.40 18868 13 0.39 -1 -1 33316 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 296 328 1 222 93 17 17 289 -1 unnamed_device 23.8 MiB 0.26 1403 8073 1958 5278 837 62.7 MiB 0.09 0.00 7.90532 -157.651 -7.90532 7.90532 0.67 0.000960123 0.000881897 0.0404373 0.0373798 28 3887 23 6.55708e+06 349595 500653. 1732.36 5.43 0.269568 0.232472 21310 115450 -1 3499 21 1898 5430 340594 75352 6.85016 6.85016 -153.21 -6.85016 0 0 612192. 2118.31 0.18 0.12 0.10 -1 -1 0.18 0.0405848 0.03544 205 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 7.77 vpr 62.39 MiB -1 -1 0.28 18088 13 0.19 -1 -1 32628 -1 -1 24 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 30 32 234 266 1 185 86 17 17 289 -1 unnamed_device 23.5 MiB 0.29 1086 8024 1919 5617 488 62.4 MiB 0.08 0.00 7.66268 -153.181 -7.66268 7.66268 0.66 0.000758013 0.000703175 0.0347466 0.0321409 26 3172 28 6.55708e+06 289320 477104. 1650.88 4.62 0.286194 0.246376 21022 109990 -1 2671 15 1123 2693 171006 39961 6.94644 6.94644 -155.213 -6.94644 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.024912 0.0219606 146 146 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 9.62 vpr 62.68 MiB -1 -1 0.34 18708 13 0.46 -1 -1 32852 -1 -1 32 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 23.8 MiB 0.38 1416 7336 1414 5551 371 62.7 MiB 0.08 0.00 8.07413 -161.91 -8.07413 8.07413 0.66 0.000971793 0.000900927 0.0371909 0.034467 30 3702 28 6.55708e+06 385760 526063. 1820.29 5.92 0.356444 0.307207 21886 126133 -1 3102 18 1510 4211 202277 48691 6.9195 6.9195 -154.528 -6.9195 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.0367633 0.0320945 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 9.43 vpr 62.66 MiB -1 -1 0.37 18428 14 0.34 -1 -1 32952 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 32 32 274 306 1 211 89 17 17 289 -1 unnamed_device 23.8 MiB 0.42 1220 7217 1622 4486 1109 62.7 MiB 0.08 0.00 8.04044 -163.742 -8.04044 8.04044 0.65 0.00089603 0.00082912 0.036277 0.0335721 34 4022 46 6.55708e+06 301375 585099. 2024.56 5.72 0.333223 0.285978 22462 138074 -1 3088 25 1449 4479 326046 95793 7.01016 7.01016 -159.344 -7.01016 0 0 742403. 2568.87 0.21 0.13 0.12 -1 -1 0.21 0.0437553 0.0381034 180 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 6.74 vpr 62.65 MiB -1 -1 0.37 18172 13 0.21 -1 -1 32728 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 31 32 266 298 1 204 90 17 17 289 -1 unnamed_device 23.6 MiB 0.26 1270 6321 1361 4444 516 62.6 MiB 0.07 0.00 7.62087 -154.066 -7.62087 7.62087 0.66 0.000877306 0.000812839 0.0306336 0.0283896 44 2993 19 6.55708e+06 325485 742403. 2568.87 3.26 0.265849 0.225781 24478 177802 -1 2523 16 1046 3148 159499 36425 6.70864 6.70864 -145.074 -6.70864 0 0 937218. 3242.97 0.25 0.08 0.16 -1 -1 0.25 0.0306991 0.0271118 177 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 7.47 vpr 62.52 MiB -1 -1 0.38 18440 13 0.24 -1 -1 32772 -1 -1 29 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64016 30 32 266 298 1 204 91 17 17 289 -1 unnamed_device 23.7 MiB 0.55 1241 13555 3513 7863 2179 62.5 MiB 0.12 0.00 7.54758 -141.687 -7.54758 7.54758 0.72 0.000854286 0.000791126 0.0596992 0.0551582 32 3611 29 6.55708e+06 349595 554710. 1919.41 3.37 0.347737 0.299512 22174 131602 -1 3200 47 1491 4937 948393 518556 6.4805 6.4805 -139.181 -6.4805 0 0 701300. 2426.64 0.19 0.32 0.12 -1 -1 0.19 0.0693327 0.0596512 179 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 5.12 vpr 63.22 MiB -1 -1 0.37 18616 14 0.34 -1 -1 32732 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 24.2 MiB 0.46 1428 8326 1796 5639 891 63.2 MiB 0.09 0.00 8.11569 -168.134 -8.11569 8.11569 0.72 0.00100585 0.000931814 0.0394478 0.0364968 30 3796 30 6.55708e+06 446035 526063. 1820.29 1.34 0.175471 0.153354 21886 126133 -1 3091 17 1489 4196 196271 48070 7.14564 7.14564 -161.227 -7.14564 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.0366495 0.0323323 218 216 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 7.13 vpr 62.80 MiB -1 -1 0.39 18556 11 0.31 -1 -1 32644 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 24.0 MiB 0.44 1190 5115 1015 3819 281 62.8 MiB 0.06 0.00 6.99314 -135.121 -6.99314 6.99314 0.66 0.000885323 0.000812505 0.0268328 0.0248973 34 3343 34 6.55708e+06 349595 585099. 2024.56 3.43 0.280346 0.240857 22462 138074 -1 2706 15 1147 3360 184930 43602 6.17838 6.17838 -131.048 -6.17838 0 0 742403. 2568.87 0.21 0.08 0.13 -1 -1 0.21 0.0294289 0.025932 177 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 5.48 vpr 62.05 MiB -1 -1 0.29 18028 13 0.16 -1 -1 32684 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63540 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 23.5 MiB 0.27 1158 7108 1605 4699 804 62.1 MiB 0.07 0.00 6.94929 -157.648 -6.94929 6.94929 0.66 0.000728662 0.000675554 0.0287712 0.0266419 26 3238 27 6.55708e+06 289320 477104. 1650.88 2.35 0.123272 0.107975 21022 109990 -1 2815 19 1171 2928 203752 48160 6.41938 6.41938 -159.247 -6.41938 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0281922 0.0247382 138 128 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 7.46 vpr 62.59 MiB -1 -1 0.36 18584 14 0.23 -1 -1 32932 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 23.8 MiB 0.38 1272 7751 1792 5305 654 62.6 MiB 0.08 0.00 8.06558 -167.325 -8.06558 8.06558 0.70 0.000778896 0.00071298 0.0346449 0.0319002 46 2774 14 6.55708e+06 337540 782063. 2706.10 3.81 0.310567 0.267218 24766 183262 -1 2551 15 1009 3223 153758 35156 6.9985 6.9985 -156.059 -6.9985 0 0 958460. 3316.47 0.26 0.07 0.16 -1 -1 0.26 0.0289931 0.0255939 179 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 13.62 vpr 63.35 MiB -1 -1 0.29 19004 15 0.49 -1 -1 32836 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 334 366 1 261 98 17 17 289 -1 unnamed_device 24.5 MiB 0.36 1649 12023 2996 7449 1578 63.4 MiB 0.13 0.00 8.8435 -186.31 -8.8435 8.8435 0.66 0.00107035 0.000990631 0.0624142 0.0577286 30 4536 26 6.55708e+06 409870 526063. 1820.29 9.86 0.379183 0.329099 21886 126133 -1 3566 20 1759 4992 238655 56450 7.96775 7.96775 -180.251 -7.96775 0 0 666494. 2306.21 0.19 0.11 0.11 -1 -1 0.19 0.043953 0.0386303 241 240 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 6.41 vpr 61.92 MiB -1 -1 0.31 18036 11 0.21 -1 -1 32576 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63408 32 32 220 252 1 156 85 17 17 289 -1 unnamed_device 23.4 MiB 0.42 923 12361 3928 6475 1958 61.9 MiB 0.10 0.00 6.38603 -130.972 -6.38603 6.38603 0.65 0.000700842 0.000648839 0.0493874 0.0456532 34 2491 32 6.55708e+06 253155 585099. 2024.56 2.97 0.264463 0.228195 22462 138074 -1 2110 19 911 2752 144443 35106 5.66238 5.66238 -124.419 -5.66238 0 0 742403. 2568.87 0.21 0.07 0.10 -1 -1 0.21 0.0274291 0.0239401 129 126 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 7.83 vpr 62.45 MiB -1 -1 0.31 18068 12 0.23 -1 -1 33052 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63944 31 32 244 276 1 193 90 17 17 289 -1 unnamed_device 23.5 MiB 0.28 1230 7326 1593 5044 689 62.4 MiB 0.07 0.00 6.98403 -147.666 -6.98403 6.98403 0.65 0.000782368 0.000720796 0.0313805 0.0290323 28 3516 50 6.55708e+06 325485 500653. 1732.36 4.53 0.301204 0.258329 21310 115450 -1 2955 19 1303 3623 214874 49641 6.20332 6.20332 -147.361 -6.20332 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.031144 0.0273487 157 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 5.49 vpr 62.75 MiB -1 -1 0.38 18440 12 0.29 -1 -1 32812 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 23.8 MiB 0.32 1497 8199 1839 5577 783 62.7 MiB 0.09 0.00 7.33061 -158.742 -7.33061 7.33061 0.66 0.000983283 0.000901277 0.041433 0.0382761 30 4080 31 6.55708e+06 385760 526063. 1820.29 1.92 0.172874 0.150926 21886 126133 -1 3305 18 1524 4393 219896 50717 6.2807 6.2807 -150.986 -6.2807 0 0 666494. 2306.21 0.20 0.09 0.12 -1 -1 0.20 0.0375501 0.0330093 213 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 7.02 vpr 62.75 MiB -1 -1 0.38 18208 12 0.26 -1 -1 32720 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 23.9 MiB 0.30 1401 7125 1520 5090 515 62.7 MiB 0.08 0.00 7.67704 -159.687 -7.67704 7.67704 0.72 0.000884856 0.000820011 0.0347355 0.0321419 44 3198 17 6.55708e+06 313430 742403. 2568.87 3.35 0.265474 0.228382 24478 177802 -1 2838 17 1094 3648 189143 43057 6.8013 6.8013 -153.15 -6.8013 0 0 937218. 3242.97 0.26 0.08 0.16 -1 -1 0.26 0.0318735 0.0280087 181 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 9.05 vpr 63.17 MiB -1 -1 0.37 18952 14 0.44 -1 -1 32788 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 24.1 MiB 0.53 1702 7655 1606 5611 438 63.2 MiB 0.09 0.00 8.96309 -178.872 -8.96309 8.96309 0.65 0.00106517 0.000984944 0.0430028 0.0397569 36 4446 40 6.55708e+06 373705 612192. 2118.31 4.94 0.291894 0.252915 22750 144809 -1 3774 26 1687 5548 348015 84215 7.85922 7.85922 -171.104 -7.85922 0 0 782063. 2706.10 0.21 0.14 0.13 -1 -1 0.21 0.0533766 0.0466138 234 233 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 6.87 vpr 62.62 MiB -1 -1 0.34 18208 12 0.21 -1 -1 32692 -1 -1 25 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 23.6 MiB 0.58 1287 7575 1714 5483 378 62.6 MiB 0.08 0.00 7.47384 -141.76 -7.47384 7.47384 0.66 0.000827543 0.000768358 0.0358672 0.0332641 28 4066 44 6.55708e+06 301375 500653. 1732.36 3.29 0.170988 0.148932 21310 115450 -1 3020 16 1151 3483 224807 49833 6.70864 6.70864 -142.016 -6.70864 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0287627 0.0252936 160 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 6.43 vpr 62.00 MiB -1 -1 0.27 18112 11 0.22 -1 -1 32572 -1 -1 26 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63484 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 23.4 MiB 0.26 931 11989 3061 7291 1637 62.0 MiB 0.12 0.00 6.80335 -123.262 -6.80335 6.80335 0.70 0.000708249 0.000656497 0.0600735 0.0555404 26 2783 41 6.55708e+06 313430 477104. 1650.88 3.16 0.256794 0.22231 21022 109990 -1 2384 18 1199 3380 194509 48070 6.03064 6.03064 -121.748 -6.03064 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0271521 0.0237525 140 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 7.04 vpr 63.42 MiB -1 -1 0.42 19108 13 0.47 -1 -1 32796 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 24.4 MiB 0.44 1770 11816 2824 7429 1563 63.4 MiB 0.13 0.00 8.12254 -164.758 -8.12254 8.12254 0.62 0.00118232 0.00109323 0.0623435 0.0576257 38 4857 49 6.55708e+06 482200 638502. 2209.35 2.99 0.296442 0.258007 23326 155178 -1 3570 18 1882 6131 281111 68584 7.03004 7.03004 -154.314 -7.03004 0 0 851065. 2944.86 0.23 0.12 0.14 -1 -1 0.23 0.0445101 0.0391997 286 286 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 6.58 vpr 62.68 MiB -1 -1 0.33 18568 14 0.29 -1 -1 32708 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64188 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 23.8 MiB 0.21 1247 12127 2952 7653 1522 62.7 MiB 0.12 0.00 7.99624 -158.799 -7.99624 7.99624 0.67 0.000925415 0.00085846 0.0571622 0.05274 30 3329 38 6.55708e+06 337540 526063. 1820.29 3.21 0.334589 0.287897 21886 126133 -1 2813 22 1397 3985 195094 45869 7.1207 7.1207 -152.799 -7.1207 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.039408 0.0344392 188 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 4.79 vpr 62.22 MiB -1 -1 0.34 18284 12 0.21 -1 -1 32572 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63716 32 32 229 261 1 178 89 17 17 289 -1 unnamed_device 23.6 MiB 0.19 1071 7217 1608 4614 995 62.2 MiB 0.07 0.00 7.1692 -152.502 -7.1692 7.1692 0.66 0.000748751 0.000693263 0.0302144 0.0278995 28 3141 42 6.55708e+06 301375 500653. 1732.36 1.63 0.148608 0.129689 21310 115450 -1 2655 16 1109 3044 186864 43877 6.1631 6.1631 -148.829 -6.1631 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0265625 0.0234285 144 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 10.59 vpr 62.77 MiB -1 -1 0.37 18324 13 0.33 -1 -1 32828 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 23.8 MiB 0.38 1267 8934 2136 5911 887 62.8 MiB 0.09 0.00 7.70312 -157.904 -7.70312 7.70312 0.65 0.000686091 0.000628286 0.0406228 0.0375307 28 3687 38 6.55708e+06 313430 500653. 1732.36 7.02 0.27317 0.23603 21310 115450 -1 2943 16 1173 3501 210890 47929 6.8039 6.8039 -153.425 -6.8039 0 0 612192. 2118.31 0.19 0.09 0.11 -1 -1 0.19 0.0337138 0.0299089 169 169 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 5.38 vpr 63.05 MiB -1 -1 0.38 18844 13 0.31 -1 -1 32764 -1 -1 35 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 24.3 MiB 0.26 1613 9323 2087 6739 497 63.0 MiB 0.11 0.00 7.89411 -162.823 -7.89411 7.89411 0.70 0.0010246 0.000948758 0.0497355 0.0460582 36 4188 19 6.55708e+06 421925 612192. 2118.31 1.67 0.206678 0.180853 22750 144809 -1 3509 18 1533 4694 254821 58773 6.6399 6.6399 -151.086 -6.6399 0 0 782063. 2706.10 0.21 0.10 0.13 -1 -1 0.21 0.0392454 0.0345598 233 230 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 6.97 vpr 62.77 MiB -1 -1 0.34 18192 11 0.24 -1 -1 32712 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 30 32 287 319 1 210 95 17 17 289 -1 unnamed_device 23.8 MiB 0.35 1259 9167 2054 6526 587 62.8 MiB 0.09 0.00 6.6803 -129.394 -6.6803 6.6803 0.66 0.000922619 0.000851464 0.0424787 0.0392027 36 3457 44 6.55708e+06 397815 612192. 2118.31 3.42 0.27283 0.235916 22750 144809 -1 3054 30 1292 4283 378107 142282 5.99344 5.99344 -128.062 -5.99344 0 0 782063. 2706.10 0.29 0.09 0.15 -1 -1 0.29 0.0275602 0.0243962 201 199 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 12.46 vpr 62.81 MiB -1 -1 0.38 18564 15 0.36 -1 -1 32880 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 296 328 1 224 93 17 17 289 -1 unnamed_device 23.9 MiB 0.49 1412 8073 1941 5451 681 62.8 MiB 0.09 0.00 9.02973 -184.383 -9.02973 9.02973 0.66 0.000849193 0.000784271 0.0400935 0.0370074 28 3953 42 6.55708e+06 349595 500653. 1732.36 8.63 0.303043 0.261713 21310 115450 -1 3335 16 1632 4925 286354 65603 7.68815 7.68815 -174.435 -7.68815 0 0 612192. 2118.31 0.21 0.10 0.11 -1 -1 0.21 0.0341541 0.0300966 202 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 7.70 vpr 62.79 MiB -1 -1 0.39 18756 13 0.31 -1 -1 32892 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 285 317 1 225 94 17 17 289 -1 unnamed_device 23.8 MiB 0.39 1398 9040 2290 6006 744 62.8 MiB 0.09 0.00 7.98903 -170.903 -7.98903 7.98903 0.67 0.000941271 0.00086744 0.0430056 0.0396919 44 3093 48 6.55708e+06 361650 742403. 2568.87 3.97 0.367577 0.31575 24478 177802 -1 2671 16 1128 3601 171553 39937 6.9195 6.9195 -158.404 -6.9195 0 0 937218. 3242.97 0.26 0.08 0.16 -1 -1 0.26 0.032829 0.0289263 194 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 4.81 vpr 62.38 MiB -1 -1 0.32 17964 12 0.20 -1 -1 32688 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63876 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 23.4 MiB 0.41 1189 8934 2259 5724 951 62.4 MiB 0.08 0.00 7.37281 -150.82 -7.37281 7.37281 0.66 0.000768189 0.000711615 0.0377237 0.0349173 28 3038 34 6.55708e+06 349595 500653. 1732.36 1.45 0.14532 0.126933 21310 115450 -1 2732 17 1165 3200 178344 41874 6.8405 6.8405 -151.077 -6.8405 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0277787 0.0244203 157 154 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 6.23 vpr 61.96 MiB -1 -1 0.31 18268 11 0.16 -1 -1 32768 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63452 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 23.4 MiB 0.17 1123 11059 2941 6474 1644 62.0 MiB 0.09 0.00 6.88435 -140.697 -6.88435 6.88435 0.66 0.000572992 0.000520893 0.0455112 0.0419847 34 2634 29 6.55708e+06 253155 585099. 2024.56 3.02 0.304333 0.262006 22462 138074 -1 2360 21 1072 2750 161134 37226 6.10198 6.10198 -137.057 -6.10198 0 0 742403. 2568.87 0.21 0.08 0.12 -1 -1 0.21 0.0309328 0.0270248 145 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 5.64 vpr 62.84 MiB -1 -1 0.28 18304 13 0.31 -1 -1 32860 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 31 32 294 326 1 225 92 17 17 289 -1 unnamed_device 23.9 MiB 0.53 1353 8165 1745 5313 1107 62.8 MiB 0.09 0.00 7.95223 -162.187 -7.95223 7.95223 0.65 0.000937816 0.000867724 0.0408044 0.0376858 30 3774 24 6.55708e+06 349595 526063. 1820.29 1.90 0.162766 0.142984 21886 126133 -1 3129 20 1574 5108 253820 58875 7.0397 7.0397 -155.244 -7.0397 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.0388954 0.0340386 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 4.47 vpr 61.95 MiB -1 -1 0.28 18060 10 0.17 -1 -1 33040 -1 -1 27 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63432 29 32 219 251 1 165 88 17 17 289 -1 unnamed_device 23.4 MiB 0.20 979 6133 1235 4409 489 61.9 MiB 0.03 0.00 5.98168 -119.896 -5.98168 5.98168 0.71 0.000315526 0.000290093 0.011954 0.0109918 28 2713 32 6.55708e+06 325485 500653. 1732.36 1.40 0.109155 0.0940363 21310 115450 -1 2298 16 958 2674 168299 39337 5.32872 5.32872 -123.036 -5.32872 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0246193 0.0216549 137 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 7.02 vpr 62.59 MiB -1 -1 0.30 17944 14 0.19 -1 -1 32720 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64096 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 23.6 MiB 0.48 1013 10618 2901 6668 1049 62.6 MiB 0.10 0.00 8.01252 -164.615 -8.01252 8.01252 0.73 0.000757717 0.000700508 0.0443625 0.0410077 36 2974 27 6.55708e+06 289320 612192. 2118.31 3.44 0.253741 0.219328 22750 144809 -1 2347 16 1050 3010 159154 38815 7.10243 7.10243 -155.609 -7.10243 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.0267851 0.0236156 146 145 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 12.02 vpr 62.75 MiB -1 -1 0.38 18484 13 0.26 -1 -1 32744 -1 -1 30 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 23.8 MiB 0.34 1277 12063 3078 7002 1983 62.8 MiB 0.11 0.00 7.55489 -160.613 -7.55489 7.55489 0.66 0.000867666 0.000801714 0.0531847 0.0491316 28 4163 46 6.55708e+06 361650 500653. 1732.36 8.32 0.295695 0.25537 21310 115450 -1 3209 50 1508 4283 633378 328376 6.86804 6.86804 -161.481 -6.86804 0 0 612192. 2118.31 0.18 0.25 0.10 -1 -1 0.18 0.0735444 0.0632444 180 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 6.24 vpr 62.29 MiB -1 -1 0.32 18024 12 0.15 -1 -1 32760 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63784 31 32 225 257 1 175 88 17 17 289 -1 unnamed_device 23.7 MiB 0.28 972 13543 3543 8079 1921 62.3 MiB 0.11 0.00 6.46809 -135.985 -6.46809 6.46809 0.67 0.000559729 0.000513691 0.0527708 0.0488419 30 2556 39 6.55708e+06 301375 526063. 1820.29 2.93 0.279406 0.241426 21886 126133 -1 2210 15 953 2651 129918 31131 5.72972 5.72972 -132.873 -5.72972 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0244034 0.0215692 137 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 5.95 vpr 62.70 MiB -1 -1 0.37 18324 12 0.22 -1 -1 32840 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 23.8 MiB 0.28 1357 6321 1305 4694 322 62.7 MiB 0.07 0.00 7.2805 -151.118 -7.2805 7.2805 0.66 0.000899021 0.000830646 0.0318539 0.0294227 36 3232 20 6.55708e+06 313430 612192. 2118.31 2.48 0.211936 0.182893 22750 144809 -1 2786 16 1222 3844 228616 50983 6.23184 6.23184 -141.588 -6.23184 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0319245 0.0280905 195 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 7.94 vpr 62.77 MiB -1 -1 0.40 18556 13 0.28 -1 -1 32760 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 23.9 MiB 0.36 1315 14996 4191 8694 2111 62.8 MiB 0.14 0.00 7.68235 -156.61 -7.68235 7.68235 0.70 0.000927361 0.000858221 0.0711775 0.0658618 36 3681 47 6.55708e+06 349595 612192. 2118.31 4.17 0.361675 0.313621 22750 144809 -1 2885 15 1272 3943 212141 48883 6.8385 6.8385 -148.214 -6.8385 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0318766 0.0282643 191 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 7.84 vpr 62.09 MiB -1 -1 0.27 18028 11 0.17 -1 -1 32608 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63576 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 23.4 MiB 0.34 1156 7217 1433 5081 703 62.1 MiB 0.07 0.00 6.44106 -147.701 -6.44106 6.44106 0.66 0.000743994 0.000689181 0.0300113 0.0277912 26 3273 36 6.55708e+06 301375 477104. 1650.88 4.60 0.228366 0.197307 21022 109990 -1 2733 15 1095 3130 197849 44014 5.64872 5.64872 -140.63 -5.64872 0 0 585099. 2024.56 0.21 0.08 0.10 -1 -1 0.21 0.0248261 0.0219023 148 139 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 8.21 vpr 62.55 MiB -1 -1 0.32 17840 13 0.21 -1 -1 32648 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 23.6 MiB 0.37 1221 12568 3500 6849 2219 62.6 MiB 0.12 0.00 7.53241 -157.665 -7.53241 7.53241 0.66 0.000829131 0.000768705 0.0565446 0.052343 34 3711 44 6.55708e+06 289320 585099. 2024.56 4.70 0.354705 0.306046 22462 138074 -1 2854 19 1197 3376 208775 48579 6.7229 6.7229 -154.751 -6.7229 0 0 742403. 2568.87 0.21 0.09 0.12 -1 -1 0.21 0.0325633 0.0284969 164 160 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 5.39 vpr 62.65 MiB -1 -1 0.23 18208 13 0.25 -1 -1 32856 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 23.8 MiB 0.76 1325 8372 1977 5648 747 62.6 MiB 0.09 0.00 7.93261 -169.937 -7.93261 7.93261 0.68 0.000914252 0.000847558 0.0403202 0.0373149 36 3145 18 6.55708e+06 337540 612192. 2118.31 1.57 0.213282 0.184954 22750 144809 -1 2792 16 1137 3209 161819 38585 7.1573 7.1573 -160.833 -7.1573 0 0 782063. 2706.10 0.22 0.08 0.13 -1 -1 0.22 0.0321905 0.0283911 193 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 7.00 vpr 62.43 MiB -1 -1 0.36 18212 11 0.19 -1 -1 33160 -1 -1 26 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63928 29 32 243 275 1 185 87 17 17 289 -1 unnamed_device 23.5 MiB 0.26 1095 12183 2952 7495 1736 62.4 MiB 0.11 0.00 6.38849 -124.147 -6.38849 6.38849 0.65 0.000789332 0.000728953 0.0535202 0.0494659 34 2951 30 6.55708e+06 313430 585099. 2024.56 3.61 0.315499 0.271314 22462 138074 -1 2461 18 1091 3235 228081 66634 5.42198 5.42198 -116.493 -5.42198 0 0 742403. 2568.87 0.20 0.09 0.12 -1 -1 0.20 0.030334 0.0265352 159 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 5.18 vpr 63.21 MiB -1 -1 0.30 18796 14 0.35 -1 -1 33208 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 318 350 1 250 98 17 17 289 -1 unnamed_device 24.2 MiB 0.33 1560 8198 1613 5991 594 63.2 MiB 0.09 0.00 8.39904 -183.874 -8.39904 8.39904 0.67 0.00102517 0.000948562 0.0412368 0.0381517 30 4322 32 6.55708e+06 409870 526063. 1820.29 1.56 0.18587 0.162496 21886 126133 -1 3416 19 1679 5045 238655 56671 7.24856 7.24856 -174.08 -7.24856 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.040797 0.0358846 224 224 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 6.40 vpr 61.93 MiB -1 -1 0.29 17788 12 0.15 -1 -1 32556 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63420 31 32 222 254 1 184 89 17 17 289 -1 unnamed_device 23.3 MiB 0.26 937 6029 1160 4001 868 61.9 MiB 0.06 0.00 6.96386 -146.099 -6.96386 6.96386 0.66 0.000704468 0.000652268 0.024131 0.0223101 30 2769 31 6.55708e+06 313430 526063. 1820.29 3.19 0.241845 0.207768 21886 126133 -1 2184 19 979 2530 133098 32980 6.13718 6.13718 -138.917 -6.13718 0 0 666494. 2306.21 0.19 0.07 0.13 -1 -1 0.19 0.0281374 0.0246526 139 131 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 13.16 vpr 62.83 MiB -1 -1 0.38 19048 13 0.29 -1 -1 32840 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 282 314 1 219 93 17 17 289 -1 unnamed_device 24.0 MiB 0.33 1427 9543 2297 6228 1018 62.8 MiB 0.10 0.00 7.70698 -157.067 -7.70698 7.70698 0.66 0.00091609 0.000848359 0.0453239 0.0419393 28 4355 33 6.55708e+06 349595 500653. 1732.36 9.52 0.324219 0.280793 21310 115450 -1 3400 18 1733 5425 348740 79446 6.70864 6.70864 -153.768 -6.70864 0 0 612192. 2118.31 0.22 0.11 0.10 -1 -1 0.22 0.034608 0.0303541 190 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 6.69 vpr 62.48 MiB -1 -1 0.35 18280 13 0.20 -1 -1 32528 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 23.5 MiB 0.32 1175 6723 1451 4940 332 62.5 MiB 0.07 0.00 7.59104 -161.75 -7.59104 7.59104 0.71 0.000750229 0.000695437 0.0280166 0.0259325 40 2354 17 6.55708e+06 313430 666494. 2306.21 3.22 0.286223 0.245759 23614 160646 -1 2309 19 977 2546 136667 31608 6.4381 6.4381 -149.953 -6.4381 0 0 872365. 3018.56 0.23 0.07 0.15 -1 -1 0.23 0.0294618 0.0258433 151 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 5.40 vpr 62.55 MiB -1 -1 0.37 18456 12 0.23 -1 -1 32764 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 269 301 1 198 90 17 17 289 -1 unnamed_device 23.8 MiB 0.34 1330 9135 2220 6292 623 62.6 MiB 0.10 0.00 6.98077 -149.377 -6.98077 6.98077 0.68 0.00104939 0.000966485 0.0467986 0.0430993 30 3422 46 6.55708e+06 313430 526063. 1820.29 1.84 0.191402 0.166808 21886 126133 -1 2714 29 1134 3876 337265 140345 6.43304 6.43304 -147.012 -6.43304 0 0 666494. 2306.21 0.20 0.14 0.11 -1 -1 0.20 0.0483723 0.0419495 177 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 20.90 vpr 62.87 MiB -1 -1 0.43 19028 15 0.51 -1 -1 33140 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 350 382 1 271 100 17 17 289 -1 unnamed_device 24.3 MiB 0.24 1801 9380 2328 6382 670 62.9 MiB 0.11 0.00 8.42612 -171.773 -8.42612 8.42612 0.63 0.00113796 0.00105151 0.0508282 0.0469256 30 4852 37 6.55708e+06 433980 526063. 1820.29 17.05 0.505037 0.434971 21886 126133 -1 4091 21 2438 8231 462298 101679 7.41256 7.41256 -169.461 -7.41256 0 0 666494. 2306.21 0.19 0.15 0.11 -1 -1 0.19 0.0495155 0.0434374 256 256 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 5.71 vpr 61.72 MiB -1 -1 0.28 17564 10 0.11 -1 -1 32548 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63200 30 32 174 206 1 139 80 17 17 289 -1 unnamed_device 23.1 MiB 0.11 895 9024 2291 5391 1342 61.7 MiB 0.07 0.00 5.25257 -121.184 -5.25257 5.25257 0.66 0.000530729 0.000489658 0.031241 0.0289814 28 2316 41 6.55708e+06 216990 500653. 1732.36 2.81 0.175344 0.151112 21310 115450 -1 2035 18 726 1829 113845 26006 4.8312 4.8312 -121.576 -4.8312 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0211631 0.0184902 92 86 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 4.44 vpr 61.95 MiB -1 -1 0.32 17980 13 0.21 -1 -1 32704 -1 -1 25 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63440 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 23.3 MiB 0.18 1032 8919 2164 5388 1367 62.0 MiB 0.08 0.00 7.46729 -149.631 -7.46729 7.46729 0.66 0.000749839 0.000695075 0.03715 0.0344222 28 2742 21 6.55708e+06 301375 500653. 1732.36 1.25 0.120146 0.106054 21310 115450 -1 2581 16 1072 2952 169628 39515 6.88592 6.88592 -148.958 -6.88592 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0258277 0.0227163 143 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 6.83 vpr 62.50 MiB -1 -1 0.33 17932 12 0.19 -1 -1 32752 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 264 296 1 203 90 17 17 289 -1 unnamed_device 23.4 MiB 0.29 1234 5115 926 4061 128 62.5 MiB 0.06 0.00 7.54227 -156.123 -7.54227 7.54227 0.76 0.000847988 0.000787404 0.0247639 0.0229842 36 2946 20 6.55708e+06 313430 612192. 2118.31 3.36 0.262689 0.224635 22750 144809 -1 2609 20 1325 3857 197427 46812 6.31084 6.31084 -146.339 -6.31084 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.034274 0.029909 172 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 6.40 vpr 61.66 MiB -1 -1 0.29 17756 9 0.13 -1 -1 32456 -1 -1 24 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63144 25 32 183 215 1 140 81 17 17 289 -1 unnamed_device 23.0 MiB 0.18 725 12156 3385 6978 1793 61.7 MiB 0.09 0.00 5.27745 -95.2043 -5.27745 5.27745 0.71 0.000610813 0.000564715 0.0444208 0.0411181 26 2187 24 6.55708e+06 289320 477104. 1650.88 3.32 0.209521 0.180702 21022 109990 -1 1846 19 919 2656 157364 37938 4.9534 4.9534 -96.7502 -4.9534 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0238207 0.0207714 111 110 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 6.41 vpr 62.86 MiB -1 -1 0.33 18524 12 0.31 -1 -1 32928 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 23.9 MiB 0.29 1424 11419 2633 7905 881 62.9 MiB 0.11 0.00 7.34317 -159.962 -7.34317 7.34317 0.67 0.000960725 0.000890306 0.0528701 0.0488353 36 3763 23 6.55708e+06 397815 612192. 2118.31 2.82 0.245813 0.21378 22750 144809 -1 3168 17 1492 4298 232708 54498 6.31284 6.31284 -150.037 -6.31284 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.034894 0.0307185 212 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 7.30 vpr 62.79 MiB -1 -1 0.36 19020 13 0.30 -1 -1 32720 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 31 32 290 322 1 228 94 17 17 289 -1 unnamed_device 23.9 MiB 0.33 1528 10531 2641 6672 1218 62.8 MiB 0.11 0.00 8.32074 -170.063 -8.32074 8.32074 0.66 0.000952663 0.000882267 0.0508579 0.0470144 48 3177 16 6.55708e+06 373705 816265. 2824.45 3.59 0.305023 0.263482 25054 189045 -1 2972 15 1138 3521 197311 44613 7.1991 7.1991 -157.572 -7.1991 0 0 986792. 3414.50 0.27 0.08 0.17 -1 -1 0.27 0.0319127 0.0281657 200 199 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.38 vpr 62.99 MiB -1 -1 0.23 18212 1 0.03 -1 -1 30328 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1021 13017 3203 8186 1628 63.0 MiB 0.13 0.00 5.56529 -159.911 -5.56529 5.56529 0.67 0.000564656 0.000519284 0.0423247 0.0388847 32 2485 24 6.64007e+06 401856 554710. 1919.41 0.92 0.12894 0.11321 22834 132086 -1 2178 21 1579 2366 153039 36543 4.64968 4.64968 -151.131 -4.64968 0 0 701300. 2426.64 0.26 0.08 0.13 -1 -1 0.26 0.028886 0.0252108 154 50 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.18 vpr 62.96 MiB -1 -1 0.26 18316 1 0.03 -1 -1 30364 -1 -1 25 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 30 32 363 293 1 196 87 17 17 289 -1 unnamed_device 23.8 MiB 0.35 1071 13527 3636 8473 1418 63.0 MiB 0.13 0.00 4.97921 -144.408 -4.97921 4.97921 0.68 0.000708503 0.000658238 0.0527121 0.0489759 32 2399 23 6.64007e+06 313950 554710. 1919.41 0.86 0.137732 0.121714 22834 132086 -1 2149 20 1658 2519 162674 39380 4.22689 4.22689 -145.337 -4.22689 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0290445 0.0254102 141 63 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 3.99 vpr 62.54 MiB -1 -1 0.23 18224 1 0.03 -1 -1 30436 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 23.8 MiB 0.34 1084 15639 4927 8621 2091 62.5 MiB 0.14 0.00 4.35433 -126.133 -4.35433 4.35433 0.66 0.000627518 0.00058291 0.053444 0.0496888 32 2438 19 6.64007e+06 288834 554710. 1919.41 0.81 0.125882 0.11157 22834 132086 -1 2059 19 1091 1550 105201 24017 3.66183 3.66183 -123.368 -3.66183 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0241716 0.0211508 126 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 3.88 vpr 62.33 MiB -1 -1 0.23 18268 1 0.03 -1 -1 30316 -1 -1 27 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63824 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 23.6 MiB 0.16 931 15103 4868 7954 2281 62.3 MiB 0.11 0.00 4.52953 -121.776 -4.52953 4.52953 0.72 0.000637359 0.00059246 0.040172 0.0372385 32 2287 23 6.64007e+06 339066 554710. 1919.41 0.86 0.119615 0.105439 22834 132086 -1 1914 23 1465 2740 192952 43744 3.67063 3.67063 -116.076 -3.67063 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.027925 0.024214 126 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.04 vpr 62.68 MiB -1 -1 0.22 18248 1 0.03 -1 -1 30412 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 23.7 MiB 0.14 1007 10071 2662 6608 801 62.7 MiB 0.10 0.00 4.57112 -132.997 -4.57112 4.57112 0.66 0.00068063 0.000632753 0.0380719 0.0353738 32 2498 20 6.64007e+06 288834 554710. 1919.41 0.86 0.117295 0.103279 22834 132086 -1 2122 21 1503 2874 185659 42276 3.64943 3.64943 -130.19 -3.64943 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0280166 0.0244165 130 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.34 vpr 62.89 MiB -1 -1 0.20 18276 1 0.04 -1 -1 30300 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 23.8 MiB 0.19 1017 13373 3190 9207 976 62.9 MiB 0.13 0.00 3.5011 -120.17 -3.5011 3.5011 0.66 0.000716077 0.000664217 0.0456092 0.0423994 28 2759 36 6.64007e+06 426972 500653. 1732.36 1.10 0.148399 0.130385 21970 115934 -1 2279 18 1387 2237 156657 37609 2.89817 2.89817 -120.057 -2.89817 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0260007 0.0227426 142 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.94 vpr 62.30 MiB -1 -1 0.23 17952 1 0.03 -1 -1 30636 -1 -1 19 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63792 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 23.6 MiB 0.15 699 11034 3536 5995 1503 62.3 MiB 0.09 0.00 3.75638 -102.609 -3.75638 3.75638 0.70 0.00055762 0.000518044 0.0388487 0.0361634 32 1595 18 6.64007e+06 238602 554710. 1919.41 0.78 0.101862 0.0899001 22834 132086 -1 1412 20 879 1541 105739 24721 3.09756 3.09756 -96.0776 -3.09756 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0221045 0.0191943 93 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.19 vpr 62.35 MiB -1 -1 0.23 17680 1 0.03 -1 -1 30088 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63848 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 23.7 MiB 0.12 827 11383 2423 8400 560 62.4 MiB 0.10 0.00 3.48559 -101.391 -3.48559 3.48559 0.69 0.000598102 0.000556408 0.0344567 0.032064 28 2163 36 6.64007e+06 389298 500653. 1732.36 1.03 0.118329 0.103569 21970 115934 -1 1858 21 1080 1973 129274 30214 2.87017 2.87017 -99.5446 -2.87017 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0246199 0.0214006 115 4 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.05 vpr 62.66 MiB -1 -1 0.25 18332 1 0.03 -1 -1 30128 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64164 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 23.7 MiB 0.26 888 14123 4595 7521 2007 62.7 MiB 0.12 0.00 3.62422 -120.034 -3.62422 3.62422 0.77 0.000635386 0.000590538 0.0527369 0.0490371 32 1992 19 6.64007e+06 251160 554710. 1919.41 0.81 0.125321 0.111017 22834 132086 -1 1743 19 1121 1661 106825 24557 2.99817 2.99817 -113.252 -2.99817 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0243709 0.0212505 111 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 3.80 vpr 62.29 MiB -1 -1 0.22 18048 1 0.03 -1 -1 30084 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 23.7 MiB 0.19 874 11631 3631 6742 1258 62.3 MiB 0.11 0.00 3.92955 -127.77 -3.92955 3.92955 0.67 0.000622228 0.000579104 0.0434931 0.0404691 32 1957 19 6.64007e+06 213486 554710. 1919.41 0.83 0.115154 0.101749 22834 132086 -1 1753 19 1044 1681 109300 25609 2.90177 2.90177 -115.584 -2.90177 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0236075 0.0205692 112 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.77 vpr 62.62 MiB -1 -1 0.26 18204 1 0.03 -1 -1 30560 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 23.8 MiB 0.12 728 11571 3255 7389 927 62.6 MiB 0.11 0.00 4.13115 -112.218 -4.13115 4.13115 0.68 0.00061513 0.000571842 0.0448576 0.0417215 28 1735 19 6.64007e+06 213486 500653. 1732.36 0.88 0.118777 0.104872 21970 115934 -1 1482 19 805 1293 87516 20285 2.86597 2.86597 -102.428 -2.86597 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0234705 0.0204195 98 63 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.93 vpr 62.39 MiB -1 -1 0.19 18032 1 0.03 -1 -1 30256 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 23.8 MiB 0.27 793 12008 4621 6063 1324 62.4 MiB 0.11 0.00 3.82041 -120.517 -3.82041 3.82041 0.66 0.000601737 0.000555183 0.0421086 0.0391832 32 2253 40 6.64007e+06 226044 554710. 1919.41 0.91 0.13766 0.120576 22834 132086 -1 1803 21 1195 1619 115534 26931 3.04337 3.04337 -115.258 -3.04337 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0246278 0.0214503 109 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.19 vpr 62.84 MiB -1 -1 0.24 18200 1 0.03 -1 -1 30368 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 23.9 MiB 0.30 1104 18028 6323 9464 2241 62.8 MiB 0.17 0.00 4.4826 -145.148 -4.4826 4.4826 0.78 0.000527484 0.000484485 0.0545363 0.050086 32 2419 20 6.64007e+06 301392 554710. 1919.41 0.89 0.13583 0.119822 22834 132086 -1 2198 21 1658 2485 165389 37416 3.29783 3.29783 -129.319 -3.29783 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0286386 0.0250538 139 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 3.94 vpr 62.88 MiB -1 -1 0.24 18252 1 0.03 -1 -1 30332 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 23.9 MiB 0.18 965 15215 3853 10047 1315 62.9 MiB 0.15 0.00 4.76344 -140.281 -4.76344 4.76344 0.67 0.000715299 0.000664368 0.0525343 0.048786 28 2304 23 6.64007e+06 389298 500653. 1732.36 0.95 0.137811 0.121794 21970 115934 -1 2045 22 1662 2823 167404 40668 3.88183 3.88183 -136.686 -3.88183 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0299715 0.0260779 134 61 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.57 vpr 62.00 MiB -1 -1 0.22 17848 1 0.03 -1 -1 30424 -1 -1 21 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63492 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 23.3 MiB 0.14 748 11118 2695 7379 1044 62.0 MiB 0.09 0.00 3.28519 -93.7186 -3.28519 3.28519 0.66 0.000536038 0.000497763 0.0353719 0.0328691 28 1645 23 6.64007e+06 263718 500653. 1732.36 0.76 0.0948634 0.0835772 21970 115934 -1 1486 16 782 1301 86789 20385 2.71577 2.71577 -91.5176 -2.71577 0 0 612192. 2118.31 0.18 0.05 0.12 -1 -1 0.18 0.017134 0.0150786 98 27 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 3.96 vpr 62.88 MiB -1 -1 0.23 18316 1 0.03 -1 -1 30232 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 23.8 MiB 0.20 1002 9914 2245 7192 477 62.9 MiB 0.10 0.00 4.06227 -126.501 -4.06227 4.06227 0.66 0.00072018 0.000669071 0.0403336 0.0374945 32 2466 22 6.64007e+06 276276 554710. 1919.41 0.90 0.126341 0.111155 22834 132086 -1 2152 20 1479 2608 179323 41071 3.09436 3.09436 -120.061 -3.09436 0 0 701300. 2426.64 0.22 0.08 0.12 -1 -1 0.22 0.0285243 0.0248891 133 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.72 vpr 62.80 MiB -1 -1 0.17 18288 1 0.03 -1 -1 30076 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 24.0 MiB 0.27 1138 14679 4370 8457 1852 62.8 MiB 0.14 0.00 4.43584 -143.418 -4.43584 4.43584 0.67 0.00068932 0.000641062 0.054757 0.0508591 30 2626 19 6.64007e+06 288834 526063. 1820.29 2.64 0.214941 0.187495 22546 126617 -1 2242 21 1375 2016 134012 29343 3.26883 3.26883 -128.611 -3.26883 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0282101 0.0246252 138 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.63 vpr 62.70 MiB -1 -1 0.22 18196 1 0.03 -1 -1 30304 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 23.8 MiB 0.14 793 7443 1484 5603 356 62.7 MiB 0.07 0.00 2.85064 -101.719 -2.85064 2.85064 0.67 0.000649204 0.000602918 0.0250789 0.0233031 30 1881 18 6.64007e+06 364182 526063. 1820.29 0.80 0.0962491 0.0843251 22546 126617 -1 1524 20 1018 1637 84819 20502 2.06951 2.06951 -94.0823 -2.06951 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0260411 0.0226219 110 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.39 vpr 62.02 MiB -1 -1 0.17 17960 1 0.03 -1 -1 30052 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63512 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 23.5 MiB 0.07 601 7249 1675 5111 463 62.0 MiB 0.06 0.00 2.38033 -78.5571 -2.38033 2.38033 0.66 0.000502008 0.000467856 0.0236251 0.0220059 28 1432 21 6.64007e+06 188370 500653. 1732.36 0.74 0.081619 0.0713844 21970 115934 -1 1285 21 703 1012 85737 19690 2.04611 2.04611 -83.9383 -2.04611 0 0 612192. 2118.31 0.18 0.05 0.11 -1 -1 0.18 0.0201613 0.0174403 81 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.78 vpr 62.51 MiB -1 -1 0.18 18104 1 0.03 -1 -1 30360 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 23.8 MiB 0.27 927 14123 4588 7430 2105 62.5 MiB 0.13 0.00 4.95484 -148.86 -4.95484 4.95484 0.66 0.000608806 0.000566243 0.049797 0.0463098 30 2054 21 6.64007e+06 251160 526063. 1820.29 0.80 0.121527 0.107609 22546 126617 -1 1848 20 956 1399 83300 19321 3.50023 3.50023 -130.959 -3.50023 0 0 666494. 2306.21 0.19 0.07 0.12 -1 -1 0.19 0.0294136 0.0257677 128 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.68 vpr 62.67 MiB -1 -1 0.23 18252 1 0.04 -1 -1 30396 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 23.6 MiB 0.12 927 7007 1409 5318 280 62.7 MiB 0.07 0.00 4.20815 -131.502 -4.20815 4.20815 0.66 0.000697873 0.000648775 0.0249723 0.0231817 30 2145 21 6.64007e+06 389298 526063. 1820.29 0.83 0.106763 0.0933829 22546 126617 -1 1871 22 1181 1998 116468 26613 3.49343 3.49343 -124.596 -3.49343 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0292163 0.0254292 135 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.13 vpr 63.10 MiB -1 -1 0.26 18124 1 0.03 -1 -1 30284 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 24.3 MiB 0.32 1165 13949 4134 8420 1395 63.1 MiB 0.14 0.00 4.61182 -142.746 -4.61182 4.61182 0.67 0.000725301 0.000674225 0.0535353 0.0496776 32 2716 19 6.64007e+06 313950 554710. 1919.41 0.87 0.134757 0.119306 22834 132086 -1 2294 18 1476 2310 151067 35062 3.86002 3.86002 -132.307 -3.86002 0 0 701300. 2426.64 0.22 0.07 0.14 -1 -1 0.22 0.0261197 0.0233185 144 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 5.40 vpr 61.68 MiB -1 -1 0.21 18044 1 0.03 -1 -1 30592 -1 -1 18 26 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63164 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 23.1 MiB 0.16 372 9836 3040 4897 1899 61.7 MiB 0.06 0.00 2.3975 -64.4977 -2.3975 2.3975 0.67 0.000425582 0.000395587 0.0278256 0.0258935 34 906 24 6.64007e+06 226044 585099. 2024.56 2.53 0.139639 0.120599 23122 138558 -1 765 15 510 696 40243 12227 1.85511 1.85511 -61.8909 -1.85511 0 0 742403. 2568.87 0.21 0.04 0.13 -1 -1 0.21 0.0139958 0.0122676 77 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 5.44 vpr 62.41 MiB -1 -1 0.23 17720 1 0.03 -1 -1 30316 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63908 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 23.8 MiB 0.12 995 9571 2665 6351 555 62.4 MiB 0.09 0.00 4.78226 -126.055 -4.78226 4.78226 0.66 0.000613588 0.000569871 0.0339607 0.031584 28 2148 21 6.64007e+06 263718 500653. 1732.36 2.47 0.188996 0.163661 21970 115934 -1 1974 21 1150 2159 136149 31256 3.72363 3.72363 -120.986 -3.72363 0 0 612192. 2118.31 0.27 0.05 0.12 -1 -1 0.27 0.0164745 0.0146862 118 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.64 vpr 61.72 MiB -1 -1 0.15 17412 1 0.03 -1 -1 30168 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63204 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 23.0 MiB 0.09 542 9374 3354 4039 1981 61.7 MiB 0.06 0.00 2.60773 -75.9678 -2.60773 2.60773 0.66 0.000423044 0.000392845 0.0249885 0.0232056 26 1286 38 6.64007e+06 175812 477104. 1650.88 2.01 0.131561 0.113766 21682 110474 -1 1078 13 466 537 40953 9922 2.06131 2.06131 -73.6644 -2.06131 0 0 585099. 2024.56 0.17 0.03 0.10 -1 -1 0.17 0.0125309 0.0110413 79 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 5.16 vpr 62.37 MiB -1 -1 0.22 17900 1 0.03 -1 -1 29952 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63864 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 23.6 MiB 0.11 888 9892 2278 7158 456 62.4 MiB 0.09 0.00 4.63801 -125.739 -4.63801 4.63801 0.66 0.000630477 0.000586679 0.0314642 0.0292551 26 2284 26 6.64007e+06 376740 477104. 1650.88 2.33 0.181768 0.157291 21682 110474 -1 1858 22 1109 1983 144744 33533 3.81383 3.81383 -119.339 -3.81383 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0269325 0.0234466 123 24 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.52 vpr 62.44 MiB -1 -1 0.19 17752 1 0.03 -1 -1 30380 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 23.7 MiB 0.11 1023 7871 1717 5540 614 62.4 MiB 0.08 0.00 3.86807 -111.494 -3.86807 3.86807 0.69 0.00063496 0.000590658 0.0252786 0.0235107 30 2195 22 6.64007e+06 389298 526063. 1820.29 1.70 0.171786 0.148222 22546 126617 -1 1865 18 997 1812 96454 22629 2.80997 2.80997 -103.812 -2.80997 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0233619 0.0204568 128 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 3.98 vpr 62.82 MiB -1 -1 0.23 18256 1 0.02 -1 -1 30344 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64332 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 23.8 MiB 0.18 1020 17431 5202 10159 2070 62.8 MiB 0.16 0.00 4.78258 -136.405 -4.78258 4.78258 0.64 0.000674347 0.00062632 0.0597799 0.0554699 32 2211 20 6.64007e+06 339066 554710. 1919.41 0.82 0.138352 0.122806 22834 132086 -1 1999 22 1307 2307 139998 33525 3.95603 3.95603 -130.892 -3.95603 0 0 701300. 2426.64 0.26 0.08 0.14 -1 -1 0.26 0.0293105 0.0255876 126 50 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.73 vpr 62.32 MiB -1 -1 0.22 18048 1 0.03 -1 -1 30088 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63812 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 23.5 MiB 0.10 785 11260 3393 5970 1897 62.3 MiB 0.10 0.00 3.03896 -100.907 -3.03896 3.03896 0.69 0.000601335 0.000560027 0.0412289 0.0383589 32 1803 19 6.64007e+06 200928 554710. 1919.41 0.82 0.110011 0.0970381 22834 132086 -1 1509 18 768 1281 82415 19190 2.69497 2.69497 -101.097 -2.69497 0 0 701300. 2426.64 0.20 0.05 0.12 -1 -1 0.20 0.02201 0.0192229 101 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.72 vpr 62.09 MiB -1 -1 0.23 18012 1 0.03 -1 -1 30140 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63580 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 23.4 MiB 0.10 760 10873 2730 7151 992 62.1 MiB 0.09 0.00 3.24119 -98.8846 -3.24119 3.24119 0.73 0.000421575 0.000381747 0.0318522 0.0294355 32 1618 23 6.64007e+06 288834 554710. 1919.41 0.82 0.108035 0.0945051 22834 132086 -1 1566 17 817 1243 85514 19258 2.68277 2.68277 -96.8564 -2.68277 0 0 701300. 2426.64 0.20 0.05 0.12 -1 -1 0.20 0.0197182 0.0172203 97 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.53 vpr 62.36 MiB -1 -1 0.24 18064 1 0.03 -1 -1 30056 -1 -1 23 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 23.5 MiB 0.07 598 14123 3741 8412 1970 62.4 MiB 0.12 0.00 3.43604 -92.6832 -3.43604 3.43604 0.66 0.000555858 0.000517602 0.0427299 0.039542 28 1721 21 6.64007e+06 288834 500653. 1732.36 0.79 0.109002 0.0960483 21970 115934 -1 1490 19 897 1577 103958 25003 2.68077 2.68077 -91.3985 -2.68077 0 0 612192. 2118.31 0.19 0.06 0.12 -1 -1 0.19 0.0226226 0.0197983 98 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 5.18 vpr 62.11 MiB -1 -1 0.22 17684 1 0.03 -1 -1 30280 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63600 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 23.3 MiB 0.10 743 5843 1254 4169 420 62.1 MiB 0.06 0.00 3.98815 -115.073 -3.98815 3.98815 0.66 0.000566335 0.000527466 0.0202277 0.0188328 30 1789 19 6.64007e+06 238602 526063. 1820.29 2.42 0.159717 0.137194 22546 126617 -1 1545 19 905 1489 79062 19142 2.74897 2.74897 -104.355 -2.74897 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0216871 0.0188936 110 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.56 vpr 62.27 MiB -1 -1 0.23 18032 1 0.03 -1 -1 30264 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63768 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 23.7 MiB 0.06 870 7728 1633 5460 635 62.3 MiB 0.07 0.00 3.60767 -107.985 -3.60767 3.60767 0.66 0.00058234 0.000542239 0.0243253 0.0226518 30 1852 20 6.64007e+06 339066 526063. 1820.29 0.78 0.0915017 0.0799551 22546 126617 -1 1604 20 683 1201 64521 14942 2.70157 2.70157 -101.758 -2.70157 0 0 666494. 2306.21 0.19 0.05 0.12 -1 -1 0.19 0.0215768 0.0188933 103 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.82 vpr 62.31 MiB -1 -1 0.23 17864 1 0.03 -1 -1 30404 -1 -1 26 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63808 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 23.7 MiB 0.18 695 8727 2118 5729 880 62.3 MiB 0.08 0.00 3.3589 -102.835 -3.3589 3.3589 0.74 0.000599258 0.000558063 0.0293364 0.0272972 28 1809 23 6.64007e+06 326508 500653. 1732.36 0.80 0.0996642 0.0871878 21970 115934 -1 1598 20 885 1313 76615 19126 2.49117 2.49117 -97.9731 -2.49117 0 0 612192. 2118.31 0.21 0.06 0.11 -1 -1 0.21 0.0243927 0.0212588 105 54 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.77 vpr 63.06 MiB -1 -1 0.19 18224 1 0.03 -1 -1 30572 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 24.2 MiB 0.20 1108 10812 2420 7290 1102 63.1 MiB 0.11 0.00 4.35696 -124.357 -4.35696 4.35696 0.66 0.000738257 0.000685187 0.0357526 0.0332294 26 3426 39 6.64007e+06 477204 477104. 1650.88 1.92 0.144415 0.126533 21682 110474 -1 2530 19 1336 2472 192577 43808 3.82982 3.82982 -127.968 -3.82982 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0284709 0.0249443 151 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 3.95 vpr 63.05 MiB -1 -1 0.22 18224 1 0.03 -1 -1 30280 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 24.2 MiB 0.18 971 9971 2311 7104 556 63.0 MiB 0.11 0.00 3.87558 -129.13 -3.87558 3.87558 0.66 0.000761998 0.000708277 0.0349548 0.0324563 26 2669 33 6.64007e+06 464646 477104. 1650.88 1.00 0.136595 0.119479 21682 110474 -1 2141 19 1539 2437 158729 37370 3.54497 3.54497 -129.363 -3.54497 0 0 585099. 2024.56 0.18 0.08 0.10 -1 -1 0.18 0.0289801 0.0253467 147 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 3.85 vpr 62.30 MiB -1 -1 0.21 18388 1 0.03 -1 -1 30152 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 23.7 MiB 0.33 962 12186 3847 6704 1635 62.3 MiB 0.11 0.00 4.35701 -128.587 -4.35701 4.35701 0.64 0.000595113 0.000553704 0.0428465 0.039845 32 2058 21 6.64007e+06 238602 554710. 1919.41 0.82 0.109154 0.0964222 22834 132086 -1 1817 18 977 1401 95494 21988 3.12563 3.12563 -115.954 -3.12563 0 0 701300. 2426.64 0.21 0.06 0.12 -1 -1 0.21 0.0226556 0.0198426 112 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 5.73 vpr 63.05 MiB -1 -1 0.23 18244 1 0.03 -1 -1 30400 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 24.0 MiB 0.18 1023 13933 4615 7223 2095 63.1 MiB 0.13 0.00 4.04757 -131.412 -4.04757 4.04757 0.66 0.000716938 0.00066506 0.0538306 0.049992 32 2494 18 6.64007e+06 313950 554710. 1919.41 2.66 0.2211 0.1923 22834 132086 -1 2105 20 1612 2777 194031 44279 3.15237 3.15237 -115.474 -3.15237 0 0 701300. 2426.64 0.20 0.08 0.13 -1 -1 0.20 0.0285599 0.0249028 138 61 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.75 vpr 62.60 MiB -1 -1 0.24 18132 1 0.03 -1 -1 30440 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 24.0 MiB 0.52 1128 17687 5057 9627 3003 62.6 MiB 0.20 0.00 5.89333 -173.14 -5.89333 5.89333 0.66 0.00073074 0.000678316 0.0709825 0.0657142 32 3236 33 6.64007e+06 364182 554710. 1919.41 1.15 0.170247 0.150589 22834 132086 -1 2469 21 2342 3476 223308 54942 4.78815 4.78815 -164.404 -4.78815 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0302024 0.0263682 172 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.16 vpr 63.09 MiB -1 -1 0.26 18204 1 0.02 -1 -1 30388 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 24.2 MiB 0.42 1191 15768 5423 8594 1751 63.1 MiB 0.16 0.00 5.08361 -153.384 -5.08361 5.08361 0.66 0.000745469 0.000692213 0.061586 0.0572246 32 2716 22 6.64007e+06 339066 554710. 1919.41 0.88 0.149979 0.133048 22834 132086 -1 2377 22 1795 2845 225337 48102 4.51948 4.51948 -148.412 -4.51948 0 0 701300. 2426.64 0.20 0.09 0.13 -1 -1 0.20 0.03181 0.0277881 164 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 3.96 vpr 63.13 MiB -1 -1 0.24 18140 1 0.03 -1 -1 30488 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 24.3 MiB 0.20 1006 12661 3249 8412 1000 63.1 MiB 0.14 0.00 4.68524 -135.636 -4.68524 4.68524 0.67 0.000690648 0.000640877 0.0470083 0.043492 32 2355 20 6.64007e+06 389298 554710. 1919.41 0.83 0.127706 0.112566 22834 132086 -1 2083 21 944 1573 101119 23699 3.58023 3.58023 -126.148 -3.58023 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0287873 0.0251414 135 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 5.35 vpr 62.39 MiB -1 -1 0.22 17860 1 0.03 -1 -1 30284 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 23.7 MiB 0.27 1073 14679 4707 8091 1881 62.4 MiB 0.14 0.00 4.36796 -119.855 -4.36796 4.36796 0.69 0.000619261 0.000575432 0.0493257 0.0458664 26 2749 26 6.64007e+06 288834 477104. 1650.88 2.24 0.190623 0.166082 21682 110474 -1 2275 22 1385 2049 156725 35071 3.92503 3.92503 -125.203 -3.92503 0 0 585099. 2024.56 0.18 0.09 0.10 -1 -1 0.18 0.0315533 0.02744 119 27 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.05 vpr 63.03 MiB -1 -1 0.25 18512 1 0.03 -1 -1 30380 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 24.6 MiB 0.22 1249 19868 5433 11877 2558 63.0 MiB 0.19 0.00 5.1415 -166.814 -5.1415 5.1415 0.69 0.00086197 0.000801405 0.0735676 0.0683622 32 2828 25 6.64007e+06 502320 554710. 1919.41 0.90 0.179365 0.158798 22834 132086 -1 2459 19 1579 2444 152376 34828 3.91929 3.91929 -146.959 -3.91929 0 0 701300. 2426.64 0.19 0.08 0.08 -1 -1 0.19 0.0331301 0.0289357 174 87 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.60 vpr 62.26 MiB -1 -1 0.19 17900 1 0.03 -1 -1 30156 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63756 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 23.6 MiB 0.12 803 5025 1005 3649 371 62.3 MiB 0.05 0.00 3.83987 -104.278 -3.83987 3.83987 0.69 0.000562594 0.000523459 0.0174175 0.0162101 30 1786 19 6.64007e+06 263718 526063. 1820.29 0.81 0.0823617 0.0716063 22546 126617 -1 1640 18 794 1429 83385 18942 2.83677 2.83677 -98.8728 -2.83677 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0205533 0.0179074 101 28 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.66 vpr 62.79 MiB -1 -1 0.25 18200 1 0.03 -1 -1 30224 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 23.9 MiB 0.29 1162 10228 2647 6642 939 62.8 MiB 0.13 0.00 5.14752 -155.108 -5.14752 5.14752 0.75 0.000686913 0.00063913 0.0382271 0.0354898 26 2969 31 6.64007e+06 313950 477104. 1650.88 1.52 0.131748 0.115687 21682 110474 -1 2516 19 1413 2079 155667 35015 4.39628 4.39628 -150.288 -4.39628 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0264779 0.023167 144 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.56 vpr 62.79 MiB -1 -1 0.22 18356 1 0.03 -1 -1 30360 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 23.7 MiB 0.19 884 8755 1783 6202 770 62.8 MiB 0.09 0.00 3.97129 -116.286 -3.97129 3.97129 0.67 0.000695023 0.000644999 0.0298557 0.0277429 30 2199 23 6.64007e+06 414414 526063. 1820.29 2.66 0.197784 0.170743 22546 126617 -1 1729 19 894 1557 79184 20282 3.00716 3.00716 -105.065 -3.00716 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0264503 0.0231635 131 53 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 3.75 vpr 62.49 MiB -1 -1 0.22 17768 1 0.03 -1 -1 30108 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63988 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 23.8 MiB 0.11 912 5938 1237 4353 348 62.5 MiB 0.07 0.00 4.13756 -120.743 -4.13756 4.13756 0.66 0.00062453 0.00058063 0.0212191 0.0197314 32 2242 21 6.64007e+06 301392 554710. 1919.41 0.86 0.0977065 0.0853562 22834 132086 -1 1917 19 1172 2160 138053 31963 3.58142 3.58142 -118.401 -3.58142 0 0 701300. 2426.64 0.26 0.08 0.10 -1 -1 0.26 0.0304189 0.0265365 123 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 3.96 vpr 62.93 MiB -1 -1 0.23 18276 1 0.03 -1 -1 30248 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 24.1 MiB 0.29 1010 13933 3725 7818 2390 62.9 MiB 0.14 0.00 4.75998 -138.258 -4.75998 4.75998 0.66 0.000699845 0.000648416 0.0528734 0.048907 32 2399 17 6.64007e+06 301392 554710. 1919.41 0.86 0.132816 0.117603 22834 132086 -1 2066 21 1220 1691 122509 28327 3.22937 3.22937 -122.017 -3.22937 0 0 701300. 2426.64 0.20 0.07 0.09 -1 -1 0.20 0.028709 0.025031 138 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 5.73 vpr 62.95 MiB -1 -1 0.21 18228 1 0.03 -1 -1 30312 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 23.9 MiB 0.20 1025 10827 2395 7683 749 63.0 MiB 0.11 0.00 3.7957 -125.338 -3.7957 3.7957 0.66 0.00071358 0.00066305 0.0376309 0.034973 26 2743 22 6.64007e+06 401856 477104. 1650.88 2.73 0.192326 0.166996 21682 110474 -1 2294 21 1421 2427 174311 39299 3.11037 3.11037 -123.615 -3.11037 0 0 585099. 2024.56 0.21 0.08 0.12 -1 -1 0.21 0.0292806 0.0255171 133 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 3.90 vpr 63.01 MiB -1 -1 0.26 18236 1 0.03 -1 -1 30304 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 24.1 MiB 0.22 1100 11381 2833 7714 834 63.0 MiB 0.12 0.00 4.776 -146.002 -4.776 4.776 0.66 0.000694827 0.00063395 0.0344077 0.0317627 30 2323 18 6.64007e+06 464646 526063. 1820.29 0.82 0.120354 0.104855 22546 126617 -1 2024 20 953 1446 75237 18047 3.35083 3.35083 -126.151 -3.35083 0 0 666494. 2306.21 0.20 0.06 0.14 -1 -1 0.20 0.0293384 0.0256248 145 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.66 vpr 62.48 MiB -1 -1 0.23 18144 1 0.03 -1 -1 30288 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 23.8 MiB 0.10 831 7023 1481 5311 231 62.5 MiB 0.08 0.00 4.19967 -120.534 -4.19967 4.19967 0.66 0.000639319 0.000594248 0.0236421 0.0219592 30 2034 22 6.64007e+06 364182 526063. 1820.29 0.85 0.0998906 0.087179 22546 126617 -1 1614 21 1040 1872 100357 23807 3.57043 3.57043 -112.869 -3.57043 0 0 666494. 2306.21 0.19 0.04 0.09 -1 -1 0.19 0.0146551 0.0129876 122 24 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 3.96 vpr 62.97 MiB -1 -1 0.18 18324 1 0.03 -1 -1 30284 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 23.9 MiB 0.32 1052 7888 1681 5591 616 63.0 MiB 0.08 0.00 5.2222 -143.082 -5.2222 5.2222 0.66 0.000662635 0.000614811 0.0289617 0.0269512 28 2639 22 6.64007e+06 301392 500653. 1732.36 0.87 0.10784 0.0945078 21970 115934 -1 2239 17 1340 1967 134731 31386 3.71362 3.71362 -131.242 -3.71362 0 0 612192. 2118.31 0.18 0.07 0.14 -1 -1 0.18 0.0234716 0.0206182 133 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.09 vpr 63.25 MiB -1 -1 0.25 18200 1 0.03 -1 -1 30360 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 24.4 MiB 0.36 1063 10423 2679 6644 1100 63.3 MiB 0.11 0.00 5.14867 -149.83 -5.14867 5.14867 0.67 0.000723032 0.000671982 0.0410949 0.03818 32 2686 22 6.64007e+06 313950 554710. 1919.41 0.92 0.126934 0.111727 22834 132086 -1 2409 19 1510 2389 160710 37915 4.00948 4.00948 -139.798 -4.00948 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0278762 0.0243911 148 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 3.93 vpr 62.92 MiB -1 -1 0.21 18324 1 0.03 -1 -1 30272 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 24.1 MiB 0.21 998 9347 2521 6007 819 62.9 MiB 0.10 0.00 4.34527 -132.181 -4.34527 4.34527 0.66 0.000734365 0.000681395 0.0388488 0.0360642 32 2644 20 6.64007e+06 276276 554710. 1919.41 0.89 0.125171 0.110079 22834 132086 -1 2163 18 1402 2519 159715 37276 3.50943 3.50943 -128.166 -3.50943 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.027237 0.0238154 136 77 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.60 vpr 62.29 MiB -1 -1 0.22 17980 1 0.04 -1 -1 30372 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63788 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 23.6 MiB 0.08 707 15103 5445 7308 2350 62.3 MiB 0.11 0.00 3.43127 -100.64 -3.43127 3.43127 0.66 0.000562111 0.000522871 0.0452226 0.0420691 30 1669 21 6.64007e+06 301392 526063. 1820.29 0.79 0.110679 0.0979217 22546 126617 -1 1410 19 742 1197 79773 17941 2.56677 2.56677 -90.9898 -2.56677 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0212664 0.0184866 97 23 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.98 vpr 62.69 MiB -1 -1 0.25 18404 1 0.03 -1 -1 30148 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 23.9 MiB 0.27 879 16907 6072 8286 2549 62.7 MiB 0.15 0.00 4.05536 -136.666 -4.05536 4.05536 0.66 0.000671798 0.000624148 0.0621932 0.0577474 30 2363 22 6.64007e+06 276276 526063. 1820.29 0.88 0.14203 0.126064 22546 126617 -1 1963 18 1339 1924 128164 29238 3.32757 3.32757 -129.337 -3.32757 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0261352 0.0228659 127 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 6.31 vpr 62.74 MiB -1 -1 0.24 18220 1 0.03 -1 -1 30328 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64244 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 24.4 MiB 0.39 1389 17943 5716 10178 2049 62.7 MiB 0.20 0.00 5.4603 -164.178 -5.4603 5.4603 0.66 0.000765956 0.00071175 0.0684909 0.0636148 28 3504 25 6.64007e+06 364182 500653. 1732.36 2.85 0.267385 0.233414 21970 115934 -1 2796 23 2045 3229 234229 51765 4.64188 4.64188 -157.599 -4.64188 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.0341994 0.029828 169 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.83 vpr 62.83 MiB -1 -1 0.24 18188 1 0.03 -1 -1 30388 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 23.8 MiB 0.12 1016 14331 3274 9718 1339 62.8 MiB 0.13 0.00 4.34509 -136.539 -4.34509 4.34509 0.66 0.00068164 0.000632641 0.0471614 0.0438066 30 2229 19 6.64007e+06 401856 526063. 1820.29 0.81 0.126374 0.111662 22546 126617 -1 1863 19 994 1580 102791 22250 3.10256 3.10256 -116.251 -3.10256 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0261887 0.0228993 133 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.62 vpr 62.20 MiB -1 -1 0.23 17940 1 0.03 -1 -1 30332 -1 -1 26 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63688 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 23.6 MiB 0.10 644 6718 1441 4611 666 62.2 MiB 0.07 0.00 3.45804 -101.577 -3.45804 3.45804 0.66 0.000591147 0.000550332 0.0222804 0.0207156 32 1698 21 6.64007e+06 326508 554710. 1919.41 0.80 0.0915729 0.0797555 22834 132086 -1 1490 19 949 1542 94421 23457 2.70277 2.70277 -98.9378 -2.70277 0 0 701300. 2426.64 0.20 0.06 0.14 -1 -1 0.20 0.0223852 0.0194941 104 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.45 vpr 62.96 MiB -1 -1 0.26 18460 1 0.03 -1 -1 30396 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 24.5 MiB 0.38 1258 17023 5454 8906 2663 63.0 MiB 0.18 0.00 6.52766 -186.909 -6.52766 6.52766 0.74 0.000826025 0.000768345 0.071678 0.0665482 32 3239 24 6.64007e+06 339066 554710. 1919.41 1.01 0.173323 0.153699 22834 132086 -1 2640 21 2024 2853 204494 46202 5.44434 5.44434 -176.026 -5.44434 0 0 701300. 2426.64 0.20 0.09 0.13 -1 -1 0.20 0.0342184 0.0298577 170 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.14 vpr 62.69 MiB -1 -1 0.24 18320 1 0.03 -1 -1 30408 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 23.7 MiB 0.16 911 6091 1101 4753 237 62.7 MiB 0.07 0.00 4.60401 -138.195 -4.60401 4.60401 0.76 0.000688111 0.000639576 0.0214453 0.0199632 26 2408 24 6.64007e+06 414414 477104. 1650.88 1.15 0.109255 0.095516 21682 110474 -1 2032 21 1490 2333 156428 36434 3.77103 3.77103 -130.469 -3.77103 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0279861 0.0244001 130 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.72 vpr 62.05 MiB -1 -1 0.18 17792 1 0.03 -1 -1 30448 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63536 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 23.4 MiB 0.09 820 12375 3515 6889 1971 62.0 MiB 0.10 0.00 3.58247 -102.606 -3.58247 3.58247 0.66 0.000538951 0.000502413 0.036165 0.033666 26 1980 30 6.64007e+06 288834 477104. 1650.88 0.98 0.107956 0.0949562 21682 110474 -1 1821 19 887 1524 111639 25164 2.89497 2.89497 -103.885 -2.89497 0 0 585099. 2024.56 0.17 0.06 0.11 -1 -1 0.17 0.0205325 0.0178306 100 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 5.73 vpr 62.78 MiB -1 -1 0.24 18400 1 0.03 -1 -1 30144 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 24.0 MiB 0.15 1051 10223 2392 7301 530 62.8 MiB 0.11 0.00 5.62381 -137.312 -5.62381 5.62381 0.66 0.000711596 0.000660572 0.0345979 0.0321748 32 2518 24 6.64007e+06 426972 554710. 1919.41 2.74 0.24064 0.207992 22834 132086 -1 2171 22 1308 2453 164918 36700 4.71868 4.71868 -136.031 -4.71868 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0302745 0.0264126 139 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.66 vpr 62.00 MiB -1 -1 0.21 17748 1 0.03 -1 -1 30124 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63488 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 23.3 MiB 0.10 692 7404 1537 5210 657 62.0 MiB 0.07 0.00 3.45624 -104.082 -3.45624 3.45624 0.66 0.000557963 0.000519551 0.0250325 0.0232554 28 2049 24 6.64007e+06 251160 500653. 1732.36 0.91 0.0934178 0.0816114 21970 115934 -1 1646 19 1091 1918 121122 30138 2.91397 2.91397 -107.034 -2.91397 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0212983 0.0185523 104 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.92 vpr 62.29 MiB -1 -1 0.22 17832 1 0.03 -1 -1 30084 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 23.7 MiB 0.12 661 13271 3491 8020 1760 62.3 MiB 0.11 0.00 4.08278 -107.388 -4.08278 4.08278 0.66 0.000602039 0.000560424 0.038555 0.0358183 26 2062 20 6.64007e+06 414414 477104. 1650.88 1.02 0.107451 0.0946273 21682 110474 -1 1617 21 1029 1765 107385 26371 3.22137 3.22137 -105.887 -3.22137 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0240242 0.0208417 105 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.17 vpr 63.08 MiB -1 -1 0.25 18204 1 0.03 -1 -1 30320 -1 -1 26 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 24.2 MiB 0.33 1040 14871 4665 7654 2552 63.1 MiB 0.14 0.00 4.65946 -136.342 -4.65946 4.65946 0.68 0.000691589 0.000642139 0.0558961 0.0518991 32 2493 25 6.64007e+06 326508 554710. 1919.41 0.90 0.146578 0.129535 22834 132086 -1 2225 21 1545 2329 154866 35209 3.58443 3.58443 -123.394 -3.58443 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0253495 0.0223877 139 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 5.26 vpr 62.91 MiB -1 -1 0.23 18336 1 0.03 -1 -1 30360 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 23.9 MiB 0.19 791 5938 1168 4585 185 62.9 MiB 0.07 0.00 4.46745 -132.755 -4.46745 4.46745 0.65 0.000705607 0.000655368 0.0238855 0.0222189 30 1971 24 6.64007e+06 301392 526063. 1820.29 2.33 0.198582 0.170955 22546 126617 -1 1686 19 1164 1845 114531 26463 3.69283 3.69283 -126.907 -3.69283 0 0 666494. 2306.21 0.19 0.06 0.13 -1 -1 0.19 0.0270652 0.0236983 130 54 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 3.90 vpr 62.78 MiB -1 -1 0.19 18236 1 0.03 -1 -1 30400 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 24.0 MiB 0.17 1028 16652 5035 9308 2309 62.8 MiB 0.15 0.00 4.7434 -142.045 -4.7434 4.7434 0.66 0.000844091 0.000779548 0.0585396 0.0543053 32 2433 20 6.64007e+06 351624 554710. 1919.41 0.87 0.140118 0.124251 22834 132086 -1 2181 18 1038 1785 133597 29133 3.69062 3.69062 -131.911 -3.69062 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0258939 0.0227132 133 51 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.36 vpr 62.30 MiB -1 -1 0.20 17912 1 0.03 -1 -1 30072 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 23.7 MiB 0.28 745 12681 3505 7128 2048 62.3 MiB 0.11 0.00 4.79432 -130.688 -4.79432 4.79432 0.65 0.000591846 0.000550934 0.0449444 0.0418056 26 2345 22 6.64007e+06 213486 477104. 1650.88 1.29 0.117403 0.103691 21682 110474 -1 1909 21 1162 1601 123415 29052 3.57743 3.57743 -122.857 -3.57743 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0256995 0.0225582 105 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.97 vpr 62.60 MiB -1 -1 0.26 18184 1 0.03 -1 -1 30380 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 23.7 MiB 0.29 900 13966 4576 7232 2158 62.6 MiB 0.12 0.00 3.96736 -127.124 -3.96736 3.96736 0.66 0.0006359 0.000590055 0.0519454 0.0482348 32 2026 17 6.64007e+06 238602 554710. 1919.41 0.80 0.123033 0.109007 22834 132086 -1 1807 19 1202 1749 124457 27558 3.21857 3.21857 -118.219 -3.21857 0 0 701300. 2426.64 0.24 0.07 0.13 -1 -1 0.24 0.024784 0.0216391 113 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.22 vpr 62.75 MiB -1 -1 0.26 18260 1 0.03 -1 -1 30372 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 23.7 MiB 0.15 869 11759 2827 8114 818 62.8 MiB 0.11 0.00 3.56047 -98.9603 -3.56047 3.56047 0.66 0.00065496 0.000607705 0.037808 0.0350952 26 2387 27 6.64007e+06 414414 477104. 1650.88 1.27 0.122292 0.107321 21682 110474 -1 1918 19 1142 2056 143001 34435 2.91597 2.91597 -101.585 -2.91597 0 0 585099. 2024.56 0.19 0.07 0.10 -1 -1 0.19 0.0284274 0.0250012 123 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.88 vpr 62.39 MiB -1 -1 0.22 17956 1 0.03 -1 -1 30420 -1 -1 35 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 23.8 MiB 0.15 923 12623 3556 7108 1959 62.4 MiB 0.10 0.00 4.42192 -107.107 -4.42192 4.42192 0.72 0.00058451 0.000543065 0.0361688 0.0336292 26 2229 19 6.64007e+06 439530 477104. 1650.88 0.96 0.10392 0.0912833 21682 110474 -1 1849 19 1008 1743 122228 27424 3.61562 3.61562 -105.168 -3.61562 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0225607 0.0196592 115 27 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 6.10 vpr 62.65 MiB -1 -1 0.23 18260 1 0.03 -1 -1 30512 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 23.8 MiB 0.13 685 9712 2247 6957 508 62.7 MiB 0.10 0.00 3.90078 -114.184 -3.90078 3.90078 0.66 0.000634986 0.000590593 0.0378811 0.0352412 28 1963 19 6.64007e+06 226044 500653. 1732.36 3.18 0.185803 0.160912 21970 115934 -1 1789 22 1400 2435 194018 45480 2.98097 2.98097 -109.97 -2.98097 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0267273 0.0231706 109 63 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.30 vpr 62.71 MiB -1 -1 0.24 18304 1 0.03 -1 -1 30268 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 23.7 MiB 0.27 936 13105 4260 6168 2677 62.7 MiB 0.12 0.00 3.98936 -131.555 -3.98936 3.98936 0.72 0.000663646 0.000616741 0.0491437 0.0456681 32 2239 20 6.64007e+06 263718 554710. 1919.41 0.98 0.122171 0.108255 22834 132086 -1 1962 19 1286 1879 129465 29535 3.32603 3.32603 -126.53 -3.32603 0 0 701300. 2426.64 0.22 0.07 0.12 -1 -1 0.22 0.0272902 0.0239574 121 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 3.85 vpr 62.30 MiB -1 -1 0.22 17676 1 0.03 -1 -1 30528 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 23.6 MiB 0.12 1072 16295 4636 9641 2018 62.3 MiB 0.15 0.00 4.60183 -132.105 -4.60183 4.60183 0.67 0.000639704 0.000595221 0.0502198 0.0467371 32 2390 21 6.64007e+06 401856 554710. 1919.41 0.84 0.124386 0.110256 22834 132086 -1 1993 19 1289 2315 142374 33933 3.74683 3.74683 -120.579 -3.74683 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0240165 0.020963 127 4 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.03 vpr 62.99 MiB -1 -1 0.25 18280 1 0.03 -1 -1 30344 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 24.1 MiB 0.32 1141 10618 2698 7154 766 63.0 MiB 0.12 0.00 5.38066 -169.108 -5.38066 5.38066 0.66 0.000706847 0.000657067 0.0412218 0.03834 32 2845 21 6.64007e+06 301392 554710. 1919.41 0.85 0.124138 0.109472 22834 132086 -1 2481 20 1517 2218 154934 35578 4.34488 4.34488 -156.254 -4.34488 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0282044 0.0246684 146 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 3.97 vpr 62.88 MiB -1 -1 0.25 18316 1 0.03 -1 -1 30380 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 24.1 MiB 0.16 1093 17423 4766 10394 2263 62.9 MiB 0.16 0.00 5.20872 -147.682 -5.20872 5.20872 0.67 0.000741131 0.000688459 0.0602164 0.0559043 32 2500 30 6.64007e+06 426972 554710. 1919.41 0.93 0.158716 0.140483 22834 132086 -1 2186 21 1268 2336 152601 35655 4.01948 4.01948 -136.855 -4.01948 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0305205 0.0266086 144 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 5.16 vpr 63.02 MiB -1 -1 0.24 18164 1 0.03 -1 -1 30364 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 24.1 MiB 0.17 1020 5976 1067 4592 317 63.0 MiB 0.07 0.00 4.48481 -139.253 -4.48481 4.48481 0.67 0.000745944 0.00069345 0.0218361 0.0202815 26 3164 36 6.64007e+06 464646 477104. 1650.88 2.13 0.130625 0.113635 21682 110474 -1 2547 19 1531 2648 211155 48182 3.93303 3.93303 -141.066 -3.93303 0 0 585099. 2024.56 0.25 0.09 0.11 -1 -1 0.25 0.0290155 0.0254848 140 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.78 vpr 62.15 MiB -1 -1 0.22 18072 1 0.03 -1 -1 30236 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 23.4 MiB 0.14 720 9706 2873 5961 872 62.1 MiB 0.09 0.00 3.87875 -113.748 -3.87875 3.87875 0.66 0.000583812 0.000544012 0.0342048 0.0318579 26 1992 21 6.64007e+06 238602 477104. 1650.88 0.91 0.102828 0.0903855 21682 110474 -1 1698 18 953 1613 112771 26555 2.90297 2.90297 -105.777 -2.90297 0 0 585099. 2024.56 0.20 0.06 0.10 -1 -1 0.20 0.0214233 0.0186758 104 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.89 vpr 62.84 MiB -1 -1 0.23 18220 1 0.03 -1 -1 30508 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 23.8 MiB 0.20 943 11431 3023 6401 2007 62.8 MiB 0.12 0.00 4.78844 -139.402 -4.78844 4.78844 0.67 0.000733091 0.000681237 0.0471346 0.0438366 32 2212 20 6.64007e+06 288834 554710. 1919.41 0.88 0.127915 0.113042 22834 132086 -1 1966 20 1597 2426 179462 40072 3.71863 3.71863 -132.49 -3.71863 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0290045 0.0253484 138 63 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.92 vpr 62.98 MiB -1 -1 0.15 18220 1 0.02 -1 -1 30360 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 24.1 MiB 0.25 1173 16170 4393 9836 1941 63.0 MiB 0.16 0.00 5.44166 -158.46 -5.44166 5.44166 0.66 0.000690061 0.000641379 0.0578456 0.0537506 26 2974 49 6.64007e+06 326508 477104. 1650.88 1.91 0.174192 0.153401 21682 110474 -1 2414 21 1521 2276 183268 40328 4.33689 4.33689 -148.154 -4.33689 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0283893 0.0248086 140 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.07 vpr 62.92 MiB -1 -1 0.21 18236 1 0.03 -1 -1 30068 -1 -1 30 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 24.1 MiB 0.33 1216 15003 5067 8222 1714 62.9 MiB 0.14 0.00 5.37715 -156.166 -5.37715 5.37715 0.66 0.000677542 0.000629471 0.050768 0.0471658 30 2440 19 6.64007e+06 376740 526063. 1820.29 0.86 0.125684 0.11154 22546 126617 -1 2046 18 972 1556 95320 21315 4.16988 4.16988 -141.14 -4.16988 0 0 666494. 2306.21 0.29 0.06 0.11 -1 -1 0.29 0.026626 0.0234799 148 47 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 3.94 vpr 62.93 MiB -1 -1 0.26 18328 1 0.03 -1 -1 30376 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 23.8 MiB 0.28 895 9815 2159 6479 1177 62.9 MiB 0.10 0.00 4.45681 -130.071 -4.45681 4.45681 0.66 0.00072306 0.000672249 0.0354602 0.0329888 32 2077 19 6.64007e+06 414414 554710. 1919.41 0.82 0.11936 0.104715 22834 132086 -1 1875 20 1234 2049 117187 28580 3.30083 3.30083 -119.653 -3.30083 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.028278 0.0246557 135 83 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.00 vpr 62.81 MiB -1 -1 0.24 18276 1 0.03 -1 -1 30332 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 23.8 MiB 0.17 1069 14407 4171 8795 1441 62.8 MiB 0.14 0.00 4.99084 -144.739 -4.99084 4.99084 0.66 0.000713006 0.000662371 0.0577071 0.0536132 32 2668 20 6.64007e+06 263718 554710. 1919.41 0.88 0.140428 0.124472 22834 132086 -1 2353 19 1391 2494 178708 39579 3.75062 3.75062 -139.109 -3.75062 0 0 701300. 2426.64 0.22 0.08 0.13 -1 -1 0.22 0.0277684 0.0242314 134 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 3.80 vpr 62.99 MiB -1 -1 0.21 18380 1 0.03 -1 -1 30304 -1 -1 31 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 24.0 MiB 0.19 991 14168 3722 8736 1710 63.0 MiB 0.13 0.00 4.90164 -138.394 -4.90164 4.90164 0.66 0.000718379 0.000666763 0.051316 0.0476551 26 2358 19 6.64007e+06 389298 477104. 1650.88 0.78 0.134896 0.119141 21682 110474 -1 2059 21 1193 1929 132387 29914 3.62843 3.62843 -127.623 -3.62843 0 0 585099. 2024.56 0.19 0.07 0.10 -1 -1 0.19 0.0293232 0.0255165 132 85 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.60 vpr 62.02 MiB -1 -1 0.18 17768 1 0.03 -1 -1 30448 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63512 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 23.4 MiB 0.09 698 12416 3955 6725 1736 62.0 MiB 0.10 0.00 3.88758 -112.734 -3.88758 3.88758 0.66 0.000559906 0.000521817 0.0426391 0.0397201 28 1776 22 6.64007e+06 188370 500653. 1732.36 0.84 0.108808 0.096227 21970 115934 -1 1610 16 827 1253 97467 22192 3.16737 3.16737 -109.621 -3.16737 0 0 612192. 2118.31 0.21 0.05 0.11 -1 -1 0.21 0.018766 0.0164389 96 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.11 vpr 62.92 MiB -1 -1 0.26 18268 1 0.03 -1 -1 30284 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 23.9 MiB 0.26 964 13455 3168 8058 2229 62.9 MiB 0.13 0.00 4.65236 -138.008 -4.65236 4.65236 0.66 0.000722488 0.00067114 0.0467347 0.0434262 32 2266 21 6.64007e+06 401856 554710. 1919.41 0.87 0.131461 0.115992 22834 132086 -1 1834 21 1297 2159 133098 31359 3.72183 3.72183 -126.441 -3.72183 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0295291 0.0257377 132 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 3.97 vpr 62.83 MiB -1 -1 0.24 18224 1 0.03 -1 -1 30332 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 24.0 MiB 0.20 1060 10103 2308 6560 1235 62.8 MiB 0.11 0.00 4.84241 -152.382 -4.84241 4.84241 0.66 0.000759112 0.00070501 0.0434728 0.040385 32 2649 24 6.64007e+06 276276 554710. 1919.41 0.93 0.136489 0.120134 22834 132086 -1 2387 22 1966 3185 227280 52170 4.04423 4.04423 -149.366 -4.04423 0 0 701300. 2426.64 0.20 0.10 0.12 -1 -1 0.20 0.032635 0.0284672 148 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 5.32 vpr 62.44 MiB -1 -1 0.23 18108 1 0.03 -1 -1 30376 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 23.8 MiB 0.31 933 13992 4098 8142 1752 62.4 MiB 0.12 0.00 4.31784 -124.298 -4.31784 4.31784 0.66 0.000581952 0.000541512 0.0461518 0.0429377 26 2333 27 6.64007e+06 251160 477104. 1650.88 2.30 0.175823 0.153222 21682 110474 -1 2014 20 1088 1443 117053 25629 3.30403 3.30403 -118.207 -3.30403 0 0 585099. 2024.56 0.18 0.06 0.12 -1 -1 0.18 0.0230189 0.0200404 109 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.57 vpr 62.16 MiB -1 -1 0.18 17612 1 0.03 -1 -1 30528 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 23.5 MiB 0.10 781 9417 2297 6451 669 62.2 MiB 0.08 0.00 3.81035 -109.522 -3.81035 3.81035 0.66 0.000551855 0.000513156 0.0302212 0.028084 32 1805 21 6.64007e+06 263718 554710. 1919.41 0.80 0.0954543 0.0837192 22834 132086 -1 1623 22 1006 1686 116113 26730 2.91397 2.91397 -103.946 -2.91397 0 0 701300. 2426.64 0.20 0.06 0.13 -1 -1 0.20 0.0236493 0.0204754 106 4 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 5.85 vpr 62.98 MiB -1 -1 0.23 18408 1 0.03 -1 -1 30472 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 24.1 MiB 0.33 894 10542 2833 7069 640 63.0 MiB 0.11 0.00 5.11544 -156.533 -5.11544 5.11544 0.66 0.000549115 0.000503293 0.0338353 0.0311981 28 2905 29 6.64007e+06 326508 500653. 1732.36 2.69 0.222686 0.191903 21970 115934 -1 2270 21 1717 2234 150681 36479 4.29109 4.29109 -151.66 -4.29109 0 0 612192. 2118.31 0.18 0.08 0.12 -1 -1 0.18 0.0288812 0.0252269 144 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.05 vpr 63.05 MiB -1 -1 0.24 18328 1 0.03 -1 -1 30260 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 24.2 MiB 0.36 1216 13953 3630 8615 1708 63.1 MiB 0.13 0.00 5.10413 -156.46 -5.10413 5.10413 0.72 0.000701539 0.000651523 0.0495363 0.0457296 26 3309 49 6.64007e+06 364182 477104. 1650.88 1.90 0.163914 0.143451 21682 110474 -1 2648 21 1678 2630 217673 46245 4.63868 4.63868 -154.565 -4.63868 0 0 585099. 2024.56 0.18 0.09 0.10 -1 -1 0.18 0.0286545 0.0250081 155 56 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.59 vpr 62.91 MiB -1 -1 0.20 18056 1 0.03 -1 -1 30192 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.0 MiB 0.12 1246 17036 4529 10969 1538 62.9 MiB 0.16 0.00 5.4761 -148.295 -5.4761 5.4761 0.66 0.000716131 0.000666066 0.05521 0.0513367 26 3134 35 6.64007e+06 452088 477104. 1650.88 1.52 0.15784 0.139458 21682 110474 -1 2607 21 1733 3199 243499 53638 4.55949 4.55949 -150.976 -4.55949 0 0 585099. 2024.56 0.17 0.09 0.10 -1 -1 0.17 0.0297583 0.0260027 153 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 3.76 vpr 62.76 MiB -1 -1 0.24 18216 1 0.03 -1 -1 30408 -1 -1 32 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 23.8 MiB 0.15 874 9892 2506 6506 880 62.8 MiB 0.09 0.00 3.51924 -103.944 -3.51924 3.51924 0.72 0.000639098 0.000593211 0.031776 0.0295097 30 1855 19 6.64007e+06 401856 526063. 1820.29 0.80 0.105493 0.0925736 22546 126617 -1 1645 19 1016 1803 85739 21372 2.80477 2.80477 -98.9098 -2.80477 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.024114 0.0209844 121 52 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.63 vpr 62.04 MiB -1 -1 0.22 18108 1 0.03 -1 -1 30340 -1 -1 21 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63532 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 23.4 MiB 0.10 565 12120 3265 7503 1352 62.0 MiB 0.10 0.00 3.49724 -93.0073 -3.49724 3.49724 0.71 0.00055043 0.000512631 0.0414477 0.0385677 28 1552 21 6.64007e+06 263718 500653. 1732.36 0.78 0.104893 0.0926252 21970 115934 -1 1349 20 1009 1487 99406 23958 2.83997 2.83997 -92.1671 -2.83997 0 0 612192. 2118.31 0.21 0.06 0.11 -1 -1 0.21 0.0215616 0.0186939 97 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 6.04 vpr 62.86 MiB -1 -1 0.24 18576 1 0.03 -1 -1 30472 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 24.2 MiB 0.31 1324 16572 5072 8808 2692 62.9 MiB 0.17 0.00 4.42635 -141.521 -4.42635 4.42635 0.68 0.000803326 0.000746269 0.0696354 0.0647307 32 3259 35 6.64007e+06 326508 554710. 1919.41 2.76 0.283774 0.246993 22834 132086 -1 2737 20 1821 3112 227397 48414 4.03623 4.03623 -137.329 -4.03623 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0321186 0.0280535 170 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.18 vpr 62.89 MiB -1 -1 0.25 18388 1 0.03 -1 -1 30340 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 24.1 MiB 0.42 1050 12371 3182 7852 1337 62.9 MiB 0.12 0.00 5.43386 -156.366 -5.43386 5.43386 0.71 0.000711657 0.000661541 0.0492338 0.0457626 32 2467 20 6.64007e+06 288834 554710. 1919.41 0.88 0.132164 0.116916 22834 132086 -1 2222 23 1450 2394 179772 39496 4.42648 4.42648 -147.66 -4.42648 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0317037 0.0275939 152 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.04 vpr 62.84 MiB -1 -1 0.22 18140 1 0.03 -1 -1 30504 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 331 280 1 174 84 17 17 289 -1 unnamed_device 23.9 MiB 0.35 941 14175 4029 8632 1514 62.8 MiB 0.13 0.00 4.2933 -133.018 -4.2933 4.2933 0.70 0.000662045 0.000615556 0.0546323 0.0507716 32 2137 21 6.64007e+06 251160 554710. 1919.41 0.82 0.131338 0.116337 22834 132086 -1 2004 23 1337 1980 158485 34343 3.51963 3.51963 -132.516 -3.51963 0 0 701300. 2426.64 0.20 0.08 0.13 -1 -1 0.20 0.028897 0.0250789 130 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 3.65 vpr 62.62 MiB -1 -1 0.21 18244 1 0.03 -1 -1 30288 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 23.6 MiB 0.12 1025 10744 3084 7154 506 62.6 MiB 0.06 0.00 5.21217 -134.409 -5.21217 5.21217 0.68 0.000301918 0.000278377 0.0169059 0.0155644 30 2184 21 6.64007e+06 376740 526063. 1820.29 0.77 0.0956742 0.0830899 22546 126617 -1 1937 18 867 1471 89050 19926 3.73062 3.73062 -118.693 -3.73062 0 0 666494. 2306.21 0.21 0.06 0.14 -1 -1 0.21 0.0243458 0.0213013 126 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 3.82 vpr 62.88 MiB -1 -1 0.18 18184 1 0.03 -1 -1 30520 -1 -1 34 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 24.0 MiB 0.19 1033 6757 1363 4872 522 62.9 MiB 0.08 0.00 5.06104 -138.99 -5.06104 5.06104 0.69 0.000663433 0.000620281 0.0242365 0.0225225 26 2574 21 6.64007e+06 426972 477104. 1650.88 0.90 0.109814 0.0956979 21682 110474 -1 2282 20 1591 2581 146564 35944 3.83083 3.83083 -132.863 -3.83083 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0288165 0.0251296 145 50 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 3.79 vpr 62.89 MiB -1 -1 0.23 18132 1 0.03 -1 -1 30192 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 23.8 MiB 0.18 1000 10173 2480 6565 1128 62.9 MiB 0.09 0.00 3.68089 -112.079 -3.68089 3.68089 0.67 0.000664771 0.000618977 0.0341121 0.0317509 32 2189 21 6.64007e+06 389298 554710. 1919.41 0.82 0.110655 0.0972447 22834 132086 -1 1934 21 992 1861 125297 27515 2.93217 2.93217 -104.52 -2.93217 0 0 701300. 2426.64 0.21 0.07 0.12 -1 -1 0.21 0.0268693 0.0233808 124 51 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.19 vpr 63.21 MiB -1 -1 0.23 18324 1 0.03 -1 -1 30436 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 24.3 MiB 0.35 1181 8207 1889 5862 456 63.2 MiB 0.10 0.00 5.21333 -162.921 -5.21333 5.21333 0.67 0.000704456 0.000654821 0.0316332 0.0294416 32 2916 22 6.64007e+06 313950 554710. 1919.41 0.95 0.108166 0.0951228 22834 132086 -1 2540 21 1769 2749 219470 47322 4.11269 4.11269 -146.472 -4.11269 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0302754 0.0265312 148 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.47 vpr 63.14 MiB -1 -1 0.22 18192 1 0.03 -1 -1 30264 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64652 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 24.3 MiB 0.20 1091 17268 5141 9536 2591 63.1 MiB 0.16 0.00 4.75546 -148.32 -4.75546 4.75546 0.66 0.000565954 0.000519561 0.0543727 0.0502843 26 2685 30 6.64007e+06 452088 477104. 1650.88 1.39 0.156298 0.137798 21682 110474 -1 2255 18 1257 1979 128650 29661 3.48203 3.48203 -130.715 -3.48203 0 0 585099. 2024.56 0.22 0.07 0.13 -1 -1 0.22 0.0274558 0.0240298 144 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.55 vpr 62.29 MiB -1 -1 0.19 18060 1 0.03 -1 -1 30372 -1 -1 17 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63788 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 23.6 MiB 0.09 588 12030 3358 7039 1633 62.3 MiB 0.10 0.00 3.76255 -108.245 -3.76255 3.76255 0.66 0.000566384 0.000526631 0.0433966 0.040388 30 1348 20 6.64007e+06 213486 526063. 1820.29 0.80 0.110538 0.0977513 22546 126617 -1 1205 18 807 1162 78445 17743 2.56837 2.56837 -95.382 -2.56837 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0209901 0.018296 91 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.74 vpr 62.75 MiB -1 -1 0.18 18328 1 0.03 -1 -1 30528 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 310 266 1 176 85 17 17 289 -1 unnamed_device 23.8 MiB 0.23 778 6037 1272 4427 338 62.7 MiB 0.07 0.00 4.48879 -126.842 -4.48879 4.48879 0.66 0.000627478 0.000582269 0.0225285 0.0209372 32 2251 23 6.64007e+06 263718 554710. 1919.41 0.84 0.0979023 0.0852257 22834 132086 -1 1743 18 964 1268 93490 22694 3.24503 3.24503 -119.32 -3.24503 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.023208 0.0203368 118 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 3.98 vpr 62.77 MiB -1 -1 0.25 18240 1 0.03 -1 -1 30436 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 23.8 MiB 0.14 1008 6132 1183 4581 368 62.8 MiB 0.07 0.00 4.78944 -127.311 -4.78944 4.78944 0.66 0.000668195 0.000620284 0.0197348 0.0183524 26 2494 22 6.64007e+06 464646 477104. 1650.88 1.02 0.099024 0.0861208 21682 110474 -1 2169 20 1399 2498 165534 38412 3.93603 3.93603 -128.563 -3.93603 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0263111 0.0229567 129 33 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 5.76 vpr 62.39 MiB -1 -1 0.18 18052 1 0.03 -1 -1 30288 -1 -1 22 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 23.8 MiB 0.29 764 14303 4579 7529 2195 62.4 MiB 0.12 0.00 4.38281 -116.371 -4.38281 4.38281 0.68 0.000560152 0.000520712 0.0462667 0.0429999 28 2083 19 6.64007e+06 276276 500653. 1732.36 2.69 0.19321 0.167323 21970 115934 -1 1681 20 1101 1443 96185 22508 3.23483 3.23483 -107.841 -3.23483 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0224875 0.0195556 109 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 3.64 vpr 62.31 MiB -1 -1 0.22 17928 1 0.03 -1 -1 30080 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63804 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 23.8 MiB 0.12 868 10406 2691 6847 868 62.3 MiB 0.09 0.00 3.9428 -121.707 -3.9428 3.9428 0.66 0.000493559 0.000454789 0.0364261 0.0338871 32 1810 20 6.64007e+06 213486 554710. 1919.41 0.81 0.104566 0.0922346 22834 132086 -1 1706 20 1156 2003 136026 30795 2.79857 2.79857 -109.128 -2.79857 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0232486 0.020219 108 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 3.88 vpr 63.01 MiB -1 -1 0.20 18240 1 0.03 -1 -1 30232 -1 -1 36 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 23.9 MiB 0.17 875 8079 1601 6137 341 63.0 MiB 0.09 0.00 4.17918 -122.781 -4.17918 4.17918 0.66 0.000729704 0.000672506 0.0282794 0.0262532 28 2410 36 6.64007e+06 452088 500653. 1732.36 1.01 0.122877 0.107199 21970 115934 -1 1875 21 1356 2240 134886 34729 3.20157 3.20157 -114.587 -3.20157 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.02967 0.0258598 136 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.85 vpr 62.41 MiB -1 -1 0.22 17880 1 0.02 -1 -1 30380 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 23.8 MiB 0.24 883 11423 3367 6862 1194 62.4 MiB 0.10 0.00 4.01573 -121.888 -4.01573 4.01573 0.70 0.00042661 0.0003914 0.0304115 0.0279707 26 2117 20 6.64007e+06 251160 477104. 1650.88 0.81 0.0987452 0.0864634 21682 110474 -1 1747 20 1087 1540 101106 24211 3.08363 3.08363 -115.072 -3.08363 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0225978 0.0196492 107 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 4.00 vpr 62.84 MiB -1 -1 0.23 18220 1 0.03 -1 -1 30036 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 23.8 MiB 0.17 851 8418 1678 5980 760 62.8 MiB 0.08 0.00 3.82753 -117.666 -3.82753 3.82753 0.69 0.000697985 0.000648356 0.0291472 0.0270844 28 2478 22 6.64007e+06 401856 500653. 1732.36 1.00 0.111733 0.0976573 21970 115934 -1 1955 23 1317 2265 161744 43770 2.98117 2.98117 -112.322 -2.98117 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0301765 0.0262185 127 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 5.76 vpr 62.88 MiB -1 -1 0.24 18228 1 0.03 -1 -1 30272 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 23.8 MiB 0.28 974 12839 3425 8126 1288 62.9 MiB 0.12 0.00 4.34696 -135.951 -4.34696 4.34696 0.83 0.0005777 0.000530686 0.0376217 0.0346385 32 2188 19 6.64007e+06 401856 554710. 1919.41 2.46 0.208883 0.180363 22834 132086 -1 1958 21 1309 1812 123981 28855 3.33103 3.33103 -127.587 -3.33103 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0306673 0.0267297 138 91 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 5.44 vpr 62.48 MiB -1 -1 0.23 17912 1 0.03 -1 -1 30240 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 23.7 MiB 0.20 712 8656 2009 6156 491 62.5 MiB 0.08 0.00 3.3851 -102.924 -3.3851 3.3851 0.72 0.000473262 0.000433696 0.0263381 0.0242121 28 2051 39 6.64007e+06 213486 500653. 1732.36 2.50 0.186324 0.160165 21970 115934 -1 1784 17 1002 1552 122933 29414 2.93417 2.93417 -107.966 -2.93417 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0217209 0.0189489 104 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 5.57 vpr 62.62 MiB -1 -1 0.16 17964 1 0.03 -1 -1 30248 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 23.9 MiB 0.25 948 9385 2467 6027 891 62.6 MiB 0.10 0.00 4.44818 -138.832 -4.44818 4.44818 0.68 0.000613477 0.000570458 0.0329626 0.0306849 32 2287 21 6.64007e+06 263718 554710. 1919.41 2.61 0.183405 0.158545 22834 132086 -1 2029 21 1119 1638 128993 28031 3.39203 3.39203 -129.192 -3.39203 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0251574 0.0218989 117 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 5.61 vpr 62.86 MiB -1 -1 0.24 18224 1 0.03 -1 -1 30148 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1058 7767 1828 5291 648 62.9 MiB 0.08 0.00 4.73583 -140.794 -4.73583 4.73583 0.67 0.000657951 0.000611721 0.0289628 0.0269376 32 2491 22 6.64007e+06 288834 554710. 1919.41 2.53 0.21957 0.189553 22834 132086 -1 2097 21 1513 2026 141902 33771 3.92523 3.92523 -134.778 -3.92523 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0271269 0.0236507 130 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.80 vpr 62.81 MiB -1 -1 0.25 18436 1 0.04 -1 -1 30288 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 23.8 MiB 0.20 961 12753 3692 7785 1276 62.8 MiB 0.13 0.00 4.75755 -125.045 -4.75755 4.75755 0.61 0.000648149 0.000603068 0.0476574 0.0441108 32 1971 18 6.64007e+06 364182 554710. 1919.41 0.80 0.117254 0.103935 22834 132086 -1 1845 19 807 1354 87570 20360 3.28883 3.28883 -110.424 -3.28883 0 0 701300. 2426.64 0.22 0.06 0.12 -1 -1 0.22 0.0247627 0.021639 122 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 5.03 vpr 63.07 MiB -1 -1 0.22 18220 1 0.03 -1 -1 30452 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 24.1 MiB 0.36 846 9643 2135 6651 857 63.1 MiB 0.10 0.00 5.52409 -167.953 -5.52409 5.52409 0.66 0.000753962 0.000699852 0.0400097 0.0371486 34 2787 38 6.64007e+06 301392 585099. 2024.56 1.88 0.207551 0.18 23122 138558 -1 1936 24 1573 2308 150807 38792 4.46809 4.46809 -156.232 -4.46809 0 0 742403. 2568.87 0.20 0.08 0.13 -1 -1 0.20 0.0343765 0.0299336 154 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.58 vpr 62.14 MiB -1 -1 0.21 17756 1 0.03 -1 -1 30052 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63636 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 23.4 MiB 0.09 599 7956 1801 5879 276 62.1 MiB 0.07 0.00 3.65226 -97.6941 -3.65226 3.65226 0.66 0.000548811 0.000512525 0.026813 0.0250556 32 1638 19 6.64007e+06 226044 554710. 1919.41 0.77 0.0896653 0.0786509 22834 132086 -1 1460 18 787 1272 92647 21532 2.73697 2.73697 -94.3223 -2.73697 0 0 701300. 2426.64 0.23 0.04 0.15 -1 -1 0.23 0.0188905 0.0167161 96 4 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.01 vpr 62.94 MiB -1 -1 0.25 18244 1 0.03 -1 -1 30376 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 24.1 MiB 0.19 954 8873 1826 6622 425 62.9 MiB 0.09 0.00 4.24713 -140.193 -4.24713 4.24713 0.66 0.000784555 0.00072985 0.0336355 0.0312506 28 2572 31 6.64007e+06 426972 500653. 1732.36 1.03 0.1379 0.120538 21970 115934 -1 2175 22 1537 2339 173372 39376 3.93503 3.93503 -141.075 -3.93503 0 0 612192. 2118.31 0.18 0.09 0.11 -1 -1 0.18 0.0324904 0.0283075 145 90 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.12 vpr 62.74 MiB -1 -1 0.25 18308 1 0.03 -1 -1 30132 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 23.9 MiB 0.29 874 12856 4533 6666 1657 62.7 MiB 0.12 0.00 3.54047 -123.335 -3.54047 3.54047 0.68 0.000711835 0.000660521 0.0548089 0.0509226 32 1825 21 6.64007e+06 213486 554710. 1919.41 0.85 0.13402 0.118757 22834 132086 -1 1655 20 1321 1938 116061 28088 3.01617 3.01617 -121.412 -3.01617 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0261777 0.0229321 114 96 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 3.86 vpr 62.78 MiB -1 -1 0.19 18276 1 0.03 -1 -1 30272 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 23.8 MiB 0.18 1033 11265 2868 7471 926 62.8 MiB 0.11 0.00 4.43584 -135.56 -4.43584 4.43584 0.73 0.000712874 0.00066145 0.0390949 0.0363371 28 2229 14 6.64007e+06 401856 500653. 1732.36 0.82 0.114652 0.10114 21970 115934 -1 2115 16 925 1438 98496 22347 3.21363 3.21363 -121.41 -3.21363 0 0 612192. 2118.31 0.25 0.05 0.12 -1 -1 0.25 0.0215583 0.0192611 131 60 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 4.57 vpr 62.88 MiB -1 -1 0.23 18272 1 0.03 -1 -1 30348 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 24.5 MiB 0.38 1323 13963 4525 7204 2234 62.9 MiB 0.16 0.00 6.49387 -193.63 -6.49387 6.49387 0.66 0.000782723 0.000727718 0.0560906 0.0521202 30 3412 26 6.64007e+06 339066 526063. 1820.29 1.28 0.157553 0.139444 22546 126617 -1 2684 24 1644 2427 183612 38569 5.12274 5.12274 -170.078 -5.12274 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.0357708 0.031241 170 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 5.06 vpr 62.04 MiB -1 -1 0.14 17948 1 0.02 -1 -1 30128 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63528 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 23.4 MiB 0.21 724 10744 2740 6987 1017 62.0 MiB 0.08 0.00 3.31307 -103.05 -3.31307 3.31307 0.66 0.000497945 0.000463198 0.0328291 0.03055 32 1572 19 6.64007e+06 226044 554710. 1919.41 2.21 0.164603 0.142215 22834 132086 -1 1483 13 658 840 62111 14307 2.32491 2.32491 -94.088 -2.32491 0 0 701300. 2426.64 0.27 0.04 0.14 -1 -1 0.27 0.0145103 0.0127651 87 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.84 vpr 62.14 MiB -1 -1 0.23 17952 1 0.03 -1 -1 30452 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63628 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 23.4 MiB 0.11 653 10370 2942 6125 1303 62.1 MiB 0.09 0.00 4.12598 -117.274 -4.12598 4.12598 0.67 0.000607521 0.0005661 0.0394949 0.0367593 26 1686 20 6.64007e+06 200928 477104. 1650.88 1.98 0.187954 0.162731 21682 110474 -1 1476 18 837 1320 110296 24299 2.92297 2.92297 -108.566 -2.92297 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0221312 0.019297 92 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.72 vpr 62.30 MiB -1 -1 0.12 18160 1 0.03 -1 -1 30016 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 23.7 MiB 0.12 882 10687 2740 7287 660 62.3 MiB 0.10 0.00 3.50309 -113.66 -3.50309 3.50309 0.74 0.000626338 0.000582469 0.0381159 0.0354805 32 1995 21 6.64007e+06 263718 554710. 1919.41 0.86 0.111585 0.0983398 22834 132086 -1 1900 18 1046 1918 134410 29742 2.72357 2.72357 -108.004 -2.72357 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0224918 0.0196183 115 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.68 vpr 62.04 MiB -1 -1 0.21 17948 1 0.03 -1 -1 30236 -1 -1 27 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63524 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 23.3 MiB 0.10 444 9966 3251 4492 2223 62.0 MiB 0.07 0.00 3.40927 -77.6354 -3.40927 3.40927 0.67 0.000473319 0.000440218 0.0274649 0.0255065 28 1484 27 6.64007e+06 339066 500653. 1732.36 0.99 0.0892455 0.0779208 21970 115934 -1 1248 20 772 1308 108617 28461 2.96837 2.96837 -79.7493 -2.96837 0 0 612192. 2118.31 0.18 0.05 0.11 -1 -1 0.18 0.0190011 0.0165108 89 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.05 vpr 62.70 MiB -1 -1 0.26 18344 1 0.03 -1 -1 30332 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 23.7 MiB 0.23 946 11431 2748 6950 1733 62.7 MiB 0.12 0.00 4.37233 -131.494 -4.37233 4.37233 0.76 0.000727426 0.000675383 0.0470142 0.04353 32 2550 23 6.64007e+06 263718 554710. 1919.41 0.88 0.136082 0.119991 22834 132086 -1 2069 20 1308 2361 139562 33439 3.60963 3.60963 -126.176 -3.60963 0 0 701300. 2426.64 0.20 0.07 0.13 -1 -1 0.20 0.0287671 0.0251131 136 72 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.64 vpr 63.02 MiB -1 -1 0.26 18252 1 0.03 -1 -1 30200 -1 -1 35 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 24.2 MiB 0.21 961 9998 2423 6940 635 63.0 MiB 0.13 0.00 4.49598 -142.588 -4.49598 4.49598 0.67 0.000916733 0.0008464 0.0415397 0.0383976 32 2313 19 6.64007e+06 439530 554710. 1919.41 2.57 0.214352 0.185494 22834 132086 -1 1958 17 1274 1962 116698 27985 3.33083 3.33083 -125.991 -3.33083 0 0 701300. 2426.64 0.20 0.07 0.13 -1 -1 0.20 0.0266459 0.0233349 143 90 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.21 vpr 62.95 MiB -1 -1 0.26 18236 1 0.03 -1 -1 30268 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 24.0 MiB 0.41 1143 17347 5477 9563 2307 62.9 MiB 0.16 0.00 5.20258 -155.488 -5.20258 5.20258 0.69 0.000580252 0.000532451 0.059722 0.0554328 28 2696 21 6.65987e+06 380340 500653. 1732.36 0.93 0.143234 0.127046 21970 115934 -1 2338 20 1526 2351 162828 36705 4.16677 4.16677 -147.593 -4.16677 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0285189 0.0249567 152 50 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 5.67 vpr 62.71 MiB -1 -1 0.25 18344 1 0.03 -1 -1 30476 -1 -1 24 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 30 32 363 293 1 196 86 17 17 289 -1 unnamed_device 23.9 MiB 0.29 826 5567 1093 3716 758 62.7 MiB 0.06 0.00 4.85795 -137.996 -4.85795 4.85795 0.66 0.000697421 0.000644938 0.0230496 0.0214275 32 2525 24 6.65987e+06 304272 554710. 1919.41 2.58 0.197374 0.169566 22834 132086 -1 2014 20 1764 2669 182543 47594 4.14603 4.14603 -135.897 -4.14603 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0285777 0.0249937 140 63 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 3.94 vpr 62.35 MiB -1 -1 0.22 18176 1 0.03 -1 -1 30232 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63848 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 23.5 MiB 0.25 1079 15639 5051 8379 2209 62.4 MiB 0.14 0.00 4.11181 -120.963 -4.11181 4.11181 0.66 0.000630131 0.000585644 0.0537387 0.0499798 32 2479 22 6.65987e+06 291594 554710. 1919.41 0.85 0.135757 0.120535 22834 132086 -1 2143 21 1316 1863 128998 30148 3.48731 3.48731 -116.645 -3.48731 0 0 701300. 2426.64 0.22 0.07 0.14 -1 -1 0.22 0.0261975 0.0228692 126 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 3.93 vpr 62.51 MiB -1 -1 0.25 17956 1 0.03 -1 -1 30388 -1 -1 27 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 23.5 MiB 0.16 937 15298 4951 7764 2583 62.5 MiB 0.13 0.00 4.29337 -115.569 -4.29337 4.29337 0.65 0.000633977 0.000588928 0.0519066 0.0482503 32 2306 30 6.65987e+06 342306 554710. 1919.41 0.90 0.135198 0.119336 22834 132086 -1 1985 25 1504 2799 219919 50220 3.42411 3.42411 -111.097 -3.42411 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0302588 0.0262504 126 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.20 vpr 62.54 MiB -1 -1 0.24 18292 1 0.03 -1 -1 30420 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 23.5 MiB 0.17 1058 13911 3755 8078 2078 62.5 MiB 0.14 0.00 4.32255 -126.417 -4.32255 4.32255 0.66 0.000675165 0.000626782 0.0515498 0.0478843 32 2541 47 6.65987e+06 291594 554710. 1919.41 1.14 0.158779 0.13959 22834 132086 -1 2322 23 1597 3125 272365 58938 3.64831 3.64831 -124.147 -3.64831 0 0 701300. 2426.64 0.20 0.10 0.12 -1 -1 0.20 0.0301736 0.0262658 130 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 5.72 vpr 62.91 MiB -1 -1 0.22 18124 1 0.03 -1 -1 30336 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 24.0 MiB 0.26 858 7201 1481 5496 224 62.9 MiB 0.08 0.00 3.30984 -111.675 -3.30984 3.30984 0.65 0.000721391 0.000671053 0.0257237 0.0238998 28 2339 24 6.65987e+06 418374 500653. 1732.36 2.76 0.228072 0.196098 21970 115934 -1 2009 20 1311 2041 126370 33362 3.01731 3.01731 -111.009 -3.01731 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0286904 0.0250997 141 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.88 vpr 62.00 MiB -1 -1 0.23 17836 1 0.03 -1 -1 30680 -1 -1 18 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63488 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 23.5 MiB 0.13 601 11976 3191 7496 1289 62.0 MiB 0.10 0.00 3.61795 -96.0414 -3.61795 3.61795 0.64 0.000475185 0.000437187 0.0418722 0.0389108 28 1542 20 6.65987e+06 228204 500653. 1732.36 1.97 0.187847 0.162615 21970 115934 -1 1408 20 793 1327 101908 22870 2.80071 2.80071 -94.1372 -2.80071 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0220276 0.0192048 94 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 6.00 vpr 62.28 MiB -1 -1 0.20 17756 1 0.03 -1 -1 30120 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63776 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 23.5 MiB 0.15 811 9892 2186 7284 422 62.3 MiB 0.09 0.00 3.36433 -96.8901 -3.36433 3.36433 0.66 0.000598757 0.000555484 0.0298757 0.0277704 28 2347 24 6.65987e+06 393018 500653. 1732.36 3.17 0.190268 0.164053 21970 115934 -1 1905 19 1011 1801 131698 30370 2.71485 2.71485 -95.6397 -2.71485 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0231024 0.020174 115 4 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.77 vpr 62.48 MiB -1 -1 0.21 18332 1 0.03 -1 -1 30196 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 31 32 317 271 1 169 82 17 17 289 -1 unnamed_device 23.5 MiB 0.24 927 8804 2219 5962 623 62.5 MiB 0.09 0.00 3.4209 -115.766 -3.4209 3.4209 0.66 0.000641118 0.000595527 0.0335851 0.0312321 30 1946 21 6.65987e+06 240882 526063. 1820.29 1.82 0.188217 0.162784 22546 126617 -1 1679 22 876 1290 75993 17565 2.91031 2.91031 -109.66 -2.91031 0 0 666494. 2306.21 0.19 0.06 0.12 -1 -1 0.19 0.027157 0.0236313 112 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 3.81 vpr 62.22 MiB -1 -1 0.21 17924 1 0.03 -1 -1 30124 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63716 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 23.5 MiB 0.25 719 10056 2390 7132 534 62.2 MiB 0.10 0.00 3.74029 -120.95 -3.74029 3.74029 0.66 0.000623824 0.000580161 0.0380352 0.0353931 28 2074 23 6.65987e+06 215526 500653. 1732.36 0.88 0.114167 0.100494 21970 115934 -1 1782 18 1142 1764 119209 29314 2.82871 2.82871 -113.841 -2.82871 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0230886 0.0201862 113 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.86 vpr 62.36 MiB -1 -1 0.23 18028 1 0.03 -1 -1 30408 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 23.5 MiB 0.25 575 5994 1238 4012 744 62.4 MiB 0.06 0.00 4.00989 -106.137 -4.00989 4.00989 0.66 0.000618119 0.000569544 0.02387 0.0222237 32 1593 22 6.65987e+06 215526 554710. 1919.41 0.80 0.097779 0.0852991 22834 132086 -1 1313 15 696 1067 62289 16243 2.70271 2.70271 -97.1718 -2.70271 0 0 701300. 2426.64 0.20 0.05 0.12 -1 -1 0.20 0.0198645 0.0174243 98 63 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 6.86 vpr 62.07 MiB -1 -1 0.19 17944 1 0.03 -1 -1 30096 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63560 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 23.4 MiB 0.28 795 6381 1346 4871 164 62.1 MiB 0.07 0.00 3.75729 -117.97 -3.75729 3.75729 0.71 0.000591167 0.00055044 0.0236305 0.0220085 28 2308 31 6.65987e+06 215526 500653. 1732.36 3.90 0.174161 0.150224 21970 115934 -1 1893 16 1083 1444 121416 28692 2.92331 2.92331 -107.84 -2.92331 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0202939 0.0177696 106 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 3.94 vpr 62.81 MiB -1 -1 0.19 18208 1 0.03 -1 -1 30336 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 23.9 MiB 0.34 1032 9253 2342 6405 506 62.8 MiB 0.10 0.00 4.35378 -139.852 -4.35378 4.35378 0.66 0.000700368 0.000651009 0.03556 0.0330503 32 2591 17 6.65987e+06 304272 554710. 1919.41 0.85 0.113438 0.0998848 22834 132086 -1 2306 24 1781 2644 208357 48038 3.49111 3.49111 -130.916 -3.49111 0 0 701300. 2426.64 0.19 0.06 0.08 -1 -1 0.19 0.0244401 0.0214036 139 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 5.94 vpr 62.83 MiB -1 -1 0.24 18196 1 0.03 -1 -1 30288 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 23.8 MiB 0.22 904 11170 2626 8078 466 62.8 MiB 0.11 0.00 4.4708 -131.273 -4.4708 4.4708 0.71 0.000711577 0.000660818 0.0401298 0.0372661 28 2436 21 6.65987e+06 380340 500653. 1732.36 2.92 0.230077 0.198787 21970 115934 -1 2247 23 1751 2879 209966 48329 3.76071 3.76071 -132.119 -3.76071 0 0 612192. 2118.31 0.17 0.05 0.10 -1 -1 0.17 0.0173877 0.0154107 133 61 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.67 vpr 61.78 MiB -1 -1 0.21 18084 1 0.03 -1 -1 30556 -1 -1 21 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63260 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 23.3 MiB 0.22 775 11118 2644 7385 1089 61.8 MiB 0.09 0.00 3.16393 -91.7211 -3.16393 3.16393 0.67 0.000540416 0.00050301 0.035595 0.0331547 26 1874 19 6.65987e+06 266238 477104. 1650.88 0.80 0.0991823 0.087356 21682 110474 -1 1569 19 924 1516 104371 25434 2.84691 2.84691 -93.5767 -2.84691 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.020985 0.01828 98 27 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.12 vpr 63.03 MiB -1 -1 0.23 18208 1 0.05 -1 -1 30384 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 24.0 MiB 0.43 1049 12733 3859 6982 1892 63.0 MiB 0.13 0.00 4.04739 -126.772 -4.04739 4.04739 0.66 0.000717948 0.000666948 0.0522495 0.0485925 32 2511 22 6.65987e+06 266238 554710. 1919.41 0.87 0.137529 0.121695 22834 132086 -1 2238 23 1445 2718 191051 43605 3.35377 3.35377 -121.168 -3.35377 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0323397 0.0281579 132 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.16 vpr 62.79 MiB -1 -1 0.22 18164 1 0.03 -1 -1 30080 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 23.9 MiB 0.31 1072 15523 5016 8339 2168 62.8 MiB 0.14 0.00 4.31458 -139.763 -4.31458 4.31458 0.66 0.000533528 0.000490056 0.0537202 0.0496218 28 2915 21 6.65987e+06 266238 500653. 1732.36 1.07 0.134997 0.119231 21970 115934 -1 2316 19 1401 1989 160493 35788 3.26677 3.26677 -127.853 -3.26677 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0273035 0.0240214 137 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.07 vpr 62.49 MiB -1 -1 0.18 18384 1 0.03 -1 -1 30352 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63992 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 23.5 MiB 0.22 861 11433 2956 7633 844 62.5 MiB 0.10 0.00 2.85064 -102.994 -2.85064 2.85064 0.71 0.000654015 0.000608086 0.0373514 0.0346593 26 2153 22 6.65987e+06 367662 477104. 1650.88 0.98 0.116875 0.10289 21682 110474 -1 1816 19 977 1497 110865 25449 2.14751 2.14751 -97.7734 -2.14751 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0247404 0.0215273 110 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.57 vpr 61.78 MiB -1 -1 0.22 17984 1 0.03 -1 -1 30280 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63260 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 23.2 MiB 0.09 640 7086 1644 4840 602 61.8 MiB 0.06 0.00 2.24807 -77.7472 -2.24807 2.24807 0.67 0.000372225 0.000341719 0.0241246 0.0223367 32 1491 20 6.65987e+06 190170 554710. 1919.41 0.82 0.0821052 0.0717064 22834 132086 -1 1296 14 579 811 59607 14185 1.89185 1.89185 -79.7993 -1.89185 0 0 701300. 2426.64 0.20 0.04 0.12 -1 -1 0.20 0.0153274 0.0133953 81 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.15 vpr 62.21 MiB -1 -1 0.15 18244 1 0.03 -1 -1 30548 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63708 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 23.5 MiB 0.46 819 13254 3680 8313 1261 62.2 MiB 0.13 0.00 4.81074 -140.485 -4.81074 4.81074 0.70 0.000610703 0.000567783 0.049892 0.0463618 28 2127 22 6.65987e+06 240882 500653. 1732.36 0.82 0.123219 0.108961 21970 115934 -1 1797 18 1099 1584 108008 26189 3.47917 3.47917 -126.534 -3.47917 0 0 612192. 2118.31 0.18 0.06 0.12 -1 -1 0.18 0.0228405 0.0199712 127 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.77 vpr 62.73 MiB -1 -1 0.25 18180 1 0.03 -1 -1 30552 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 23.9 MiB 0.17 945 6791 1317 5158 316 62.7 MiB 0.08 0.00 4.14893 -130.493 -4.14893 4.14893 0.70 0.000523674 0.000481073 0.0204189 0.0187587 30 2169 21 6.65987e+06 393018 526063. 1820.29 0.84 0.101919 0.0886746 22546 126617 -1 1899 17 974 1626 91978 21788 3.32623 3.32623 -121.056 -3.32623 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0250321 0.0219304 135 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 8.05 vpr 62.92 MiB -1 -1 0.25 18328 1 0.03 -1 -1 30368 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 23.9 MiB 0.37 1176 13911 3816 8065 2030 62.9 MiB 0.17 0.00 4.32644 -135.935 -4.32644 4.32644 0.67 0.000840037 0.00077805 0.059468 0.0550684 28 3219 21 6.65987e+06 291594 500653. 1732.36 4.70 0.234056 0.203886 21970 115934 -1 2732 29 1773 2745 359148 134849 3.93331 3.93331 -139.547 -3.93331 0 0 612192. 2118.31 0.18 0.14 0.11 -1 -1 0.18 0.0384567 0.0333359 142 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.84 vpr 61.75 MiB -1 -1 0.18 17964 1 0.02 -1 -1 30572 -1 -1 18 26 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63232 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 23.2 MiB 0.21 372 9836 3070 4693 2073 61.8 MiB 0.06 0.00 2.3895 -62.8108 -2.3895 2.3895 0.68 0.000427958 0.000398083 0.0277289 0.0257683 32 1048 32 6.65987e+06 228204 554710. 1919.41 1.02 0.0892202 0.0780995 22834 132086 -1 748 15 526 715 37159 11103 1.85405 1.85405 -60.2178 -1.85405 0 0 701300. 2426.64 0.20 0.03 0.10 -1 -1 0.20 0.0141123 0.0124112 77 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.90 vpr 62.31 MiB -1 -1 0.22 17632 1 0.03 -1 -1 30360 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63808 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 23.6 MiB 0.20 1008 10873 2978 7123 772 62.3 MiB 0.10 0.00 4.661 -123.259 -4.661 4.661 0.66 0.00061645 0.000573757 0.0383728 0.0357514 28 2311 31 6.65987e+06 266238 500653. 1732.36 0.97 0.121793 0.106547 21970 115934 -1 2059 21 1264 2355 164435 38396 3.79397 3.79397 -121.606 -3.79397 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0260079 0.0226915 118 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.47 vpr 61.68 MiB -1 -1 0.20 17528 1 0.02 -1 -1 30004 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63156 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 23.2 MiB 0.09 415 10370 2863 4808 2699 61.7 MiB 0.06 0.00 2.54569 -72.1104 -2.54569 2.54569 0.65 0.000420762 0.00039026 0.0277356 0.0257335 30 1192 29 6.65987e+06 177492 526063. 1820.29 0.78 0.0834509 0.07298 22546 126617 -1 819 15 404 445 27960 7884 1.81985 1.81985 -66.7912 -1.81985 0 0 666494. 2306.21 0.19 0.03 0.12 -1 -1 0.19 0.0137758 0.0120462 79 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.87 vpr 62.34 MiB -1 -1 0.22 17956 1 0.03 -1 -1 29988 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63832 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 23.6 MiB 0.16 867 9679 2178 7022 479 62.3 MiB 0.09 0.00 4.41865 -121.229 -4.41865 4.41865 0.66 0.000636145 0.000591964 0.0313997 0.0292109 28 2090 22 6.65987e+06 380340 500653. 1732.36 0.94 0.107669 0.0945307 21970 115934 -1 1804 18 1065 1787 114117 27349 3.19965 3.19965 -107.663 -3.19965 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0237139 0.0207535 123 24 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.72 vpr 62.28 MiB -1 -1 0.23 17712 1 0.03 -1 -1 30372 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63776 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 23.5 MiB 0.16 1032 8303 1834 5800 669 62.3 MiB 0.08 0.00 3.62555 -107.534 -3.62555 3.62555 0.66 0.000635132 0.000590291 0.0265923 0.0247285 30 2260 22 6.65987e+06 393018 526063. 1820.29 1.80 0.175166 0.151149 22546 126617 -1 1950 19 961 1748 104695 23724 2.60951 2.60951 -101.656 -2.60951 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.024746 0.0216667 128 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.12 vpr 62.62 MiB -1 -1 0.23 18208 1 0.03 -1 -1 30048 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 23.8 MiB 0.19 1026 15366 4954 8031 2381 62.6 MiB 0.15 0.00 4.40163 -128.768 -4.40163 4.40163 0.73 0.000674239 0.000624447 0.0541992 0.0502813 28 2536 22 6.65987e+06 329628 500653. 1732.36 1.00 0.135972 0.120361 21970 115934 -1 2239 29 1748 3059 300303 101990 3.99999 3.99999 -130.531 -3.99999 0 0 612192. 2118.31 0.18 0.12 0.11 -1 -1 0.18 0.0359896 0.0311848 125 50 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.80 vpr 62.11 MiB -1 -1 0.22 17856 1 0.03 -1 -1 30080 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63600 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 23.5 MiB 0.13 743 11260 3712 5303 2245 62.1 MiB 0.10 0.00 2.93487 -98.1536 -2.93487 2.93487 0.70 0.000600307 0.000558451 0.0411593 0.0382705 32 1913 21 6.65987e+06 202848 554710. 1919.41 0.82 0.111945 0.0987402 22834 132086 -1 1645 17 907 1417 116532 28198 2.87311 2.87311 -105.642 -2.87311 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0214194 0.0187523 101 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 5.22 vpr 62.00 MiB -1 -1 0.23 17872 1 0.03 -1 -1 30144 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63484 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 23.5 MiB 0.14 765 12733 3276 8152 1305 62.0 MiB 0.10 0.00 2.99867 -95.3722 -2.99867 2.99867 0.66 0.000565307 0.000526212 0.041485 0.0386238 32 1733 17 6.65987e+06 291594 554710. 1919.41 2.37 0.201909 0.174689 22834 132086 -1 1567 19 957 1467 111882 25763 2.66145 2.66145 -94.3977 -2.66145 0 0 701300. 2426.64 0.20 0.05 0.12 -1 -1 0.20 0.0188511 0.0165312 97 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.72 vpr 62.08 MiB -1 -1 0.22 17880 1 0.03 -1 -1 30120 -1 -1 23 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63568 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 23.5 MiB 0.15 635 14123 3811 8579 1733 62.1 MiB 0.12 0.00 3.31478 -92.4847 -3.31478 3.31478 0.70 0.000553831 0.000515154 0.0414422 0.03822 28 1810 27 6.65987e+06 291594 500653. 1732.36 0.82 0.113634 0.099748 21970 115934 -1 1551 19 950 1652 120534 27810 2.73271 2.73271 -92.4594 -2.73271 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0215918 0.0188074 98 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 5.30 vpr 62.00 MiB -1 -1 0.22 17676 1 0.03 -1 -1 30300 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63488 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 23.4 MiB 0.14 727 6383 1361 4583 439 62.0 MiB 0.06 0.00 3.74563 -110.014 -3.74563 3.74563 0.68 0.000573058 0.000534192 0.0224543 0.0209505 32 1960 23 6.65987e+06 240882 554710. 1919.41 2.45 0.170092 0.146517 22834 132086 -1 1796 20 1192 1921 150188 35568 2.96611 2.96611 -110.14 -2.96611 0 0 701300. 2426.64 0.20 0.07 0.13 -1 -1 0.20 0.0230856 0.0201369 110 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.80 vpr 62.08 MiB -1 -1 0.22 17968 1 0.03 -1 -1 30428 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63568 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 23.5 MiB 0.11 616 5517 989 3982 546 62.1 MiB 0.05 0.00 3.36515 -97.3921 -3.36515 3.36515 0.72 0.00058567 0.000544937 0.0182446 0.0169857 28 1967 34 6.65987e+06 342306 500653. 1732.36 1.01 0.099651 0.0863182 21970 115934 -1 1505 20 992 1649 104792 27138 2.58045 2.58045 -96.2333 -2.58045 0 0 612192. 2118.31 0.18 0.06 0.10 -1 -1 0.18 0.0231748 0.020168 103 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.09 vpr 62.04 MiB -1 -1 0.18 18016 1 0.03 -1 -1 30360 -1 -1 25 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63528 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 23.4 MiB 0.24 865 14450 4409 7950 2091 62.0 MiB 0.12 0.00 3.27578 -105.17 -3.27578 3.27578 0.70 0.000593717 0.000551718 0.0482444 0.0448486 28 1896 21 6.65987e+06 316950 500653. 1732.36 0.90 0.119184 0.105354 21970 115934 -1 1678 20 1051 1598 111541 25786 2.24065 2.24065 -91.6407 -2.24065 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0243728 0.0212324 105 54 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.15 vpr 62.89 MiB -1 -1 0.24 18324 1 0.03 -1 -1 30512 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 24.0 MiB 0.32 1216 16551 4115 10400 2036 62.9 MiB 0.15 0.00 3.87192 -114.947 -3.87192 3.87192 0.67 0.000733864 0.000681268 0.054657 0.0507764 32 2878 21 6.65987e+06 469086 554710. 1919.41 0.86 0.14157 0.12529 22834 132086 -1 2430 20 1422 2539 179933 40402 3.68939 3.68939 -116.203 -3.68939 0 0 701300. 2426.64 0.29 0.08 0.12 -1 -1 0.29 0.0313807 0.0276478 150 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.48 vpr 62.82 MiB -1 -1 0.26 18188 1 0.03 -1 -1 30280 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 23.9 MiB 0.27 918 16804 4626 9521 2657 62.8 MiB 0.15 0.00 3.76954 -123.355 -3.76954 3.76954 0.67 0.000756966 0.000702528 0.0577883 0.0534103 26 2803 43 6.65987e+06 456408 477104. 1650.88 1.35 0.176517 0.15524 21682 110474 -1 2202 22 1787 2772 200753 48070 3.09111 3.09111 -121.86 -3.09111 0 0 585099. 2024.56 0.17 0.09 0.08 -1 -1 0.17 0.0325186 0.0283527 146 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.34 vpr 62.30 MiB -1 -1 0.24 18328 1 0.03 -1 -1 30116 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 23.6 MiB 0.47 795 7304 1575 5379 350 62.3 MiB 0.08 0.00 4.09732 -119.878 -4.09732 4.09732 0.66 0.000591925 0.000551337 0.0291753 0.0272926 28 2295 28 6.65987e+06 215526 500653. 1732.36 1.11 0.10999 0.0961369 21970 115934 -1 1888 21 1171 1638 142248 31897 2.88337 2.88337 -109.949 -2.88337 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.024575 0.0214026 109 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.11 vpr 62.78 MiB -1 -1 0.25 18264 1 0.04 -1 -1 30368 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 23.9 MiB 0.32 944 8727 2152 5844 731 62.8 MiB 0.09 0.00 3.92632 -125.266 -3.92632 3.92632 0.72 0.000715227 0.000664785 0.0351438 0.0326476 32 2324 22 6.65987e+06 304272 554710. 1919.41 0.90 0.127977 0.112152 22834 132086 -1 2075 19 1422 2441 175051 40721 2.95717 2.95717 -112.585 -2.95717 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0277486 0.0242877 137 61 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.26 vpr 62.65 MiB -1 -1 0.17 18256 1 0.03 -1 -1 30364 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 24.3 MiB 0.44 1273 15165 4552 8275 2338 62.6 MiB 0.16 0.00 5.69001 -171.445 -5.69001 5.69001 0.66 0.000729732 0.00067782 0.0579105 0.0538032 32 3146 25 6.65987e+06 342306 554710. 1919.41 0.93 0.148696 0.131687 22834 132086 -1 2682 25 2424 3699 270469 60854 4.91423 4.91423 -167.458 -4.91423 0 0 701300. 2426.64 0.20 0.11 0.12 -1 -1 0.20 0.0346257 0.0301263 170 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 6.52 vpr 62.98 MiB -1 -1 0.21 18320 1 0.03 -1 -1 30460 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 383 305 1 209 88 17 17 289 -1 unnamed_device 24.0 MiB 0.98 1100 16468 4969 9311 2188 63.0 MiB 0.16 0.00 4.92247 -149.927 -4.92247 4.92247 0.66 0.000681878 0.00062852 0.064638 0.0599997 28 2844 20 6.65987e+06 316950 500653. 1732.36 2.67 0.253518 0.220821 21970 115934 -1 2478 19 1689 2547 182737 41274 4.31102 4.31102 -150.151 -4.31102 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0289824 0.0254081 162 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.32 vpr 62.66 MiB -1 -1 0.21 18240 1 0.03 -1 -1 30568 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64160 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 23.8 MiB 0.27 1122 13754 3789 8484 1481 62.7 MiB 0.13 0.00 4.34966 -130.317 -4.34966 4.34966 0.66 0.000693669 0.00064431 0.0483843 0.0449475 28 2691 26 6.65987e+06 367662 500653. 1732.36 1.24 0.138489 0.12238 21970 115934 -1 2330 25 1556 2709 313045 123001 3.08231 3.08231 -118.242 -3.08231 0 0 612192. 2118.31 0.18 0.13 0.11 -1 -1 0.18 0.0334755 0.0291298 133 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 6.45 vpr 62.30 MiB -1 -1 0.16 18048 1 0.03 -1 -1 30436 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 23.6 MiB 0.23 922 8780 2172 6205 403 62.3 MiB 0.09 0.00 4.1266 -111.615 -4.1266 4.1266 0.66 0.000615512 0.000572023 0.0307531 0.0286301 26 2735 26 6.65987e+06 278916 477104. 1650.88 3.54 0.186787 0.161167 21682 110474 -1 2172 23 1525 2279 180283 42061 3.61865 3.61865 -116.354 -3.61865 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0276252 0.0240354 118 27 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.35 vpr 62.84 MiB -1 -1 0.26 18496 1 0.03 -1 -1 30568 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 24.3 MiB 0.30 1225 11764 2792 7889 1083 62.8 MiB 0.13 0.00 4.86514 -158.575 -4.86514 4.86514 0.67 0.000862791 0.000801294 0.0456373 0.0424118 28 3027 30 6.65987e+06 481764 500653. 1732.36 1.18 0.159286 0.139543 21970 115934 -1 2643 23 1724 2712 187683 42451 3.79291 3.79291 -146.352 -3.79291 0 0 612192. 2118.31 0.18 0.10 0.12 -1 -1 0.18 0.0383603 0.0334527 172 87 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.69 vpr 62.09 MiB -1 -1 0.21 17972 1 0.03 -1 -1 30152 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63580 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 23.2 MiB 0.19 792 5391 1113 3866 412 62.1 MiB 0.06 0.00 3.45892 -98.948 -3.45892 3.45892 0.66 0.000565329 0.000525832 0.0188943 0.0175703 30 1740 20 6.65987e+06 266238 526063. 1820.29 0.78 0.08515 0.0741422 22546 126617 -1 1534 20 903 1518 93928 21198 2.63765 2.63765 -97.0397 -2.63765 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0225828 0.0197058 101 28 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 7.86 vpr 62.88 MiB -1 -1 0.24 18216 1 0.03 -1 -1 30156 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 23.9 MiB 0.34 1177 11804 3160 7260 1384 62.9 MiB 0.12 0.00 4.89669 -145.469 -4.89669 4.89669 0.70 0.000690073 0.000641559 0.0449344 0.0417855 28 3159 30 6.65987e+06 291594 500653. 1732.36 4.43 0.230072 0.199739 21970 115934 -1 2513 22 1308 1851 143445 31289 4.01251 4.01251 -136.733 -4.01251 0 0 612192. 2118.31 0.23 0.08 0.11 -1 -1 0.23 0.0299408 0.0261855 142 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.99 vpr 62.96 MiB -1 -1 0.25 18240 1 0.02 -1 -1 30296 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64476 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 24.1 MiB 0.26 868 8311 1653 6113 545 63.0 MiB 0.08 0.00 3.91407 -115.086 -3.91407 3.91407 0.66 0.000689594 0.000640732 0.0283091 0.0263151 30 2509 26 6.65987e+06 418374 526063. 1820.29 2.93 0.217913 0.187672 22546 126617 -1 1679 16 859 1555 81649 20422 2.90591 2.90591 -105.542 -2.90591 0 0 666494. 2306.21 0.24 0.05 0.11 -1 -1 0.24 0.0238138 0.0209861 131 53 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 3.87 vpr 62.32 MiB -1 -1 0.23 17844 1 0.03 -1 -1 30268 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63816 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 23.6 MiB 0.16 846 6328 1287 4843 198 62.3 MiB 0.07 0.00 3.96153 -117.52 -3.96153 3.96153 0.68 0.000626983 0.000583122 0.0226954 0.0211289 28 2304 21 6.65987e+06 304272 500653. 1732.36 0.92 0.0983394 0.0860529 21970 115934 -1 1981 23 1418 2697 199285 46458 3.71659 3.71659 -122.806 -3.71659 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0279045 0.0242995 123 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 5.58 vpr 62.69 MiB -1 -1 0.20 18140 1 0.03 -1 -1 30308 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 23.7 MiB 0.33 1090 7835 1660 5643 532 62.7 MiB 0.09 0.00 4.46734 -132.214 -4.46734 4.46734 0.68 0.000699058 0.000648949 0.0313949 0.0291361 32 2503 28 6.65987e+06 278916 554710. 1919.41 2.47 0.202781 0.174826 22834 132086 -1 2254 16 1127 1532 112414 26836 3.20591 3.20591 -119.029 -3.20591 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0239503 0.0210717 136 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.55 vpr 62.81 MiB -1 -1 0.16 18228 1 0.04 -1 -1 30312 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 23.7 MiB 0.46 1025 8951 2023 6429 499 62.8 MiB 0.10 0.00 3.78594 -122.94 -3.78594 3.78594 0.68 0.000718827 0.000667939 0.0325473 0.0303024 26 2851 30 6.65987e+06 393018 477104. 1650.88 1.31 0.12713 0.111263 21682 110474 -1 2246 22 1338 2263 183303 40174 3.11131 3.11131 -122.127 -3.11131 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0305414 0.0266092 132 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.17 vpr 62.95 MiB -1 -1 0.24 18364 1 0.03 -1 -1 30244 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 24.1 MiB 0.37 1095 17268 5091 9567 2610 62.9 MiB 0.16 0.00 4.49052 -137.752 -4.49052 4.49052 0.73 0.000748254 0.000694045 0.0573134 0.0531371 32 2596 25 6.65987e+06 456408 554710. 1919.41 0.89 0.14838 0.13115 22834 132086 -1 2232 21 1219 1845 147581 32927 3.21151 3.21151 -122.058 -3.21151 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0307428 0.0268667 144 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 5.73 vpr 62.81 MiB -1 -1 0.22 18412 1 0.03 -1 -1 30448 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 23.8 MiB 0.18 881 8493 1904 6212 377 62.8 MiB 0.09 0.00 3.98836 -116.947 -3.98836 3.98836 0.68 0.000522428 0.000480673 0.0247258 0.0227498 32 2229 29 6.65987e+06 367662 554710. 1919.41 2.79 0.215798 0.185291 22834 132086 -1 1823 23 1298 2235 165203 37734 3.31585 3.31585 -112.024 -3.31585 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0286858 0.0249584 122 24 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.03 vpr 62.53 MiB -1 -1 0.23 18168 1 0.03 -1 -1 30108 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 23.7 MiB 0.26 1058 6423 1250 4686 487 62.5 MiB 0.07 0.00 4.75229 -137.839 -4.75229 4.75229 0.69 0.000656818 0.000610756 0.0243928 0.0227171 32 2530 23 6.65987e+06 291594 554710. 1919.41 0.95 0.0929185 0.0819175 22834 132086 -1 2237 21 1668 2440 175489 41742 3.71071 3.71071 -129.186 -3.71071 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0282763 0.0248034 133 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 6.20 vpr 62.79 MiB -1 -1 0.25 18160 1 0.03 -1 -1 30356 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 23.8 MiB 0.54 1053 14450 4497 7379 2574 62.8 MiB 0.15 0.00 4.75055 -138.917 -4.75055 4.75055 0.68 0.000724219 0.000671884 0.058629 0.0544183 34 2568 25 6.65987e+06 291594 585099. 2024.56 2.76 0.245776 0.213729 23122 138558 -1 2239 20 1331 2062 163732 34849 3.99831 3.99831 -126.897 -3.99831 0 0 742403. 2568.87 0.21 0.08 0.13 -1 -1 0.21 0.0290012 0.0253507 146 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.14 vpr 62.79 MiB -1 -1 0.24 18120 1 0.03 -1 -1 30272 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 23.9 MiB 0.26 901 8269 1876 5929 464 62.8 MiB 0.09 0.00 3.98149 -123.442 -3.98149 3.98149 0.69 0.000737867 0.000684626 0.0352268 0.0327283 32 2648 25 6.65987e+06 266238 554710. 1919.41 0.95 0.127234 0.111521 22834 132086 -1 2151 21 1523 2669 176931 42791 3.46425 3.46425 -121.172 -3.46425 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0270488 0.0239658 135 77 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.61 vpr 61.97 MiB -1 -1 0.21 17996 1 0.03 -1 -1 30532 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63460 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 23.3 MiB 0.09 757 15103 5160 7628 2315 62.0 MiB 0.11 0.00 3.22598 -97.9932 -3.22598 3.22598 0.67 0.000558007 0.000518758 0.0452597 0.0420692 30 1807 20 6.65987e+06 304272 526063. 1820.29 0.78 0.110091 0.0974139 22546 126617 -1 1524 20 745 1219 73327 17031 2.44445 2.44445 -89.72 -2.44445 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0222412 0.019337 97 23 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.95 vpr 62.66 MiB -1 -1 0.23 18208 1 0.03 -1 -1 30144 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64164 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 23.8 MiB 0.20 854 11979 3325 7498 1156 62.7 MiB 0.12 0.00 4.00764 -134.08 -4.00764 4.00764 0.69 0.000670779 0.000623283 0.0463383 0.0430526 30 2108 23 6.65987e+06 253560 526063. 1820.29 0.85 0.128691 0.11355 22546 126617 -1 1862 17 1081 1505 80425 19493 3.45017 3.45017 -131.307 -3.45017 0 0 666494. 2306.21 0.26 0.06 0.12 -1 -1 0.26 0.0238494 0.0209315 125 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.35 vpr 62.80 MiB -1 -1 0.20 18192 1 0.03 -1 -1 30340 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 24.3 MiB 0.27 1274 10235 2657 6661 917 62.8 MiB 0.12 0.00 5.13258 -155.405 -5.13258 5.13258 0.70 0.000776146 0.000721625 0.0414571 0.0384716 32 3405 33 6.65987e+06 354984 554710. 1919.41 1.04 0.146256 0.128547 22834 132086 -1 2767 22 2176 3438 289117 62894 4.34411 4.34411 -147.372 -4.34411 0 0 701300. 2426.64 0.30 0.11 0.13 -1 -1 0.30 0.0325149 0.0290412 168 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 5.96 vpr 62.73 MiB -1 -1 0.25 18248 1 0.03 -1 -1 30404 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 23.9 MiB 0.27 873 6359 1089 5003 267 62.7 MiB 0.07 0.00 4.1576 -127.981 -4.1576 4.1576 0.66 0.000701783 0.000644771 0.0225039 0.0209103 26 2804 32 6.65987e+06 393018 477104. 1650.88 2.85 0.197953 0.170586 21682 110474 -1 2011 20 1285 2168 156274 38621 3.16251 3.16251 -116.567 -3.16251 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0275476 0.0240982 133 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 5.46 vpr 62.14 MiB -1 -1 0.16 18080 1 0.03 -1 -1 30332 -1 -1 26 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63636 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 23.5 MiB 0.15 662 8278 1864 5308 1106 62.1 MiB 0.08 0.00 3.33678 -99.7803 -3.33678 3.33678 0.66 0.000595215 0.000554432 0.0270729 0.0252138 26 2015 33 6.65987e+06 329628 477104. 1650.88 2.59 0.182899 0.15749 21682 110474 -1 1722 23 1271 2045 155617 37080 2.92991 2.92991 -104.001 -2.92991 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0260743 0.0226209 104 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.67 vpr 62.80 MiB -1 -1 0.17 18516 1 0.03 -1 -1 30372 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 24.2 MiB 0.75 1210 14939 4355 8110 2474 62.8 MiB 0.17 0.00 6.10992 -175.031 -6.10992 6.10992 0.66 0.000794954 0.000736142 0.0655486 0.0609178 32 3372 31 6.65987e+06 316950 554710. 1919.41 1.03 0.175844 0.155382 22834 132086 -1 2596 21 1928 2778 201964 46743 4.86497 4.86497 -160.032 -4.86497 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0350453 0.0306729 168 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.11 vpr 62.60 MiB -1 -1 0.24 18212 1 0.03 -1 -1 30408 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 23.8 MiB 0.27 931 10389 2832 6808 749 62.6 MiB 0.10 0.00 4.39794 -132.47 -4.39794 4.39794 0.66 0.000685033 0.000636289 0.0348545 0.0323946 32 2200 23 6.65987e+06 405696 554710. 1919.41 0.86 0.119094 0.104644 22834 132086 -1 1960 20 1371 2131 135826 33635 3.60951 3.60951 -126.111 -3.60951 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0272217 0.0237813 130 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.66 vpr 61.91 MiB -1 -1 0.20 17848 1 0.03 -1 -1 30392 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63396 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 23.2 MiB 0.12 660 6999 1482 4945 572 61.9 MiB 0.06 0.00 3.21869 -92.7316 -3.21869 3.21869 0.66 0.000534983 0.000497437 0.0213671 0.0198852 30 1799 25 6.65987e+06 291594 526063. 1820.29 0.85 0.0879458 0.0766453 22546 126617 -1 1447 15 697 1154 70483 17453 2.53419 2.53419 -89.4513 -2.53419 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0173212 0.0151969 100 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.51 vpr 62.75 MiB -1 -1 0.23 18336 1 0.03 -1 -1 30140 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 23.9 MiB 0.24 1092 11573 2759 8065 749 62.7 MiB 0.12 0.00 5.1174 -127.812 -5.1174 5.1174 0.66 0.000706587 0.000656067 0.0389872 0.0362449 34 2426 23 6.65987e+06 431052 585099. 2024.56 1.43 0.151023 0.132154 23122 138558 -1 2153 21 1261 2421 152973 34826 4.15079 4.15079 -123.447 -4.15079 0 0 742403. 2568.87 0.21 0.08 0.12 -1 -1 0.21 0.0293205 0.0256207 139 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.01 vpr 62.06 MiB -1 -1 0.22 17792 1 0.03 -1 -1 30096 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63552 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 23.5 MiB 0.11 658 7038 1455 4830 753 62.1 MiB 0.06 0.00 3.29684 -98.8102 -3.29684 3.29684 0.87 0.000409907 0.000376428 0.0177496 0.0162941 28 2106 37 6.65987e+06 253560 500653. 1732.36 1.06 0.0911549 0.0789162 21970 115934 -1 1711 17 1024 1691 111688 29187 2.78065 2.78065 -105.082 -2.78065 0 0 612192. 2118.31 0.20 0.06 0.11 -1 -1 0.20 0.0199101 0.0174155 104 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 5.07 vpr 62.13 MiB -1 -1 0.23 18056 1 0.03 -1 -1 30056 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63620 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 23.5 MiB 0.17 665 12623 3525 7434 1664 62.1 MiB 0.11 0.00 3.96152 -101.883 -3.96152 3.96152 0.66 0.000584146 0.00054238 0.0373317 0.0346729 28 1809 20 6.65987e+06 418374 500653. 1732.36 2.22 0.170982 0.147922 21970 115934 -1 1537 18 926 1622 96600 24110 2.72171 2.72171 -94.4656 -2.72171 0 0 612192. 2118.31 0.18 0.06 0.08 -1 -1 0.18 0.0220764 0.0193233 105 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.12 vpr 62.68 MiB -1 -1 0.26 18296 1 0.03 -1 -1 30296 -1 -1 24 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 23.7 MiB 0.29 1014 15523 4859 8256 2408 62.7 MiB 0.15 0.00 4.24664 -124.159 -4.24664 4.24664 0.67 0.00068871 0.000640466 0.0612794 0.056951 32 2519 21 6.65987e+06 304272 554710. 1919.41 0.92 0.145498 0.128993 22834 132086 -1 2110 26 1456 2226 166870 38789 3.18497 3.18497 -112.254 -3.18497 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.033988 0.029536 138 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 5.40 vpr 62.61 MiB -1 -1 0.24 18216 1 0.03 -1 -1 30300 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 23.6 MiB 0.25 813 6133 1250 4669 214 62.6 MiB 0.07 0.00 4.31499 -129.627 -4.31499 4.31499 0.69 0.000719058 0.000668486 0.0253396 0.0235579 30 1973 21 6.65987e+06 304272 526063. 1820.29 2.40 0.194829 0.168034 22546 126617 -1 1695 21 1155 1730 101267 23759 3.45917 3.45917 -120.941 -3.45917 0 0 666494. 2306.21 0.19 0.07 0.07 -1 -1 0.19 0.0291484 0.0254468 130 54 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.07 vpr 62.63 MiB -1 -1 0.22 18100 1 0.03 -1 -1 30284 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 23.8 MiB 0.24 1032 14575 3712 8961 1902 62.6 MiB 0.15 0.00 4.48612 -136.801 -4.48612 4.48612 0.66 0.000701923 0.000651851 0.0529997 0.0492337 32 2663 22 6.65987e+06 342306 554710. 1919.41 0.98 0.121439 0.108217 22834 132086 -1 2268 22 1461 2460 182454 41825 3.81371 3.81371 -134.147 -3.81371 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0303381 0.0264614 132 51 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.82 vpr 62.18 MiB -1 -1 0.24 17912 1 0.03 -1 -1 30264 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63672 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 23.5 MiB 0.27 845 7820 1849 5541 430 62.2 MiB 0.08 0.00 4.62977 -131.711 -4.62977 4.62977 0.67 0.000588335 0.000546861 0.0287476 0.0267302 30 1850 19 6.65987e+06 202848 526063. 1820.29 0.78 0.0982659 0.0862424 22546 126617 -1 1669 17 719 977 60179 14057 3.03551 3.03551 -110.068 -3.03551 0 0 666494. 2306.21 0.27 0.05 0.12 -1 -1 0.27 0.0213566 0.0187668 103 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.98 vpr 62.58 MiB -1 -1 0.25 18252 1 0.03 -1 -1 30516 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 31 32 319 272 1 169 82 17 17 289 -1 unnamed_device 23.9 MiB 0.36 770 10050 2757 6264 1029 62.6 MiB 0.10 0.00 3.69598 -115.146 -3.69598 3.69598 0.70 0.000638278 0.000593236 0.038393 0.0356819 32 2129 24 6.65987e+06 240882 554710. 1919.41 0.87 0.117154 0.103002 22834 132086 -1 1830 22 1219 1808 127557 30445 3.02177 3.02177 -109.858 -3.02177 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0277662 0.0241712 112 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 5.56 vpr 62.48 MiB -1 -1 0.24 18212 1 0.03 -1 -1 30372 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 23.5 MiB 0.26 862 12839 3032 8956 851 62.5 MiB 0.11 0.00 3.34001 -95.8914 -3.34001 3.34001 0.69 0.000654761 0.0006065 0.0414346 0.0384863 30 1980 21 6.65987e+06 418374 526063. 1820.29 2.46 0.200233 0.173356 22546 126617 -1 1669 18 962 1743 95030 22615 2.43511 2.43511 -91.9636 -2.43511 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0242043 0.0211557 123 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.93 vpr 62.09 MiB -1 -1 0.17 18004 1 0.03 -1 -1 30388 -1 -1 35 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63584 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 23.4 MiB 0.22 923 12623 3487 7239 1897 62.1 MiB 0.10 0.00 4.05815 -100.085 -4.05815 4.05815 0.66 0.000455728 0.000417435 0.0360236 0.033494 26 2151 41 6.65987e+06 443730 477104. 1650.88 0.97 0.122451 0.106933 21682 110474 -1 1846 35 1346 2687 324830 124278 3.61745 3.61745 -101.557 -3.61745 0 0 585099. 2024.56 0.17 0.13 0.10 -1 -1 0.17 0.0364831 0.0313823 115 27 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 5.64 vpr 62.44 MiB -1 -1 0.23 18144 1 0.03 -1 -1 30384 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 23.5 MiB 0.19 738 13937 5869 7500 568 62.4 MiB 0.13 0.00 3.86584 -113.256 -3.86584 3.86584 0.67 0.000629094 0.000584507 0.0545975 0.0506879 28 1945 22 6.65987e+06 215526 500653. 1732.36 2.69 0.207521 0.180342 21970 115934 -1 1763 19 1171 2031 154935 35450 3.26357 3.26357 -110.084 -3.26357 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0243133 0.0211944 108 63 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.90 vpr 62.57 MiB -1 -1 0.25 18212 1 0.03 -1 -1 30164 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 23.8 MiB 0.27 969 14724 4160 8401 2163 62.6 MiB 0.14 0.00 3.82038 -130.284 -3.82038 3.82038 0.66 0.000663645 0.000616253 0.0555336 0.0515748 32 2443 23 6.65987e+06 253560 554710. 1919.41 0.85 0.135273 0.119779 22834 132086 -1 2030 19 1209 1753 133147 30661 2.98331 2.98331 -122.095 -2.98331 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0255938 0.0223343 120 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 3.98 vpr 62.36 MiB -1 -1 0.19 17612 1 0.03 -1 -1 30380 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 23.6 MiB 0.16 1063 16295 4388 9974 1933 62.4 MiB 0.14 0.00 4.27726 -124.126 -4.27726 4.27726 0.73 0.000626724 0.000583149 0.049799 0.0463776 32 2368 21 6.65987e+06 405696 554710. 1919.41 0.88 0.122785 0.108843 22834 132086 -1 2139 23 1457 2604 179250 41684 3.24771 3.24771 -115.163 -3.24771 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0282668 0.024576 127 4 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 6.24 vpr 63.07 MiB -1 -1 0.24 18152 1 0.03 -1 -1 30476 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 24.1 MiB 0.40 1170 8402 2051 5537 814 63.1 MiB 0.10 0.00 5.08418 -160.146 -5.08418 5.08418 0.67 0.000714367 0.000663981 0.0341353 0.0317017 28 3046 20 6.65987e+06 278916 500653. 1732.36 3.05 0.219994 0.189943 21970 115934 -1 2524 22 1589 2280 166814 38342 4.15751 4.15751 -149.968 -4.15751 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0304105 0.0265602 144 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.64 vpr 62.78 MiB -1 -1 0.23 18336 1 0.03 -1 -1 30288 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 23.9 MiB 0.19 1091 17397 4924 9824 2649 62.8 MiB 0.16 0.00 5.003 -142.071 -5.003 5.003 0.66 0.000739374 0.000686382 0.0613591 0.0568856 26 2904 33 6.65987e+06 405696 477104. 1650.88 1.71 0.164721 0.145523 21682 110474 -1 2489 23 1573 2975 231239 53660 4.26683 4.26683 -144.295 -4.26683 0 0 585099. 2024.56 0.16 0.06 0.06 -1 -1 0.16 0.0180466 0.0159777 142 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 6.00 vpr 62.87 MiB -1 -1 0.24 18236 1 0.03 -1 -1 30392 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1091 6681 1303 5078 300 62.9 MiB 0.08 0.00 4.26912 -136.659 -4.26912 4.26912 0.66 0.000754003 0.000701039 0.0240421 0.0223432 28 2817 25 6.65987e+06 469086 500653. 1732.36 2.87 0.215349 0.185396 21970 115934 -1 2390 24 1458 2683 207005 46217 3.57931 3.57931 -129.096 -3.57931 0 0 612192. 2118.31 0.18 0.09 0.11 -1 -1 0.18 0.0340417 0.0296463 140 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.60 vpr 62.07 MiB -1 -1 0.12 18084 1 0.03 -1 -1 30136 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63564 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 23.5 MiB 0.22 870 11106 2831 6524 1751 62.1 MiB 0.10 0.00 3.61906 -110.424 -3.61906 3.61906 0.66 0.000582257 0.000542598 0.0388647 0.0362109 30 1839 21 6.65987e+06 240882 526063. 1820.29 0.79 0.104429 0.0923854 22546 126617 -1 1563 18 819 1314 75712 17626 2.45705 2.45705 -95.6578 -2.45705 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0211244 0.0184545 105 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 5.32 vpr 62.71 MiB -1 -1 0.25 18200 1 0.03 -1 -1 30424 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 23.8 MiB 0.25 978 15203 5869 8044 1290 62.7 MiB 0.15 0.00 4.78844 -136.276 -4.78844 4.78844 0.68 0.000714547 0.000662036 0.0633365 0.0587539 30 2196 21 6.65987e+06 266238 526063. 1820.29 2.18 0.226525 0.197633 22546 126617 -1 1952 18 1077 1734 113396 24849 3.37542 3.37542 -122.74 -3.37542 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0269284 0.0236304 137 63 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 5.19 vpr 62.71 MiB -1 -1 0.23 18220 1 0.03 -1 -1 30276 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 23.8 MiB 0.38 1105 10813 2684 6840 1289 62.7 MiB 0.11 0.00 4.95137 -146.216 -4.95137 4.95137 0.66 0.000691158 0.000643401 0.0411672 0.038313 26 3219 39 6.65987e+06 304272 477104. 1650.88 2.03 0.148146 0.130226 21682 110474 -1 2516 21 1882 2878 255132 54414 3.74651 3.74651 -135.317 -3.74651 0 0 585099. 2024.56 0.17 0.10 0.10 -1 -1 0.17 0.0289725 0.0252912 138 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.26 vpr 62.71 MiB -1 -1 0.23 18344 1 0.03 -1 -1 30200 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 23.8 MiB 0.50 1080 15187 4594 8064 2529 62.7 MiB 0.14 0.00 5.08067 -147.956 -5.08067 5.08067 0.68 0.000690323 0.000641978 0.0532972 0.0495261 32 2590 22 6.65987e+06 354984 554710. 1919.41 0.90 0.139778 0.123739 22834 132086 -1 2166 20 1488 2320 169566 38315 4.27397 4.27397 -141.786 -4.27397 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0274708 0.0240602 146 47 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.72 vpr 62.62 MiB -1 -1 0.25 18368 1 0.03 -1 -1 30304 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 23.8 MiB 1.08 986 11433 3001 7531 901 62.6 MiB 0.11 0.00 4.29269 -128.336 -4.29269 4.29269 0.66 0.00072422 0.000672726 0.0420014 0.0390009 32 2266 22 6.65987e+06 393018 554710. 1919.41 0.84 0.127646 0.112067 22834 132086 -1 2030 23 1472 2483 170176 40089 3.01711 3.01711 -114.453 -3.01711 0 0 701300. 2426.64 0.20 0.08 0.08 -1 -1 0.20 0.0320172 0.0278417 133 83 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.05 vpr 62.56 MiB -1 -1 0.22 18192 1 0.04 -1 -1 30276 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 23.8 MiB 0.27 1063 15273 4695 8692 1886 62.6 MiB 0.16 0.00 4.80469 -139.024 -4.80469 4.80469 0.66 0.000723024 0.000671928 0.0638893 0.0593223 32 2629 23 6.65987e+06 253560 554710. 1919.41 0.90 0.154314 0.137214 22834 132086 -1 2268 18 1507 2677 195261 43968 3.62631 3.62631 -130.943 -3.62631 0 0 701300. 2426.64 0.21 0.08 0.12 -1 -1 0.21 0.0271216 0.0238276 133 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.09 vpr 62.94 MiB -1 -1 0.26 18196 1 0.03 -1 -1 30324 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64448 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 24.1 MiB 0.33 958 9738 2610 6016 1112 62.9 MiB 0.10 0.00 4.45269 -125.734 -4.45269 4.45269 0.69 0.000725274 0.00067332 0.0373197 0.0346355 32 2235 18 6.65987e+06 367662 554710. 1919.41 0.88 0.119924 0.105395 22834 132086 -1 1952 21 1256 2061 148316 34812 3.04431 3.04431 -110.646 -3.04431 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.029623 0.025813 131 85 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.71 vpr 61.92 MiB -1 -1 0.20 17680 1 0.03 -1 -1 30428 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63404 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 23.2 MiB 0.18 690 12416 3929 6813 1674 61.9 MiB 0.11 0.00 3.74649 -110.352 -3.74649 3.74649 0.66 0.000557414 0.000519922 0.0427101 0.0398028 30 1513 21 6.65987e+06 190170 526063. 1820.29 1.81 0.169665 0.147737 22546 126617 -1 1376 20 710 1066 67918 15837 2.57525 2.57525 -98.4721 -2.57525 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0222036 0.0193792 96 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.00 vpr 62.86 MiB -1 -1 0.25 18416 1 0.03 -1 -1 30452 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 23.7 MiB 0.23 960 15004 4235 7978 2791 62.9 MiB 0.14 0.00 4.36949 -132.189 -4.36949 4.36949 0.66 0.000723217 0.000671737 0.0535827 0.0497539 32 2280 23 6.65987e+06 380340 554710. 1919.41 0.86 0.14112 0.124742 22834 132086 -1 1948 22 1416 2287 178164 39744 3.46911 3.46911 -125.161 -3.46911 0 0 701300. 2426.64 0.20 0.08 0.13 -1 -1 0.20 0.0315064 0.0274582 130 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.26 vpr 62.75 MiB -1 -1 0.19 18204 1 0.03 -1 -1 30380 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 23.9 MiB 0.26 1050 14907 5385 7856 1666 62.8 MiB 0.16 0.00 4.72838 -146.592 -4.72838 4.72838 0.66 0.000767601 0.000705834 0.0653483 0.0607001 32 2640 43 6.65987e+06 253560 554710. 1919.41 1.03 0.179413 0.158519 22834 132086 -1 2299 33 2450 3980 449977 173095 3.85597 3.85597 -139.592 -3.85597 0 0 701300. 2426.64 0.20 0.19 0.13 -1 -1 0.20 0.0471833 0.0408889 147 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 5.39 vpr 62.14 MiB -1 -1 0.19 18088 1 0.02 -1 -1 30540 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63628 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 23.5 MiB 0.22 871 13403 4770 6898 1735 62.1 MiB 0.12 0.00 4.19052 -118.124 -4.19052 4.19052 0.66 0.000595239 0.000554181 0.0452558 0.0421101 30 2034 20 6.65987e+06 240882 526063. 1820.29 2.43 0.188419 0.163712 22546 126617 -1 1822 18 870 1143 89550 19468 2.90751 2.90751 -108.874 -2.90751 0 0 666494. 2306.21 0.21 0.05 0.11 -1 -1 0.21 0.022161 0.0194585 111 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.72 vpr 61.90 MiB -1 -1 0.19 17784 1 0.03 -1 -1 30392 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63388 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 23.4 MiB 0.14 780 8136 2089 5541 506 61.9 MiB 0.07 0.00 3.80235 -109.245 -3.80235 3.80235 0.66 0.000546806 0.000508808 0.0261836 0.0243519 26 2013 29 6.65987e+06 266238 477104. 1650.88 0.90 0.0984916 0.0861105 21682 110474 -1 1810 21 1146 1877 153537 34871 3.03417 3.03417 -108.934 -3.03417 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0229264 0.0199698 106 4 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 5.75 vpr 63.12 MiB -1 -1 0.20 18232 1 0.03 -1 -1 30448 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 24.2 MiB 0.31 1098 14939 3925 8967 2047 63.1 MiB 0.15 0.00 4.99418 -158.194 -4.99418 4.99418 0.66 0.000711839 0.000662152 0.0554973 0.05158 32 2678 24 6.65987e+06 316950 554710. 1919.41 2.57 0.268749 0.233041 22834 132086 -1 2339 18 1657 2174 176709 39281 4.06163 4.06163 -148.702 -4.06163 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0263938 0.0231965 144 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.48 vpr 62.77 MiB -1 -1 0.24 18248 1 0.03 -1 -1 30268 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 23.8 MiB 0.44 1053 6923 1430 5143 350 62.8 MiB 0.08 0.00 5.07767 -147.587 -5.07767 5.07767 0.73 0.00071308 0.000663365 0.0264607 0.0245818 28 2822 20 6.65987e+06 354984 500653. 1732.36 1.18 0.117784 0.103251 21970 115934 -1 2407 20 1612 2506 187128 43634 4.37417 4.37417 -147.642 -4.37417 0 0 612192. 2118.31 0.18 0.08 0.13 -1 -1 0.18 0.0282845 0.024737 151 56 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 6.07 vpr 62.79 MiB -1 -1 0.19 18004 1 0.03 -1 -1 30100 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 23.9 MiB 0.18 1223 15412 3918 10280 1214 62.8 MiB 0.15 0.00 5.24834 -141.684 -5.24834 5.24834 0.68 0.000717618 0.000666659 0.0498032 0.046248 36 2545 28 6.65987e+06 456408 612192. 2118.31 2.92 0.27362 0.237341 23410 145293 -1 2291 25 1470 2785 177956 39538 4.28903 4.28903 -136.112 -4.28903 0 0 782063. 2706.10 0.29 0.06 0.13 -1 -1 0.29 0.0225775 0.0201027 153 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 5.53 vpr 62.45 MiB -1 -1 0.24 18236 1 0.03 -1 -1 30364 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 23.5 MiB 0.30 869 15423 3820 9178 2425 62.4 MiB 0.13 0.00 3.39798 -101.892 -3.39798 3.39798 0.66 0.000636588 0.000592132 0.0492151 0.0457647 32 1975 23 6.65987e+06 393018 554710. 1919.41 2.42 0.232317 0.201206 22834 132086 -1 1791 23 1362 2321 160586 38243 2.69151 2.69151 -98.0771 -2.69151 0 0 701300. 2426.64 0.22 0.04 0.15 -1 -1 0.22 0.016868 0.0148781 120 52 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.60 vpr 61.91 MiB -1 -1 0.19 17952 1 0.03 -1 -1 30276 -1 -1 21 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63396 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 23.4 MiB 0.12 593 9712 2515 6016 1181 61.9 MiB 0.08 0.00 3.49724 -93.393 -3.49724 3.49724 0.67 0.000414393 0.000381469 0.0306288 0.0283956 28 1575 20 6.65987e+06 266238 500653. 1732.36 0.79 0.09406 0.0824269 21970 115934 -1 1453 18 952 1469 116237 27591 2.84397 2.84397 -94.8985 -2.84397 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0202865 0.017693 97 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.92 vpr 62.78 MiB -1 -1 0.25 18460 1 0.03 -1 -1 30316 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 24.2 MiB 0.30 1325 16572 5545 8395 2632 62.8 MiB 0.18 0.00 4.13297 -134.503 -4.13297 4.13297 0.69 0.000798405 0.000741185 0.0704138 0.0653924 28 3732 33 6.65987e+06 329628 500653. 1732.36 1.64 0.182647 0.161692 21970 115934 -1 2910 22 2032 3461 269192 58352 3.78985 3.78985 -132.845 -3.78985 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.0348618 0.0304296 170 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.69 vpr 62.77 MiB -1 -1 0.20 18220 1 0.03 -1 -1 30452 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 31 32 365 296 1 193 84 17 17 289 -1 unnamed_device 24.0 MiB 0.86 1078 12528 3903 6326 2299 62.8 MiB 0.13 0.00 5.17417 -148.706 -5.17417 5.17417 0.69 0.000721174 0.000670216 0.0514234 0.0477201 32 2682 40 6.65987e+06 266238 554710. 1919.41 1.01 0.153869 0.135224 22834 132086 -1 2210 21 1701 2586 216602 47829 4.53217 4.53217 -149.34 -4.53217 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0297196 0.0259443 150 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.42 vpr 62.62 MiB -1 -1 0.17 18324 1 0.03 -1 -1 30532 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 32 32 331 280 1 175 83 17 17 289 -1 unnamed_device 23.6 MiB 0.85 898 12323 4450 5685 2188 62.6 MiB 0.12 0.00 4.15487 -129.388 -4.15487 4.15487 0.67 0.000666896 0.000619206 0.0481548 0.0447545 32 2292 24 6.65987e+06 240882 554710. 1919.41 0.85 0.128889 0.113815 22834 132086 -1 1956 18 1203 1755 145047 32577 3.35916 3.35916 -129.556 -3.35916 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0245635 0.021512 129 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 5.38 vpr 62.70 MiB -1 -1 0.16 18192 1 0.03 -1 -1 30344 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 23.6 MiB 0.16 992 12022 3497 7943 582 62.7 MiB 0.13 0.00 4.90813 -126.424 -4.90813 4.90813 0.67 0.000667725 0.0006214 0.0433447 0.0401337 32 2140 22 6.65987e+06 380340 554710. 1919.41 2.49 0.240608 0.207924 22834 132086 -1 1925 21 1081 1806 112206 27790 3.48705 3.48705 -114.539 -3.48705 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0277306 0.0242185 126 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 5.83 vpr 62.83 MiB -1 -1 0.25 18216 1 0.03 -1 -1 30504 -1 -1 33 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 23.9 MiB 0.26 1073 18054 5291 10324 2439 62.8 MiB 0.17 0.00 4.77546 -137.042 -4.77546 4.77546 0.70 0.000721607 0.000669232 0.0627811 0.0582997 30 2297 18 6.65987e+06 418374 526063. 1820.29 2.62 0.230184 0.201751 22546 126617 -1 2004 18 1180 1930 120975 26697 3.43717 3.43717 -122.972 -3.43717 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0271053 0.0237882 144 50 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 3.92 vpr 62.52 MiB -1 -1 0.23 18336 1 0.03 -1 -1 30396 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64016 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 23.5 MiB 0.22 995 8073 1820 5530 723 62.5 MiB 0.08 0.00 3.66846 -111.424 -3.66846 3.66846 0.68 0.000653191 0.000606697 0.0273994 0.0254938 32 2372 20 6.65987e+06 393018 554710. 1919.41 0.90 0.104065 0.0910326 22834 132086 -1 2116 20 1245 2125 158081 35731 2.85591 2.85591 -105.849 -2.85591 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0260089 0.0226688 124 51 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.48 vpr 63.08 MiB -1 -1 0.21 18104 1 0.03 -1 -1 30484 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 24.4 MiB 0.26 1081 14713 4410 8000 2303 63.1 MiB 0.15 0.00 4.85897 -149.763 -4.85897 4.85897 0.69 0.000701304 0.000651983 0.0559858 0.0520752 32 3051 39 6.65987e+06 304272 554710. 1919.41 1.11 0.159838 0.140989 22834 132086 -1 2442 22 1985 3010 225131 52194 4.07205 4.07205 -141.281 -4.07205 0 0 701300. 2426.64 0.26 0.08 0.14 -1 -1 0.26 0.0295824 0.0258755 147 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 5.62 vpr 62.98 MiB -1 -1 0.22 18148 1 0.03 -1 -1 30076 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 24.1 MiB 0.40 1057 18773 5404 10789 2580 63.0 MiB 0.13 0.00 4.57498 -141.429 -4.57498 4.57498 0.68 0.00074407 0.000691177 0.042258 0.0387667 26 2887 23 6.65987e+06 431052 477104. 1650.88 2.38 0.215896 0.186845 21682 110474 -1 2397 18 1290 2019 146660 33279 3.71257 3.71257 -132.431 -3.71257 0 0 585099. 2024.56 0.18 0.09 0.10 -1 -1 0.18 0.0322214 0.0285523 143 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.67 vpr 62.16 MiB -1 -1 0.23 17940 1 0.03 -1 -1 30484 -1 -1 17 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 29 32 269 229 1 130 78 17 17 289 -1 unnamed_device 23.6 MiB 0.12 522 12528 3273 8240 1015 62.2 MiB 0.10 0.00 3.78218 -105.823 -3.78218 3.78218 0.66 0.000572199 0.000532433 0.0451911 0.042036 32 1502 24 6.65987e+06 215526 554710. 1919.41 0.80 0.115565 0.102085 22834 132086 -1 1376 20 919 1272 108408 25987 3.03537 3.03537 -98.5881 -3.03537 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0229538 0.0200102 92 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 5.31 vpr 62.79 MiB -1 -1 0.23 18240 1 0.03 -1 -1 30344 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 23.8 MiB 0.24 859 7770 1621 5832 317 62.8 MiB 0.08 0.00 4.1395 -122.394 -4.1395 4.1395 0.67 0.000482624 0.000441846 0.0268299 0.0248218 26 2383 37 6.65987e+06 253560 477104. 1650.88 2.34 0.184491 0.158637 21682 110474 -1 1928 23 1312 1714 141396 32487 3.37517 3.37517 -120.213 -3.37517 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0280413 0.0243193 117 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 3.76 vpr 62.85 MiB -1 -1 0.21 18180 1 0.03 -1 -1 30384 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64360 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 24.0 MiB 0.18 1006 6364 1268 4717 379 62.9 MiB 0.07 0.00 4.54692 -120.859 -4.54692 4.54692 0.66 0.000658506 0.000610641 0.0206399 0.0192138 26 2479 25 6.65987e+06 469086 477104. 1650.88 0.90 0.0904621 0.079103 21682 110474 -1 2227 21 1387 2520 179851 42241 4.07611 4.07611 -126.277 -4.07611 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0278836 0.0243747 129 33 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.84 vpr 62.18 MiB -1 -1 0.18 18148 1 0.03 -1 -1 30276 -1 -1 21 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63676 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 23.5 MiB 0.21 903 9516 2433 6273 810 62.2 MiB 0.09 0.00 4.23586 -115.879 -4.23586 4.23586 0.66 0.00048026 0.000440763 0.0319083 0.0296981 26 2151 21 6.65987e+06 266238 477104. 1650.88 1.01 0.0998604 0.0877249 21682 110474 -1 1944 20 976 1248 91213 21369 3.19091 3.19091 -109.113 -3.19091 0 0 585099. 2024.56 0.17 0.06 0.12 -1 -1 0.17 0.022493 0.0195915 110 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 3.81 vpr 62.21 MiB -1 -1 0.18 17924 1 0.03 -1 -1 30060 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63704 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 23.6 MiB 0.16 840 12980 3474 8543 963 62.2 MiB 0.11 0.00 3.73708 -117.005 -3.73708 3.73708 0.77 0.000598588 0.000556921 0.0471544 0.0438906 32 2020 18 6.65987e+06 202848 554710. 1919.41 0.83 0.114841 0.101791 22834 132086 -1 1831 23 1462 2541 202733 45407 2.67845 2.67845 -105.711 -2.67845 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0264113 0.0229324 109 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 5.89 vpr 62.80 MiB -1 -1 0.25 18240 1 0.03 -1 -1 30396 -1 -1 35 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 23.9 MiB 0.26 932 18098 5272 9901 2925 62.8 MiB 0.16 0.00 4.00372 -119.439 -4.00372 4.00372 0.75 0.000722305 0.000670399 0.0610117 0.0566315 32 2122 19 6.65987e+06 443730 554710. 1919.41 2.57 0.256161 0.22266 22834 132086 -1 1876 20 1378 2071 131991 31106 2.96231 2.96231 -109.45 -2.96231 0 0 701300. 2426.64 0.26 0.07 0.12 -1 -1 0.26 0.0291599 0.0257245 135 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 5.23 vpr 62.22 MiB -1 -1 0.20 17980 1 0.03 -1 -1 30320 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63712 31 32 265 230 1 164 82 17 17 289 -1 unnamed_device 23.6 MiB 0.23 729 5422 1011 4209 202 62.2 MiB 0.06 0.00 3.89447 -116.94 -3.89447 3.89447 0.71 0.000572748 0.000533802 0.0194501 0.0181287 30 1860 22 6.65987e+06 240882 526063. 1820.29 2.31 0.14876 0.127738 22546 126617 -1 1574 17 803 1153 64453 16278 2.86137 2.86137 -106.867 -2.86137 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0203347 0.0178089 110 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 4.16 vpr 62.79 MiB -1 -1 0.24 18408 1 0.03 -1 -1 30196 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 23.7 MiB 0.40 979 15863 4619 8770 2474 62.8 MiB 0.14 0.00 3.70512 -117.413 -3.70512 3.70512 0.67 0.000689793 0.000640834 0.053436 0.0496426 28 2333 21 6.65987e+06 393018 500653. 1732.36 0.96 0.136089 0.120555 21970 115934 -1 2040 22 1270 2188 155426 34369 2.66551 2.66551 -108.604 -2.66551 0 0 612192. 2118.31 0.19 0.09 0.11 -1 -1 0.19 0.0351114 0.0305694 126 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.50 vpr 62.84 MiB -1 -1 0.21 18200 1 0.03 -1 -1 30284 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 24.0 MiB 0.75 976 17159 4932 10231 1996 62.8 MiB 0.15 0.00 4.34696 -137.767 -4.34696 4.34696 0.67 0.000744133 0.000690497 0.0617451 0.057313 32 2285 23 6.65987e+06 405696 554710. 1919.41 0.85 0.151265 0.133989 22834 132086 -1 1959 19 1321 1855 128822 30635 3.45123 3.45123 -134.419 -3.45123 0 0 701300. 2426.64 0.23 0.07 0.13 -1 -1 0.23 0.0286514 0.0250679 138 91 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.10 vpr 62.36 MiB -1 -1 0.22 17940 1 0.03 -1 -1 30336 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 23.5 MiB 0.33 668 7781 1699 5777 305 62.4 MiB 0.08 0.00 3.26384 -99.5047 -3.26384 3.26384 0.71 0.000621765 0.000578209 0.0297913 0.0276855 28 2035 27 6.65987e+06 215526 500653. 1732.36 1.06 0.11092 0.0969462 21970 115934 -1 1594 20 943 1429 115173 27681 2.87391 2.87391 -102.619 -2.87391 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0247859 0.0215885 104 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.98 vpr 62.20 MiB -1 -1 0.22 17956 1 0.02 -1 -1 30352 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63696 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 23.5 MiB 0.20 794 6203 1260 4522 421 62.2 MiB 0.07 0.00 4.22769 -129.19 -4.22769 4.22769 0.72 0.000615982 0.000572738 0.0232717 0.0216618 28 2478 30 6.65987e+06 240882 500653. 1732.36 1.03 0.0974603 0.0850016 21970 115934 -1 2072 18 1317 1923 149105 37380 3.16031 3.16031 -121.312 -3.16031 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0227618 0.0198998 115 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.10 vpr 62.65 MiB -1 -1 0.24 18364 1 0.03 -1 -1 30324 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 23.8 MiB 0.19 982 13505 4715 6575 2215 62.6 MiB 0.13 0.00 4.5425 -135.474 -4.5425 4.5425 0.74 0.000657123 0.000610447 0.04922 0.0457271 32 2569 24 6.65987e+06 278916 554710. 1919.41 0.88 0.130632 0.115553 22834 132086 -1 2078 23 1533 2145 153331 36456 3.62971 3.62971 -124.599 -3.62971 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0295048 0.0257606 130 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.04 vpr 62.49 MiB -1 -1 0.20 18164 1 0.03 -1 -1 30116 -1 -1 28 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63992 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 23.5 MiB 0.41 892 10583 2559 7230 794 62.5 MiB 0.10 0.00 4.50014 -117.225 -4.50014 4.50014 0.65 0.000652318 0.000606564 0.0371529 0.0345546 32 2068 20 6.65987e+06 354984 554710. 1919.41 0.82 0.114506 0.100734 22834 132086 -1 1836 19 911 1491 100749 23800 3.02731 3.02731 -105.23 -3.02731 0 0 701300. 2426.64 0.20 0.06 0.13 -1 -1 0.20 0.0253089 0.0221463 121 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 7.26 vpr 62.52 MiB -1 -1 0.24 18244 1 0.03 -1 -1 30420 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64024 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 23.9 MiB 0.35 1106 7767 1737 5626 404 62.5 MiB 0.10 0.00 5.13083 -160.454 -5.13083 5.13083 0.65 0.000757533 0.000704214 0.033697 0.0313447 28 2891 50 6.65987e+06 291594 500653. 1732.36 4.05 0.28538 0.246262 21970 115934 -1 2428 22 1669 2470 189430 43116 4.20151 4.20151 -148.34 -4.20151 0 0 612192. 2118.31 0.19 0.10 0.08 -1 -1 0.19 0.0375344 0.0330753 153 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.70 vpr 61.76 MiB -1 -1 0.22 17756 1 0.03 -1 -1 30264 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63240 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 23.1 MiB 0.14 592 6556 1291 4488 777 61.8 MiB 0.05 0.00 3.5592 -94.6383 -3.5592 3.5592 0.66 0.000524378 0.000488364 0.0215942 0.0201134 32 1586 18 6.65987e+06 228204 554710. 1919.41 0.84 0.0820574 0.0716709 22834 132086 -1 1290 19 727 1139 67522 18762 2.64351 2.64351 -91.6369 -2.64351 0 0 701300. 2426.64 0.20 0.05 0.13 -1 -1 0.20 0.0207792 0.0181492 96 4 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.72 vpr 62.99 MiB -1 -1 0.26 18400 1 0.03 -1 -1 30352 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 24.1 MiB 0.38 1151 14083 3602 8814 1667 63.0 MiB 0.14 0.00 4.1637 -141.581 -4.1637 4.1637 0.70 0.000770978 0.000715654 0.0518304 0.0480963 26 2790 35 6.65987e+06 418374 477104. 1650.88 1.50 0.16488 0.145176 21682 110474 -1 2446 21 1740 2547 209902 46025 3.82177 3.82177 -144.768 -3.82177 0 0 585099. 2024.56 0.17 0.09 0.07 -1 -1 0.17 0.0320816 0.0280067 144 90 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 3.94 vpr 62.64 MiB -1 -1 0.25 18404 1 0.03 -1 -1 30256 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 23.7 MiB 0.25 838 12464 4352 6338 1774 62.6 MiB 0.10 0.00 3.54047 -123.895 -3.54047 3.54047 0.74 0.000710915 0.000660473 0.041748 0.0386827 30 1878 23 6.65987e+06 202848 526063. 1820.29 0.83 0.127732 0.112317 22546 126617 -1 1542 22 1226 1790 98805 26832 2.87877 2.87877 -118.928 -2.87877 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.0376697 0.0331185 115 96 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.32 vpr 62.64 MiB -1 -1 0.24 18236 1 0.03 -1 -1 30264 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 23.6 MiB 0.35 983 16079 4676 8844 2559 62.6 MiB 0.14 0.00 4.19332 -128.664 -4.19332 4.19332 0.67 0.000711502 0.000660195 0.0555008 0.05152 32 2255 22 6.65987e+06 393018 554710. 1919.41 0.85 0.14076 0.124689 22834 132086 -1 1913 18 945 1398 91740 22097 3.08831 3.08831 -113.899 -3.08831 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0263516 0.0230907 130 60 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 4.25 vpr 62.55 MiB -1 -1 0.24 18300 1 0.03 -1 -1 30388 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 24.1 MiB 0.42 1359 11969 3395 7471 1103 62.5 MiB 0.15 0.00 6.16929 -186.366 -6.16929 6.16929 0.67 0.000777118 0.000722055 0.049836 0.0463502 30 3247 30 6.65987e+06 316950 526063. 1820.29 0.94 0.151504 0.133594 22546 126617 -1 2548 18 1419 2069 117302 27620 4.70482 4.70482 -164.568 -4.70482 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0259926 0.0230397 168 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.66 vpr 61.88 MiB -1 -1 0.21 17996 1 0.02 -1 -1 30160 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63368 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 23.1 MiB 0.20 745 9881 2719 6136 1026 61.9 MiB 0.08 0.00 3.31307 -103.296 -3.31307 3.31307 0.66 0.000500328 0.000465663 0.0308964 0.0287698 30 1522 19 6.65987e+06 215526 526063. 1820.29 1.77 0.14317 0.123892 22546 126617 -1 1344 14 542 690 48805 11023 2.16777 2.16777 -89.6123 -2.16777 0 0 666494. 2306.21 0.19 0.04 0.11 -1 -1 0.19 0.0154461 0.0135755 86 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.75 vpr 62.16 MiB -1 -1 0.23 18012 1 0.03 -1 -1 30404 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63652 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 23.6 MiB 0.15 602 12196 3365 6955 1876 62.2 MiB 0.10 0.00 3.90063 -110.636 -3.90063 3.90063 0.68 0.000597987 0.000556361 0.0459601 0.0427385 30 1518 19 6.65987e+06 202848 526063. 1820.29 0.79 0.115422 0.102154 22546 126617 -1 1262 17 645 1082 59268 14532 2.86471 2.86471 -99.436 -2.86471 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.021458 0.0187713 92 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.16 vpr 62.33 MiB -1 -1 0.22 18028 1 0.03 -1 -1 30108 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63828 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 23.6 MiB 0.13 882 9385 2433 6375 577 62.3 MiB 0.09 0.00 3.38183 -110.848 -3.38183 3.38183 0.67 0.00061799 0.000574051 0.0330518 0.0306884 26 2388 28 6.65987e+06 266238 477104. 1650.88 1.31 0.113634 0.0994382 21682 110474 -1 2044 21 1367 2481 205189 45540 2.74151 2.74151 -112.085 -2.74151 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0257234 0.0223307 115 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.85 vpr 61.84 MiB -1 -1 0.19 17912 1 0.03 -1 -1 30200 -1 -1 27 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63320 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 23.1 MiB 0.12 451 9966 3308 4450 2208 61.8 MiB 0.07 0.00 3.08755 -72.8894 -3.08755 3.08755 0.67 0.000479244 0.000445411 0.027257 0.0253137 30 1266 42 6.65987e+06 342306 526063. 1820.29 0.96 0.0989247 0.0862206 22546 126617 -1 972 64 992 2005 378014 232494 3.12459 3.12459 -67.2426 -3.12459 0 0 666494. 2306.21 0.19 0.17 0.12 -1 -1 0.19 0.0498269 0.0425325 89 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 3.98 vpr 62.79 MiB -1 -1 0.24 18328 1 0.03 -1 -1 30296 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 23.7 MiB 0.27 1057 14724 4445 8208 2071 62.8 MiB 0.16 0.00 3.92752 -127.443 -3.92752 3.92752 0.66 0.000728069 0.000676523 0.0640695 0.0594564 32 2593 23 6.65987e+06 253560 554710. 1919.41 0.86 0.151756 0.134585 22834 132086 -1 2333 21 1449 2571 195752 43834 3.59845 3.59845 -126.517 -3.59845 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0301388 0.0263272 135 72 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.60 vpr 62.76 MiB -1 -1 0.25 18236 1 0.03 -1 -1 30280 -1 -1 33 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 23.9 MiB 0.36 971 8856 1873 6469 514 62.8 MiB 0.10 0.00 4.32075 -139.202 -4.32075 4.32075 0.66 0.00077141 0.000715886 0.0336871 0.0312435 30 2154 18 6.65987e+06 418374 526063. 1820.29 2.38 0.201117 0.174722 22546 126617 -1 1832 18 1023 1581 85815 20192 3.08137 3.08137 -119.737 -3.08137 0 0 666494. 2306.21 0.25 0.06 0.09 -1 -1 0.25 0.0285435 0.0250344 142 90 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 8.74 vpr 63.63 MiB -1 -1 0.16 18236 1 0.03 -1 -1 30036 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65160 32 32 354 285 1 194 77 17 17 289 -1 unnamed_device 24.9 MiB 2.46 819 9531 4011 5172 348 63.6 MiB 0.09 0.00 5.3162 -155.272 -5.3162 5.3162 0.70 0.000709654 0.000658433 0.044232 0.0411095 46 2487 41 6.95648e+06 188184 828058. 2865.25 3.34 0.215474 0.188142 28066 200906 -1 2026 23 1583 2386 227929 54567 4.62211 4.62211 -154.484 -4.62211 0 0 1.01997e+06 3529.29 0.29 0.09 0.18 -1 -1 0.29 0.0271167 0.0239016 81 50 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 9.47 vpr 63.48 MiB -1 -1 0.24 18216 1 0.03 -1 -1 30540 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65008 30 32 363 293 1 189 77 17 17 289 -1 unnamed_device 24.5 MiB 2.53 826 11487 4560 5338 1589 63.5 MiB 0.11 0.00 4.55677 -137.33 -4.55677 4.55677 0.72 0.000715299 0.000658954 0.0524854 0.0487719 38 2540 31 6.95648e+06 217135 678818. 2348.85 3.93 0.285493 0.246882 26626 170182 -1 2182 20 1894 2678 218279 46479 4.51791 4.51791 -149.379 -4.51791 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0286476 0.0250469 80 63 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 8.53 vpr 63.09 MiB -1 -1 0.18 18448 1 0.03 -1 -1 30308 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 24.5 MiB 1.25 827 10726 4133 5228 1365 63.1 MiB 0.09 0.00 3.76045 -118.752 -3.76045 3.76045 0.68 0.00048374 0.000441662 0.034017 0.0312821 40 2554 26 6.95648e+06 217135 706193. 2443.58 4.46 0.261354 0.224739 26914 176310 -1 2163 23 1577 2193 187964 39693 3.66072 3.66072 -127.257 -3.66072 0 0 926341. 3205.33 0.24 0.08 0.16 -1 -1 0.24 0.0281595 0.0245189 76 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 5.25 vpr 63.26 MiB -1 -1 0.23 18264 1 0.03 -1 -1 30312 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64780 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 24.3 MiB 0.36 723 14356 5004 7145 2207 63.3 MiB 0.11 0.00 4.16078 -115.782 -4.16078 4.16078 0.68 0.000629934 0.000585159 0.0554285 0.0515678 38 2210 49 6.95648e+06 275038 678818. 2348.85 1.99 0.204853 0.178595 26626 170182 -1 1597 21 1480 2455 149686 39777 4.58586 4.58586 -129.262 -4.58586 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0266722 0.0232251 71 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 6.34 vpr 63.31 MiB -1 -1 0.24 18104 1 0.03 -1 -1 30444 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64832 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 24.4 MiB 0.78 725 12292 5111 6719 462 63.3 MiB 0.10 0.00 4.31509 -131.389 -4.31509 4.31509 0.68 0.000668524 0.000617501 0.0505118 0.0468024 44 2628 39 6.95648e+06 231611 787024. 2723.27 2.59 0.159568 0.140114 27778 195446 -1 2002 22 1473 2461 206209 45810 4.63321 4.63321 -144.751 -4.63321 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0296159 0.0257954 73 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 6.62 vpr 63.54 MiB -1 -1 0.20 18292 1 0.03 -1 -1 30280 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 24.6 MiB 1.06 780 12919 4595 6436 1888 63.5 MiB 0.12 0.00 3.0405 -114.196 -3.0405 3.0405 0.68 0.000728425 0.00067592 0.0527007 0.0489595 40 2350 24 6.95648e+06 303989 706193. 2443.58 2.48 0.198567 0.173849 26914 176310 -1 1993 23 1558 2361 235074 50536 3.23447 3.23447 -122.866 -3.23447 0 0 926341. 3205.33 0.24 0.09 0.16 -1 -1 0.24 0.032028 0.0278731 79 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 10.89 vpr 62.71 MiB -1 -1 0.21 17860 1 0.03 -1 -1 30768 -1 -1 14 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 27 32 259 221 1 127 73 17 17 289 -1 unnamed_device 24.0 MiB 4.70 438 12233 4755 5541 1937 62.7 MiB 0.09 0.00 3.56899 -93.4053 -3.56899 3.56899 0.67 0.000553567 0.000515629 0.0465873 0.0434014 38 1424 22 6.95648e+06 202660 678818. 2348.85 3.31 0.209846 0.181435 26626 170182 -1 1077 17 761 1211 79644 18967 2.87042 2.87042 -93.9521 -2.87042 0 0 902133. 3121.57 0.23 0.05 0.18 -1 -1 0.23 0.0198549 0.0173408 53 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 7.65 vpr 62.90 MiB -1 -1 0.17 17776 1 0.03 -1 -1 30232 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 24.3 MiB 0.43 651 12373 4268 5547 2558 62.9 MiB 0.09 0.00 2.95842 -91.5041 -2.95842 2.95842 0.78 0.000590199 0.000548667 0.0397507 0.0369183 46 2209 26 6.95648e+06 361892 828058. 2865.25 4.12 0.215651 0.18616 28066 200906 -1 1528 20 1024 1644 126340 29774 2.98497 2.98497 -95.951 -2.98497 0 0 1.01997e+06 3529.29 0.37 0.06 0.20 -1 -1 0.37 0.0237975 0.0208056 69 4 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 7.16 vpr 63.12 MiB -1 -1 0.25 18320 1 0.03 -1 -1 30128 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 24.3 MiB 1.90 588 11234 4630 5959 645 63.1 MiB 0.10 0.00 3.43049 -116.456 -3.43049 3.43049 0.71 0.000637389 0.000591699 0.0486868 0.045274 46 2138 37 6.95648e+06 159232 828058. 2865.25 2.24 0.192341 0.16737 28066 200906 -1 1613 22 1267 1771 130611 31469 3.99756 3.99756 -128.928 -3.99756 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0272846 0.0237506 66 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 5.96 vpr 62.94 MiB -1 -1 0.22 17880 1 0.03 -1 -1 30120 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 24.3 MiB 1.21 622 12629 5382 6987 260 62.9 MiB 0.11 0.00 3.30928 -114.751 -3.30928 3.30928 0.68 0.000638996 0.000595039 0.0535673 0.0498915 38 2059 36 6.95648e+06 144757 678818. 2348.85 1.90 0.171042 0.149877 26626 170182 -1 1539 21 1266 1783 148265 33150 3.14982 3.14982 -124.237 -3.14982 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0260731 0.0227467 59 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 6.09 vpr 63.03 MiB -1 -1 0.24 18140 1 0.03 -1 -1 30336 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 24.5 MiB 1.68 499 7824 2588 3808 1428 63.0 MiB 0.07 0.00 3.43453 -102.152 -3.43453 3.43453 0.68 0.000611911 0.00056893 0.0332624 0.0309493 38 1752 37 6.95648e+06 173708 678818. 2348.85 1.59 0.148455 0.12892 26626 170182 -1 1326 21 1069 1514 115939 26552 3.07902 3.07902 -108.714 -3.07902 0 0 902133. 3121.57 0.23 0.06 0.15 -1 -1 0.23 0.0254112 0.0220926 55 63 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 9.12 vpr 62.91 MiB -1 -1 0.15 18044 1 0.03 -1 -1 30100 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 24.4 MiB 1.45 641 8754 2760 4259 1735 62.9 MiB 0.08 0.00 3.28034 -110.937 -3.28034 3.28034 0.70 0.000713275 0.000664019 0.037778 0.035156 54 1307 45 6.95648e+06 144757 949917. 3286.91 4.54 0.232753 0.200554 29506 232905 -1 1088 22 1149 1563 98323 25859 2.96467 2.96467 -103.236 -2.96467 0 0 1.17392e+06 4061.99 0.41 0.06 0.20 -1 -1 0.41 0.0232038 0.0205418 62 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 8.43 vpr 63.57 MiB -1 -1 0.21 18124 1 0.03 -1 -1 30312 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65100 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 24.6 MiB 1.90 907 9881 2634 5845 1402 63.6 MiB 0.10 0.00 3.82352 -130.458 -3.82352 3.82352 0.74 0.000698839 0.000649248 0.0429732 0.0399656 38 2955 44 6.95648e+06 217135 678818. 2348.85 3.51 0.206402 0.179515 26626 170182 -1 2316 23 2013 2995 290641 58279 3.44857 3.44857 -130.713 -3.44857 0 0 902133. 3121.57 0.23 0.12 0.15 -1 -1 0.23 0.0346146 0.0302154 83 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 6.19 vpr 63.43 MiB -1 -1 0.19 18208 1 0.03 -1 -1 30220 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 24.5 MiB 0.83 823 10481 3378 5508 1595 63.4 MiB 0.09 0.00 4.48063 -137.796 -4.48063 4.48063 0.70 0.000708621 0.000657955 0.0417475 0.0387804 38 2517 26 6.95648e+06 318465 678818. 2348.85 2.42 0.188304 0.163806 26626 170182 -1 2065 20 1719 2505 231981 47305 4.15356 4.15356 -139.943 -4.15356 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0284899 0.0248684 75 61 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 5.96 vpr 62.71 MiB -1 -1 0.22 18056 1 0.03 -1 -1 30372 -1 -1 13 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 24.0 MiB 1.19 466 9684 3087 4807 1790 62.7 MiB 0.07 0.00 3.10275 -86.0216 -3.10275 3.10275 0.67 0.000539984 0.000502688 0.0357213 0.0332789 48 1264 25 6.95648e+06 188184 865456. 2994.66 1.92 0.14486 0.125793 28354 207349 -1 1002 19 851 1266 84217 21946 2.96287 2.96287 -87.8543 -2.96287 0 0 1.05005e+06 3633.38 0.31 0.05 0.18 -1 -1 0.31 0.0208811 0.0181847 55 27 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 8.10 vpr 63.37 MiB -1 -1 0.25 18356 1 0.03 -1 -1 30360 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 370 297 1 181 81 17 17 289 -1 unnamed_device 24.4 MiB 1.03 775 13906 5829 7750 327 63.4 MiB 0.13 0.00 3.1265 -114.361 -3.1265 3.1265 0.68 0.000721187 0.000669412 0.0600526 0.0557428 46 2312 37 6.95648e+06 246087 828058. 2865.25 3.99 0.293183 0.253911 28066 200906 -1 1900 23 1616 2552 220573 47117 3.02787 3.02787 -121.71 -3.02787 0 0 1.01997e+06 3529.29 0.28 0.09 0.20 -1 -1 0.28 0.032198 0.0280316 77 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 8.78 vpr 63.36 MiB -1 -1 0.24 18140 1 0.03 -1 -1 30088 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 24.4 MiB 1.92 747 12528 4608 6627 1293 63.4 MiB 0.11 0.00 4.17585 -130.558 -4.17585 4.17585 0.68 0.000687123 0.000639395 0.0543244 0.050577 46 2096 24 6.95648e+06 202660 828058. 2865.25 3.89 0.23537 0.204415 28066 200906 -1 1698 20 1513 2085 141000 32945 3.32147 3.32147 -122.644 -3.32147 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0278954 0.024418 79 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 7.62 vpr 62.84 MiB -1 -1 0.19 18288 1 0.03 -1 -1 30300 -1 -1 9 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 24.3 MiB 0.85 713 11777 5007 6577 193 62.8 MiB 0.10 0.00 2.30911 -96.9749 -2.30911 2.30911 0.80 0.000648996 0.00060292 0.0523159 0.0485951 42 2008 47 6.95648e+06 130281 744469. 2576.02 3.72 0.271151 0.234539 27202 183097 -1 1664 19 1187 1768 172968 35245 2.45543 2.45543 -102.494 -2.45543 0 0 949917. 3286.91 0.25 0.07 0.16 -1 -1 0.25 0.024973 0.0217825 57 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 4.69 vpr 62.63 MiB -1 -1 0.19 17984 1 0.03 -1 -1 30156 -1 -1 10 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 30 32 222 206 1 116 72 17 17 289 -1 unnamed_device 24.1 MiB 0.33 461 10800 4629 5825 346 62.6 MiB 0.07 0.00 2.11601 -78.0433 -2.11601 2.11601 0.69 0.000378959 0.000347362 0.0309402 0.0285027 36 1696 29 6.95648e+06 144757 648988. 2245.63 1.58 0.117287 0.101735 26050 158493 -1 1260 21 811 1065 112554 24104 2.46628 2.46628 -87.3645 -2.46628 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0203372 0.0176099 44 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 9.27 vpr 63.10 MiB -1 -1 0.19 17988 1 0.03 -1 -1 30400 -1 -1 12 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 24.5 MiB 2.59 809 7343 1906 5018 419 63.1 MiB 0.07 0.00 4.085 -135.532 -4.085 4.085 0.68 0.000609628 0.000566983 0.0305804 0.0285033 44 2187 26 6.95648e+06 173708 787024. 2723.27 3.77 0.220693 0.189734 27778 195446 -1 1736 22 1322 1829 185746 37640 3.73872 3.73872 -136.557 -3.73872 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0268868 0.0234433 69 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 8.17 vpr 63.55 MiB -1 -1 0.22 18240 1 0.03 -1 -1 30384 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 24.5 MiB 0.69 652 8868 3175 4368 1325 63.5 MiB 0.08 0.00 3.70824 -121.183 -3.70824 3.70824 0.68 0.000693694 0.000643182 0.035732 0.0332077 48 2269 44 6.95648e+06 289514 865456. 2994.66 4.46 0.272216 0.234105 28354 207349 -1 1729 29 1974 2701 205341 50308 3.95661 3.95661 -131.137 -3.95661 0 0 1.05005e+06 3633.38 0.28 0.10 0.18 -1 -1 0.28 0.0369102 0.0320076 75 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 7.46 vpr 63.53 MiB -1 -1 0.24 18108 1 0.03 -1 -1 30280 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65056 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 24.6 MiB 1.44 829 13358 4003 7025 2330 63.5 MiB 0.12 0.00 4.7576 -136.611 -4.7576 4.7576 0.68 0.000729855 0.00067885 0.0608405 0.056569 44 2997 48 6.95648e+06 202660 787024. 2723.27 3.01 0.218345 0.190341 27778 195446 -1 2084 21 1653 2584 243814 51380 4.29321 4.29321 -133.404 -4.29321 0 0 997811. 3452.63 0.26 0.09 0.16 -1 -1 0.26 0.0302827 0.0264641 82 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 6.69 vpr 62.49 MiB -1 -1 0.21 18032 1 0.02 -1 -1 30712 -1 -1 13 26 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63988 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 23.9 MiB 0.80 312 9123 3841 4664 618 62.5 MiB 0.06 0.00 2.23646 -64.6952 -2.23646 2.23646 0.68 0.000426061 0.000396126 0.0281445 0.0261689 38 1021 24 6.95648e+06 188184 678818. 2348.85 3.08 0.144696 0.124663 26626 170182 -1 768 19 550 671 50390 13315 2.25003 2.25003 -68.1429 -2.25003 0 0 902133. 3121.57 0.23 0.04 0.15 -1 -1 0.23 0.0166883 0.0145193 44 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 7.81 vpr 62.86 MiB -1 -1 0.21 17900 1 0.03 -1 -1 30428 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 24.3 MiB 0.73 670 9543 3158 4645 1740 62.9 MiB 0.08 0.00 4.56626 -117.316 -4.56626 4.56626 0.68 0.000622356 0.000578904 0.0366523 0.034076 44 2267 26 6.95648e+06 217135 787024. 2723.27 4.21 0.25385 0.218815 27778 195446 -1 1602 28 1448 2388 179421 40665 4.06956 4.06956 -122.295 -4.06956 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0328755 0.0285831 66 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 4.51 vpr 62.48 MiB -1 -1 0.20 17500 1 0.02 -1 -1 29996 -1 -1 8 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 24.0 MiB 0.27 406 9906 4161 5525 220 62.5 MiB 0.06 0.00 2.18146 -70.2596 -2.18146 2.18146 0.68 0.000419734 0.000389296 0.029408 0.0273142 36 1318 31 6.95648e+06 115805 648988. 2245.63 1.54 0.117127 0.101713 26050 158493 -1 1010 18 647 699 71573 16854 1.96208 1.96208 -75.5094 -1.96208 0 0 828058. 2865.25 0.22 0.04 0.14 -1 -1 0.22 0.0155425 0.0135729 42 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 6.73 vpr 63.00 MiB -1 -1 0.23 17948 1 0.03 -1 -1 30196 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 24.4 MiB 0.93 867 11740 4903 6637 200 63.0 MiB 0.10 0.00 4.50901 -127.255 -4.50901 4.50901 0.68 0.000644671 0.000599416 0.0460959 0.0428346 36 2734 50 6.95648e+06 217135 648988. 2245.63 2.83 0.172196 0.150293 26050 158493 -1 2155 20 1396 2160 208644 41889 3.98106 3.98106 -131.601 -3.98106 0 0 828058. 2865.25 0.26 0.08 0.15 -1 -1 0.26 0.0254251 0.0222 68 24 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 5.69 vpr 63.18 MiB -1 -1 0.12 17668 1 0.03 -1 -1 30392 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 24.5 MiB 0.52 712 11989 4478 6107 1404 63.2 MiB 0.10 0.00 3.03146 -100.511 -3.03146 3.03146 0.67 0.000638459 0.000593053 0.0433936 0.0403492 46 2233 44 6.95648e+06 303989 828058. 2865.25 2.33 0.190094 0.165188 28066 200906 -1 1723 26 1313 2128 175152 40900 3.55217 3.55217 -109.828 -3.55217 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0319544 0.0278781 74 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 7.56 vpr 63.32 MiB -1 -1 0.24 18224 1 0.03 -1 -1 30104 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 24.4 MiB 0.85 860 15023 4398 9616 1009 63.3 MiB 0.13 0.00 4.41913 -133.119 -4.41913 4.41913 0.68 0.000675391 0.000627273 0.0591097 0.0549262 38 2706 45 6.95648e+06 275038 678818. 2348.85 3.75 0.221344 0.193321 26626 170182 -1 2154 21 1310 2015 173114 35307 4.12462 4.12462 -134.554 -4.12462 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0283127 0.0247265 72 50 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 5.71 vpr 62.89 MiB -1 -1 0.24 17956 1 0.04 -1 -1 30100 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 24.4 MiB 0.92 767 12319 3787 7504 1028 62.9 MiB 0.10 0.00 3.08875 -100.244 -3.08875 3.08875 0.73 0.00059937 0.000557565 0.0499065 0.0464519 36 2179 25 6.95648e+06 144757 648988. 2245.63 1.86 0.150333 0.131943 26050 158493 -1 1893 26 1241 1927 262841 76248 3.09632 3.09632 -116.758 -3.09632 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0299065 0.0259115 55 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 6.43 vpr 62.86 MiB -1 -1 0.23 17952 1 0.03 -1 -1 30240 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 24.2 MiB 0.26 475 11260 3973 5458 1829 62.9 MiB 0.08 0.00 3.16808 -92.8265 -3.16808 3.16808 0.68 0.000564051 0.000524537 0.0389143 0.0361903 44 1432 26 6.95648e+06 260562 787024. 2723.27 3.20 0.207604 0.178811 27778 195446 -1 1134 17 848 1167 93380 23187 2.80357 2.80357 -95.1145 -2.80357 0 0 997811. 3452.63 0.26 0.05 0.17 -1 -1 0.26 0.0199886 0.0174729 57 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 10.00 vpr 62.79 MiB -1 -1 0.19 17892 1 0.03 -1 -1 30124 -1 -1 16 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 24.0 MiB 0.66 455 10956 4555 5743 658 62.8 MiB 0.08 0.00 2.9612 -88.8951 -2.9612 2.9612 0.68 0.000557468 0.000518656 0.0400597 0.0373011 42 2122 48 6.95648e+06 231611 744469. 2576.02 6.58 0.286888 0.245901 27202 183097 -1 1442 25 1194 1858 160235 42971 3.50502 3.50502 -109.827 -3.50502 0 0 949917. 3286.91 0.24 0.07 0.16 -1 -1 0.24 0.0265005 0.0229063 57 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 5.40 vpr 62.86 MiB -1 -1 0.22 17772 1 0.03 -1 -1 30284 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 24.1 MiB 0.45 491 8909 2535 4509 1865 62.9 MiB 0.07 0.00 3.37459 -106.336 -3.37459 3.37459 0.68 0.000565905 0.000527121 0.0344558 0.0321067 46 1610 43 6.95648e+06 144757 828058. 2865.25 2.07 0.14877 0.129371 28066 200906 -1 1141 21 1110 1592 118853 30138 2.98182 2.98182 -106.207 -2.98182 0 0 1.01997e+06 3529.29 0.26 0.06 0.17 -1 -1 0.26 0.0238834 0.0208271 58 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 7.94 vpr 62.75 MiB -1 -1 0.24 18076 1 0.03 -1 -1 30440 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 24.3 MiB 0.39 517 10050 3590 5083 1377 62.8 MiB 0.08 0.00 3.16008 -98.5956 -3.16008 3.16008 0.68 0.000583343 0.000541615 0.0350099 0.0324416 46 1828 33 6.95648e+06 275038 828058. 2865.25 4.62 0.240235 0.206473 28066 200906 -1 1325 20 1000 1423 100826 24947 2.88667 2.88667 -102.534 -2.88667 0 0 1.01997e+06 3529.29 0.26 0.06 0.18 -1 -1 0.26 0.0232453 0.0202201 61 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 7.79 vpr 62.93 MiB -1 -1 0.14 17872 1 0.03 -1 -1 30428 -1 -1 12 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 24.4 MiB 1.14 526 12233 5235 6327 671 62.9 MiB 0.10 0.00 2.76945 -94.9274 -2.76945 2.76945 0.68 0.000600035 0.000557295 0.0508569 0.0473413 46 1830 25 6.95648e+06 173708 828058. 2865.25 3.68 0.231754 0.200338 28066 200906 -1 1340 28 1257 1662 129919 31591 2.60472 2.60472 -98.1873 -2.60472 0 0 1.01997e+06 3529.29 0.30 0.08 0.20 -1 -1 0.30 0.0310046 0.0267781 61 54 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 7.57 vpr 63.62 MiB -1 -1 0.24 18340 1 0.03 -1 -1 30392 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65152 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 24.6 MiB 0.81 844 13477 4316 6348 2813 63.6 MiB 0.12 0.00 4.03548 -120.669 -4.03548 4.03548 0.69 0.000707531 0.000654318 0.0554105 0.0514807 46 2351 36 6.95648e+06 303989 828058. 2865.25 3.69 0.28583 0.247837 28066 200906 -1 1961 21 1464 2405 158336 35632 3.55741 3.55741 -119.762 -3.55741 0 0 1.01997e+06 3529.29 0.27 0.08 0.18 -1 -1 0.27 0.0312917 0.0275339 84 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 6.83 vpr 63.60 MiB -1 -1 0.20 18256 1 0.03 -1 -1 30288 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 24.6 MiB 1.02 735 14323 5482 6766 2075 63.6 MiB 0.12 0.00 3.31218 -116.99 -3.31218 3.31218 0.67 0.000758952 0.000704593 0.0584552 0.0541098 40 2585 27 6.95648e+06 347416 706193. 2443.58 2.85 0.212916 0.185913 26914 176310 -1 2126 25 2009 2860 289316 68222 3.46607 3.46607 -130.304 -3.46607 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0370758 0.0323971 82 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 7.30 vpr 63.07 MiB -1 -1 0.23 18336 1 0.03 -1 -1 30168 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 24.5 MiB 1.88 758 6739 2921 3632 186 63.1 MiB 0.06 0.00 3.81132 -121.219 -3.81132 3.81132 0.73 0.000533767 0.00049448 0.0276855 0.0257573 46 1839 22 6.95648e+06 159232 828058. 2865.25 2.26 0.143674 0.124518 28066 200906 -1 1596 21 1281 1828 170670 34985 3.07146 3.07146 -114.319 -3.07146 0 0 1.01997e+06 3529.29 0.31 0.07 0.19 -1 -1 0.31 0.0262719 0.0230108 63 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 15.40 vpr 63.48 MiB -1 -1 0.25 18348 1 0.03 -1 -1 30344 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65000 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 24.6 MiB 0.78 729 11233 3391 5862 1980 63.5 MiB 0.10 0.00 3.75886 -121.815 -3.75886 3.75886 0.68 0.000720383 0.000669546 0.0505666 0.0470276 38 2698 33 6.95648e+06 231611 678818. 2348.85 11.67 0.363905 0.313603 26626 170182 -1 1828 23 1676 2491 201615 44808 3.27527 3.27527 -123.878 -3.27527 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0321258 0.0279896 76 61 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 8.45 vpr 63.66 MiB -1 -1 0.25 18200 1 0.04 -1 -1 30332 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 24.8 MiB 2.28 959 13092 5556 7054 482 63.7 MiB 0.12 0.00 5.39406 -167.083 -5.39406 5.39406 0.69 0.000724175 0.00067193 0.0590623 0.0548662 48 3474 43 6.95648e+06 231611 865456. 2994.66 3.05 0.203473 0.178156 28354 207349 -1 2550 22 2362 3403 359700 76627 5.202 5.202 -178.576 -5.202 0 0 1.05005e+06 3633.38 0.27 0.12 0.18 -1 -1 0.27 0.0319154 0.0279568 97 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 9.98 vpr 63.56 MiB -1 -1 0.19 18192 1 0.03 -1 -1 30364 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 24.8 MiB 2.16 981 12754 4946 6110 1698 63.6 MiB 0.12 0.00 4.59684 -149.382 -4.59684 4.59684 0.68 0.000741252 0.000688897 0.0589457 0.0548265 36 3190 46 6.95648e+06 231611 648988. 2245.63 4.94 0.235837 0.206149 26050 158493 -1 2735 23 1939 2833 326579 63459 4.72741 4.72741 -168.365 -4.72741 0 0 828058. 2865.25 0.22 0.11 0.14 -1 -1 0.22 0.033194 0.0289822 88 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 9.52 vpr 63.52 MiB -1 -1 0.25 18216 1 0.03 -1 -1 30480 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65044 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 24.7 MiB 1.28 767 14407 6066 7718 623 63.5 MiB 0.12 0.00 4.14668 -131.95 -4.14668 4.14668 0.69 0.000694253 0.000644759 0.0564981 0.0524603 52 2459 42 6.95648e+06 318465 926341. 3205.33 5.17 0.29259 0.253278 29218 227130 -1 1811 19 1226 1800 153757 33931 4.09161 4.09161 -126.162 -4.09161 0 0 1.14541e+06 3963.36 0.29 0.07 0.20 -1 -1 0.29 0.0268157 0.0235022 78 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 8.09 vpr 63.05 MiB -1 -1 0.23 17848 1 0.03 -1 -1 30364 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 24.4 MiB 1.20 753 10868 4524 5937 407 63.0 MiB 0.09 0.00 4.07128 -116.522 -4.07128 4.07128 0.68 0.000607781 0.000563334 0.0423906 0.039342 44 2347 31 6.95648e+06 202660 787024. 2723.27 4.02 0.224627 0.194041 27778 195446 -1 1806 18 1164 1671 125166 29610 3.71072 3.71072 -118.558 -3.71072 0 0 997811. 3452.63 0.26 0.06 0.17 -1 -1 0.26 0.0231018 0.0202011 71 27 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 10.72 vpr 63.79 MiB -1 -1 0.21 18468 1 0.03 -1 -1 30500 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65316 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 24.9 MiB 1.60 869 9725 2505 5543 1677 63.8 MiB 0.10 0.00 4.71507 -153.199 -4.71507 4.71507 0.65 0.000859818 0.000799262 0.0476998 0.0443551 58 2296 31 6.95648e+06 318465 997811. 3452.63 6.11 0.350676 0.301894 30370 251734 -1 1872 22 1850 2705 219163 49456 4.41931 4.41931 -149.17 -4.41931 0 0 1.25153e+06 4330.55 0.32 0.10 0.18 -1 -1 0.32 0.0372478 0.0325365 93 87 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 5.60 vpr 62.92 MiB -1 -1 0.18 17952 1 0.03 -1 -1 30140 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 24.2 MiB 0.77 547 8876 3348 4442 1086 62.9 MiB 0.07 0.00 3.29541 -98.5818 -3.29541 3.29541 0.61 0.00056416 0.00052438 0.0320822 0.0298313 34 2050 41 6.95648e+06 217135 618332. 2139.56 2.10 0.158307 0.136805 25762 151098 -1 1417 22 1099 1557 134706 29985 3.00097 3.00097 -107.528 -3.00097 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0245065 0.0212725 56 28 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 7.23 vpr 63.62 MiB -1 -1 0.25 18252 1 0.03 -1 -1 30164 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65148 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 24.6 MiB 1.46 909 14520 6637 7462 421 63.6 MiB 0.13 0.00 4.79642 -150.982 -4.79642 4.79642 0.73 0.00068047 0.000632713 0.0626013 0.0582488 48 2603 25 6.95648e+06 217135 865456. 2994.66 2.68 0.201017 0.176612 28354 207349 -1 2096 23 1679 2408 259494 58538 4.24206 4.24206 -145.401 -4.24206 0 0 1.05005e+06 3633.38 0.27 0.10 0.18 -1 -1 0.27 0.0305689 0.0266743 84 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 6.79 vpr 63.33 MiB -1 -1 0.23 18244 1 0.03 -1 -1 30356 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 24.4 MiB 1.03 767 9181 3812 5049 320 63.3 MiB 0.08 0.00 3.22585 -111.884 -3.22585 3.22585 0.76 0.000688356 0.000638989 0.0387052 0.03594 48 2304 49 6.95648e+06 246087 865456. 2994.66 2.72 0.204205 0.176911 28354 207349 -1 1811 23 1518 2477 196205 44945 3.39087 3.39087 -116.832 -3.39087 0 0 1.05005e+06 3633.38 0.27 0.08 0.18 -1 -1 0.27 0.0307313 0.0267378 73 53 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 6.38 vpr 62.91 MiB -1 -1 0.23 17764 1 0.03 -1 -1 30100 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 24.3 MiB 1.03 689 10744 4411 5919 414 62.9 MiB 0.12 0.00 4.49648 -123.127 -4.49648 4.49648 0.68 0.000630819 0.000587094 0.0563449 0.0522677 44 2677 33 6.95648e+06 231611 787024. 2723.27 2.40 0.190466 0.166487 27778 195446 -1 1768 22 1306 2216 176830 39983 4.33596 4.33596 -132.934 -4.33596 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0279853 0.0244915 68 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 7.50 vpr 63.43 MiB -1 -1 0.17 18176 1 0.03 -1 -1 30304 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 353 287 1 185 79 17 17 289 -1 unnamed_device 24.7 MiB 2.27 764 10219 4191 5614 414 63.4 MiB 0.09 0.00 4.42645 -137.171 -4.42645 4.42645 0.69 0.000697371 0.000647218 0.0447484 0.0415887 46 2232 27 6.95648e+06 217135 828058. 2865.25 2.32 0.187795 0.163553 28066 200906 -1 1690 21 1356 1843 119286 28759 3.38676 3.38676 -124.263 -3.38676 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.029082 0.0254594 78 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 8.92 vpr 63.30 MiB -1 -1 0.24 18132 1 0.03 -1 -1 30240 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 361 291 1 178 81 17 17 289 -1 unnamed_device 24.4 MiB 1.73 705 10581 4329 5826 426 63.3 MiB 0.09 0.00 3.235 -113.751 -3.235 3.235 0.78 0.000698693 0.000647613 0.0457428 0.0425441 46 2538 36 6.95648e+06 246087 828058. 2865.25 3.91 0.210446 0.183679 28066 200906 -1 1762 22 1596 2486 209871 53513 3.04467 3.04467 -116.161 -3.04467 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0304047 0.0266453 75 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 5.94 vpr 63.58 MiB -1 -1 0.23 18216 1 0.03 -1 -1 30384 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65108 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 24.5 MiB 0.97 869 14562 4589 7172 2801 63.6 MiB 0.12 0.00 4.34419 -139.535 -4.34419 4.34419 0.68 0.00073564 0.000682925 0.0561894 0.0521486 44 2582 33 6.95648e+06 376368 787024. 2723.27 1.94 0.185541 0.16252 27778 195446 -1 2081 22 1396 1997 161852 34833 3.73257 3.73257 -137.072 -3.73257 0 0 997811. 3452.63 0.26 0.08 0.19 -1 -1 0.26 0.0315996 0.027566 83 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 8.61 vpr 63.38 MiB -1 -1 0.23 17956 1 0.03 -1 -1 30240 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 24.5 MiB 1.00 657 12749 3718 6154 2877 63.4 MiB 0.10 0.00 4.33949 -116.542 -4.33949 4.33949 0.70 0.00048975 0.000449322 0.0455099 0.0420791 46 2278 27 6.95648e+06 318465 828058. 2865.25 4.55 0.251385 0.217063 28066 200906 -1 1635 34 1343 2207 278677 118734 3.86876 3.86876 -120.58 -3.86876 0 0 1.01997e+06 3529.29 0.29 0.13 0.17 -1 -1 0.29 0.0393419 0.0340603 69 24 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 7.74 vpr 63.47 MiB -1 -1 0.23 18236 1 0.03 -1 -1 30140 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64992 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 24.4 MiB 2.48 759 11487 3081 6173 2233 63.5 MiB 0.09 0.00 4.15778 -124.964 -4.15778 4.15778 0.71 0.00065762 0.000611028 0.048731 0.0453446 46 2227 42 6.95648e+06 188184 828058. 2865.25 2.21 0.191557 0.167205 28066 200906 -1 1421 20 1332 1783 116832 30386 4.29322 4.29322 -128.812 -4.29322 0 0 1.01997e+06 3529.29 0.28 0.08 0.17 -1 -1 0.28 0.0330323 0.0288603 80 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 7.36 vpr 63.42 MiB -1 -1 0.27 18336 1 0.03 -1 -1 30276 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64944 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 24.4 MiB 1.48 818 11200 4390 5140 1670 63.4 MiB 0.10 0.00 4.55157 -142.077 -4.55157 4.55157 0.69 0.000695454 0.000643369 0.0513895 0.0477522 50 2910 30 6.95648e+06 217135 902133. 3121.57 2.80 0.193904 0.170225 28642 213929 -1 2279 22 1850 2937 242481 54030 4.72121 4.72121 -154.712 -4.72121 0 0 1.08113e+06 3740.92 0.27 0.09 0.13 -1 -1 0.27 0.0314285 0.0274085 85 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 15.80 vpr 63.53 MiB -1 -1 0.23 18284 1 0.03 -1 -1 30220 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65052 32 32 387 315 1 183 77 17 17 289 -1 unnamed_device 24.6 MiB 1.37 875 12791 5461 6994 336 63.5 MiB 0.12 0.00 4.05245 -131.841 -4.05245 4.05245 0.68 0.000645169 0.000591785 0.0604784 0.0561338 44 2763 27 6.95648e+06 188184 787024. 2723.27 11.35 0.328623 0.284311 27778 195446 -1 2246 25 1752 2922 239542 49233 4.05862 4.05862 -140.456 -4.05862 0 0 997811. 3452.63 0.31 0.10 0.17 -1 -1 0.31 0.0336025 0.0296529 76 77 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 7.42 vpr 62.69 MiB -1 -1 0.21 18080 1 0.03 -1 -1 30340 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 24.0 MiB 0.32 503 11474 3656 5616 2202 62.7 MiB 0.08 0.00 3.14908 -92.8603 -3.14908 3.14908 0.67 0.000562268 0.000522048 0.0382502 0.0355564 52 1419 23 6.95648e+06 260562 926341. 3205.33 4.16 0.244345 0.210091 29218 227130 -1 1087 18 771 1179 89864 21770 2.74227 2.74227 -91.7392 -2.74227 0 0 1.14541e+06 3963.36 0.29 0.05 0.19 -1 -1 0.29 0.020529 0.0179319 57 23 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 6.55 vpr 63.55 MiB -1 -1 0.25 18320 1 0.03 -1 -1 30140 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65076 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 24.6 MiB 1.45 711 11916 4904 6407 605 63.6 MiB 0.11 0.00 3.71155 -132.668 -3.71155 3.71155 0.68 0.000677394 0.000628877 0.0526694 0.0489626 44 2425 26 6.95648e+06 173708 787024. 2723.27 1.99 0.161356 0.141676 27778 195446 -1 1674 18 1420 1991 153166 33659 3.57462 3.57462 -129.856 -3.57462 0 0 997811. 3452.63 0.36 0.07 0.19 -1 -1 0.36 0.0251631 0.0220712 76 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 7.70 vpr 63.53 MiB -1 -1 0.23 18260 1 0.03 -1 -1 30416 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65056 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 24.7 MiB 1.37 1043 13668 5813 7551 304 63.5 MiB 0.14 0.00 4.86362 -154.705 -4.86362 4.86362 0.68 0.000763893 0.000709243 0.0639566 0.0594541 46 3365 22 6.95648e+06 231611 828058. 2865.25 3.17 0.217161 0.190493 28066 200906 -1 2399 21 2087 3130 238764 50403 4.78086 4.78086 -155.649 -4.78086 0 0 1.01997e+06 3529.29 0.30 0.09 0.17 -1 -1 0.30 0.0321914 0.0282615 95 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 7.64 vpr 63.34 MiB -1 -1 0.23 18196 1 0.04 -1 -1 30468 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 24.4 MiB 0.90 1030 10056 3475 5590 991 63.3 MiB 0.09 0.00 4.33951 -148.581 -4.33951 4.33951 0.68 0.000688839 0.000641034 0.0421815 0.0392677 38 2405 21 6.95648e+06 246087 678818. 2348.85 3.75 0.259661 0.224174 26626 170182 -1 2053 21 1440 1910 152876 31166 3.53206 3.53206 -140.961 -3.53206 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0286017 0.0249733 74 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 6.90 vpr 62.82 MiB -1 -1 0.23 17876 1 0.03 -1 -1 30384 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/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.50 522 12008 3926 6070 2012 62.8 MiB 0.09 0.00 2.944 -97.1669 -2.944 2.944 0.72 0.000606949 0.000557998 0.0419219 0.0388865 38 2191 45 6.95648e+06 289514 678818. 2348.85 3.53 0.181808 0.157597 26626 170182 -1 1384 24 1137 1760 144452 32557 3.32657 3.32657 -105.304 -3.32657 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0280517 0.0243164 62 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 8.84 vpr 63.94 MiB -1 -1 0.23 18496 1 0.03 -1 -1 30472 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65476 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 25.0 MiB 1.82 1133 14782 6411 8010 361 63.9 MiB 0.15 0.00 5.84939 -174.319 -5.84939 5.84939 0.68 0.000825426 0.000767188 0.0757387 0.0704338 46 3210 43 6.95648e+06 217135 828058. 2865.25 3.86 0.275563 0.24144 28066 200906 -1 2620 22 2234 3260 380021 79679 4.9092 4.9092 -168.046 -4.9092 0 0 1.01997e+06 3529.29 0.26 0.12 0.17 -1 -1 0.26 0.0358947 0.0313779 95 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 6.62 vpr 63.45 MiB -1 -1 0.24 18208 1 0.03 -1 -1 30416 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 24.5 MiB 1.24 677 13335 4957 6249 2129 63.4 MiB 0.11 0.00 4.62011 -128.464 -4.62011 4.62011 0.68 0.000685733 0.00063646 0.0504529 0.0467585 46 2127 39 6.95648e+06 332941 828058. 2865.25 2.46 0.201961 0.175929 28066 200906 -1 1601 21 1287 1925 131804 31581 3.66536 3.66536 -124.644 -3.66536 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0282011 0.0246314 74 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 7.55 vpr 62.76 MiB -1 -1 0.21 17720 1 0.03 -1 -1 30452 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 24.2 MiB 0.34 533 10509 4364 5792 353 62.8 MiB 0.08 0.00 2.922 -92.1888 -2.922 2.922 0.68 0.000533724 0.000496399 0.0363479 0.0338504 44 1860 43 6.95648e+06 188184 787024. 2723.27 4.33 0.24555 0.211193 27778 195446 -1 1322 21 1032 1559 125074 32023 3.01497 3.01497 -97.1456 -3.01497 0 0 997811. 3452.63 0.28 0.06 0.17 -1 -1 0.28 0.0221256 0.0192615 51 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 7.92 vpr 63.50 MiB -1 -1 0.23 18196 1 0.03 -1 -1 30200 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 24.5 MiB 0.62 923 15298 6192 8434 672 63.5 MiB 0.13 0.00 4.94787 -132.081 -4.94787 4.94787 0.68 0.000711067 0.000660986 0.0585109 0.0544062 42 2728 49 6.95648e+06 347416 744469. 2576.02 4.33 0.301605 0.261307 27202 183097 -1 2153 22 1630 2908 277830 54875 4.62111 4.62111 -136.41 -4.62111 0 0 949917. 3286.91 0.24 0.10 0.16 -1 -1 0.24 0.030306 0.0264519 80 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 6.39 vpr 62.81 MiB -1 -1 0.22 17736 1 0.03 -1 -1 30252 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 247 207 1 143 78 17 17 289 -1 unnamed_device 24.1 MiB 1.04 478 10702 3424 4721 2557 62.8 MiB 0.08 0.00 2.9972 -98.3507 -2.9972 2.9972 0.68 0.00055344 0.000514404 0.0377102 0.0351001 40 1891 46 6.95648e+06 202660 706193. 2443.58 2.40 0.167201 0.144884 26914 176310 -1 1393 20 1216 1705 175293 44848 3.12312 3.12312 -112.128 -3.12312 0 0 926341. 3205.33 0.24 0.07 0.19 -1 -1 0.24 0.022538 0.0196478 57 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 6.56 vpr 63.03 MiB -1 -1 0.24 17860 1 0.03 -1 -1 30376 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 24.4 MiB 0.92 563 7684 3076 4271 337 63.0 MiB 0.07 0.00 3.70539 -107.459 -3.70539 3.70539 0.68 0.000575373 0.000533285 0.0289123 0.0269217 38 2065 26 6.95648e+06 246087 678818. 2348.85 2.81 0.150664 0.130487 26626 170182 -1 1388 19 962 1443 98972 22533 2.95562 2.95562 -101.553 -2.95562 0 0 902133. 3121.57 0.23 0.06 0.15 -1 -1 0.23 0.0227366 0.0198635 60 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 8.98 vpr 63.44 MiB -1 -1 0.26 18212 1 0.03 -1 -1 30328 -1 -1 16 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 24.7 MiB 1.58 772 11161 4679 5848 634 63.4 MiB 0.10 0.00 3.81182 -119.076 -3.81182 3.81182 0.70 0.000699718 0.000650081 0.0500853 0.0465143 50 2356 40 6.95648e+06 231611 902133. 3121.57 4.34 0.271561 0.234747 28642 213929 -1 1910 21 1595 2363 178428 39346 3.20926 3.20926 -116.621 -3.20926 0 0 1.08113e+06 3740.92 0.27 0.08 0.18 -1 -1 0.27 0.0290424 0.0253553 80 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 12.74 vpr 63.47 MiB -1 -1 0.24 18224 1 0.03 -1 -1 30276 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64996 32 32 358 289 1 174 80 17 17 289 -1 unnamed_device 24.6 MiB 1.22 730 14528 6360 7668 500 63.5 MiB 0.13 0.00 4.50448 -132.805 -4.50448 4.50448 0.69 0.000702296 0.000652348 0.0624618 0.0580817 40 2494 23 6.95648e+06 231611 706193. 2443.58 8.44 0.349267 0.302252 26914 176310 -1 2053 23 1679 2442 220311 49164 4.37836 4.37836 -149.477 -4.37836 0 0 926341. 3205.33 0.23 0.09 0.17 -1 -1 0.23 0.031375 0.0273127 72 54 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 8.73 vpr 63.33 MiB -1 -1 0.20 18208 1 0.04 -1 -1 30260 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 24.6 MiB 1.71 893 12196 5165 6793 238 63.3 MiB 0.11 0.00 4.54489 -142.964 -4.54489 4.54489 0.68 0.0007032 0.000653624 0.0541735 0.0503452 44 2682 22 6.95648e+06 202660 787024. 2723.27 4.08 0.281913 0.244065 27778 195446 -1 2055 24 1428 2293 201073 39813 4.04006 4.04006 -140.568 -4.04006 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0324638 0.0282848 73 51 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 8.67 vpr 62.93 MiB -1 -1 0.22 17992 1 0.03 -1 -1 30148 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 24.4 MiB 2.63 776 12009 5242 6488 279 62.9 MiB 0.10 0.00 4.04528 -129.976 -4.04528 4.04528 0.70 0.000589906 0.000549075 0.0479176 0.0446197 46 1885 49 6.95648e+06 144757 828058. 2865.25 3.04 0.189524 0.165041 28066 200906 -1 1641 19 1151 1512 250515 72629 3.36462 3.36462 -120.941 -3.36462 0 0 1.01997e+06 3529.29 0.26 0.09 0.18 -1 -1 0.26 0.0232456 0.0203546 61 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 8.65 vpr 62.91 MiB -1 -1 0.24 18316 1 0.03 -1 -1 30332 -1 -1 12 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 24.3 MiB 1.97 663 10661 4446 5843 372 62.9 MiB 0.09 0.00 3.79972 -122.501 -3.79972 3.79972 0.68 0.000638037 0.000592985 0.0451422 0.041939 42 2372 44 6.95648e+06 173708 744469. 2576.02 3.79 0.290297 0.249254 27202 183097 -1 1654 24 1345 1967 153429 34253 3.68766 3.68766 -126.73 -3.68766 0 0 949917. 3286.91 0.25 0.08 0.16 -1 -1 0.25 0.0292398 0.0254124 68 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 8.43 vpr 63.37 MiB -1 -1 0.23 18224 1 0.03 -1 -1 30380 -1 -1 22 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 24.4 MiB 0.80 674 10881 3783 5148 1950 63.4 MiB 0.09 0.00 3.0162 -94.5584 -3.0162 3.0162 0.68 0.000648259 0.00060093 0.042165 0.0392011 36 2708 33 6.95648e+06 318465 648988. 2245.63 4.59 0.189028 0.16436 26050 158493 -1 1913 21 1228 1904 165436 37389 3.36877 3.36877 -109.961 -3.36877 0 0 828058. 2865.25 0.23 0.07 0.14 -1 -1 0.23 0.0272131 0.0237012 71 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 5.59 vpr 63.00 MiB -1 -1 0.20 17976 1 0.03 -1 -1 30396 -1 -1 28 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 24.4 MiB 0.59 778 10813 2608 7403 802 63.0 MiB 0.08 0.00 3.60279 -102.16 -3.60279 3.60279 0.68 0.000591683 0.000549984 0.0345325 0.0321039 38 2172 19 6.95648e+06 405319 678818. 2348.85 2.21 0.148784 0.129298 26626 170182 -1 1840 21 1172 1938 158200 32086 3.80596 3.80596 -114.363 -3.80596 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0243274 0.0211024 72 27 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 8.37 vpr 62.95 MiB -1 -1 0.22 18240 1 0.03 -1 -1 30372 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64460 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 24.3 MiB 0.82 563 10459 4351 5596 512 62.9 MiB 0.09 0.00 3.44073 -108.445 -3.44073 3.44073 0.68 0.000635018 0.000589708 0.045625 0.0424644 62 1390 22 6.95648e+06 173708 1.05005e+06 3633.38 4.47 0.24978 0.215555 30946 263737 -1 1138 18 989 1332 92509 22287 3.01972 3.01972 -104.668 -3.01972 0 0 1.30136e+06 4502.97 0.33 0.06 0.23 -1 -1 0.33 0.0234995 0.0205235 61 63 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 19.19 vpr 63.34 MiB -1 -1 0.24 18128 1 0.03 -1 -1 30100 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 24.4 MiB 1.59 640 12873 4842 6240 1791 63.3 MiB 0.11 0.00 3.39649 -120.54 -3.39649 3.39649 0.67 0.000658951 0.000611858 0.0562258 0.0522752 48 2228 47 6.95648e+06 159232 865456. 2994.66 14.55 0.353927 0.305277 28354 207349 -1 1834 27 1641 2354 245542 62313 3.31916 3.31916 -126.417 -3.31916 0 0 1.05005e+06 3633.38 0.27 0.10 0.18 -1 -1 0.27 0.0330708 0.0287378 72 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 6.01 vpr 63.02 MiB -1 -1 0.24 17648 1 0.03 -1 -1 30388 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 24.4 MiB 0.59 710 11799 3748 5667 2384 63.0 MiB 0.09 0.00 4.65108 -122.985 -4.65108 4.65108 0.68 0.000629034 0.000583751 0.0414765 0.0385699 48 2306 45 6.95648e+06 347416 865456. 2994.66 2.41 0.171674 0.149595 28354 207349 -1 1724 21 1126 1892 189388 42832 3.77166 3.77166 -124.085 -3.77166 0 0 1.05005e+06 3633.38 0.27 0.08 0.18 -1 -1 0.27 0.0262533 0.0228924 74 4 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 9.17 vpr 63.46 MiB -1 -1 0.23 18236 1 0.04 -1 -1 30576 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64984 32 32 350 275 1 195 77 17 17 289 -1 unnamed_device 24.7 MiB 1.71 839 11813 4506 5923 1384 63.5 MiB 0.11 0.00 4.59692 -149.244 -4.59692 4.59692 0.70 0.000700748 0.000650477 0.0535037 0.0497227 46 2984 27 6.95648e+06 188184 828058. 2865.25 4.38 0.258974 0.224932 28066 200906 -1 2127 22 1674 2480 206654 44561 4.19442 4.19442 -148.109 -4.19442 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0306293 0.0268005 81 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 7.42 vpr 63.43 MiB -1 -1 0.23 18104 1 0.03 -1 -1 30384 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 24.5 MiB 1.43 818 16468 6086 8049 2333 63.4 MiB 0.14 0.00 4.31183 -134.888 -4.31183 4.31183 0.69 0.000704564 0.000650335 0.0654235 0.0606991 46 2433 50 6.95648e+06 347416 828058. 2865.25 2.87 0.247659 0.216558 28066 200906 -1 2036 24 1655 2611 275869 56257 4.20256 4.20256 -147.124 -4.20256 0 0 1.01997e+06 3529.29 0.30 0.10 0.17 -1 -1 0.30 0.0341299 0.029743 80 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 7.12 vpr 63.54 MiB -1 -1 0.25 18280 1 0.03 -1 -1 30296 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65060 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 24.6 MiB 1.22 810 13911 4952 7625 1334 63.5 MiB 0.13 0.00 4.06852 -133.682 -4.06852 4.06852 0.69 0.00074621 0.000692812 0.0567956 0.0527171 44 2810 38 6.95648e+06 332941 787024. 2723.27 2.79 0.223078 0.194615 27778 195446 -1 2088 22 1704 2782 216494 48753 4.03326 4.03326 -142.694 -4.03326 0 0 997811. 3452.63 0.27 0.09 0.17 -1 -1 0.27 0.0321244 0.0280493 80 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 5.97 vpr 62.85 MiB -1 -1 0.16 18092 1 0.03 -1 -1 30156 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64360 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 24.4 MiB 0.86 540 8134 2607 3837 1690 62.9 MiB 0.07 0.00 3.76076 -106.203 -3.76076 3.76076 0.71 0.000580205 0.000539864 0.0324602 0.0302201 40 1743 21 6.95648e+06 173708 706193. 2443.58 2.28 0.143793 0.124884 26914 176310 -1 1450 19 1055 1623 139417 31075 3.09482 3.09482 -107.953 -3.09482 0 0 926341. 3205.33 0.24 0.06 0.16 -1 -1 0.24 0.0225152 0.0196539 57 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 8.61 vpr 63.36 MiB -1 -1 0.17 18156 1 0.03 -1 -1 30388 -1 -1 14 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 24.4 MiB 0.92 678 9356 3868 5007 481 63.4 MiB 0.09 0.00 4.36203 -133.981 -4.36203 4.36203 0.68 0.000719514 0.000667402 0.0448017 0.0416211 62 1674 24 6.95648e+06 202660 1.05005e+06 3633.38 4.66 0.281682 0.24302 30946 263737 -1 1253 22 1370 1875 125210 27799 3.78282 3.78282 -122.799 -3.78282 0 0 1.30136e+06 4502.97 0.32 0.07 0.24 -1 -1 0.32 0.0312563 0.0272702 76 63 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 9.06 vpr 63.53 MiB -1 -1 0.23 18240 1 0.03 -1 -1 30248 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65052 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 24.7 MiB 1.53 842 12030 5028 6552 450 63.5 MiB 0.11 0.00 4.9029 -146.03 -4.9029 4.9029 0.68 0.000685603 0.00063708 0.0522936 0.048623 48 2359 34 6.95648e+06 202660 865456. 2994.66 4.56 0.273323 0.236884 28354 207349 -1 1906 21 1574 2568 243804 52280 4.23991 4.23991 -138.98 -4.23991 0 0 1.05005e+06 3633.38 0.27 0.11 0.18 -1 -1 0.27 0.0320948 0.0279218 80 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 8.75 vpr 63.57 MiB -1 -1 0.25 18272 1 0.03 -1 -1 30092 -1 -1 14 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65096 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 24.5 MiB 1.34 802 12302 5209 6575 518 63.6 MiB 0.11 0.00 5.49296 -152.69 -5.49296 5.49296 0.69 0.000681137 0.000632458 0.0543852 0.0506068 48 2186 22 6.95648e+06 202660 865456. 2994.66 4.27 0.252646 0.219271 28354 207349 -1 1898 22 1362 2105 193050 41590 4.37756 4.37756 -146.531 -4.37756 0 0 1.05005e+06 3633.38 0.33 0.08 0.21 -1 -1 0.33 0.0297138 0.0259258 79 47 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 7.37 vpr 63.46 MiB -1 -1 0.26 18208 1 0.03 -1 -1 30128 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64988 30 32 377 310 1 171 83 17 17 289 -1 unnamed_device 24.4 MiB 2.39 747 11063 3637 5035 2391 63.5 MiB 0.12 0.00 4.87546 -148.536 -4.87546 4.87546 0.68 0.00071881 0.000667464 0.0573986 0.0532788 44 2266 39 6.95648e+06 303989 787024. 2723.27 1.94 0.189959 0.166421 27778 195446 -1 1772 19 1100 1701 126629 28534 3.94446 3.94446 -138.289 -3.94446 0 0 997811. 3452.63 0.27 0.07 0.18 -1 -1 0.27 0.0273935 0.0239706 74 83 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 9.26 vpr 63.37 MiB -1 -1 0.19 18372 1 0.03 -1 -1 30460 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 24.5 MiB 1.15 690 9368 3411 4136 1821 63.4 MiB 0.09 0.00 4.44043 -136.028 -4.44043 4.44043 0.68 0.000566063 0.000519094 0.0431496 0.040023 56 2045 26 6.95648e+06 188184 973134. 3367.25 5.09 0.278891 0.241128 29794 239141 -1 1709 20 1368 2297 179555 41735 3.86892 3.86892 -135.287 -3.86892 0 0 1.19926e+06 4149.71 0.31 0.08 0.21 -1 -1 0.31 0.0292942 0.0256825 72 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 8.32 vpr 63.50 MiB -1 -1 0.25 18132 1 0.03 -1 -1 30288 -1 -1 16 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 24.6 MiB 1.13 661 10346 4002 4565 1779 63.5 MiB 0.09 0.00 4.05037 -124.329 -4.05037 4.05037 0.70 0.000712692 0.000661868 0.0478509 0.044449 48 2271 31 6.95648e+06 231611 865456. 2994.66 4.17 0.275179 0.237987 28354 207349 -1 1696 19 1340 1945 154438 38128 3.70772 3.70772 -126.489 -3.70772 0 0 1.05005e+06 3633.38 0.27 0.07 0.18 -1 -1 0.27 0.027641 0.0241592 73 85 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 10.72 vpr 62.78 MiB -1 -1 0.20 17804 1 0.03 -1 -1 30496 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 243 205 1 141 74 17 17 289 -1 unnamed_device 24.1 MiB 1.02 586 9374 3879 5247 248 62.8 MiB 0.07 0.00 3.56099 -107.065 -3.56099 3.56099 0.68 0.00048264 0.000442804 0.0351397 0.032686 38 1998 44 6.95648e+06 144757 678818. 2348.85 6.81 0.26917 0.231185 26626 170182 -1 1504 25 1108 1632 253138 97143 2.88007 2.88007 -106.685 -2.88007 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.0268971 0.0233792 54 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 8.19 vpr 63.50 MiB -1 -1 0.14 18176 1 0.03 -1 -1 30280 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65028 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 24.8 MiB 2.90 802 15255 5017 7734 2504 63.5 MiB 0.13 0.00 4.6485 -130.063 -4.6485 4.6485 0.69 0.000725051 0.000673634 0.0584385 0.0540539 46 2292 23 6.95648e+06 332941 828058. 2865.25 2.22 0.172393 0.151182 28066 200906 -1 1852 23 1154 1783 158840 34469 4.34076 4.34076 -136.882 -4.34076 0 0 1.01997e+06 3529.29 0.27 0.08 0.20 -1 -1 0.27 0.0339501 0.0297621 76 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 7.91 vpr 63.46 MiB -1 -1 0.23 18288 1 0.03 -1 -1 30276 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64984 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 24.5 MiB 0.78 783 8716 3564 4899 253 63.5 MiB 0.09 0.00 4.28453 -142.302 -4.28453 4.28453 0.67 0.000759988 0.000705303 0.0432112 0.0401106 46 2521 34 6.95648e+06 188184 828058. 2865.25 3.95 0.2852 0.245608 28066 200906 -1 1789 23 1572 2303 149693 35251 3.96002 3.96002 -145.842 -3.96002 0 0 1.01997e+06 3529.29 0.38 0.10 0.20 -1 -1 0.38 0.0403389 0.035383 78 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 8.15 vpr 62.90 MiB -1 -1 0.21 17944 1 0.03 -1 -1 30324 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 24.4 MiB 1.80 634 12083 4617 6209 1257 62.9 MiB 0.10 0.00 4.05037 -119.139 -4.05037 4.05037 0.69 0.000573138 0.000531998 0.0460304 0.04278 46 1888 24 6.95648e+06 159232 828058. 2865.25 3.39 0.218015 0.188607 28066 200906 -1 1468 19 1111 1421 112010 25385 3.45712 3.45712 -117.244 -3.45712 0 0 1.01997e+06 3529.29 0.26 0.06 0.21 -1 -1 0.26 0.0230093 0.0201451 68 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 7.61 vpr 62.70 MiB -1 -1 0.22 17688 1 0.03 -1 -1 30392 -1 -1 14 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 31 32 245 205 1 145 77 17 17 289 -1 unnamed_device 24.0 MiB 1.17 487 10835 3461 5636 1738 62.7 MiB 0.08 0.00 3.36359 -100.982 -3.36359 3.36359 0.68 0.000548185 0.000510105 0.0384382 0.0357975 42 1814 42 6.95648e+06 202660 744469. 2576.02 3.58 0.220275 0.189773 27202 183097 -1 1150 22 1212 1698 116371 29217 3.04892 3.04892 -101.08 -3.04892 0 0 949917. 3286.91 0.24 0.06 0.16 -1 -1 0.24 0.0238554 0.0207427 58 4 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 10.15 vpr 63.52 MiB -1 -1 0.15 18216 1 0.03 -1 -1 30608 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65048 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 24.7 MiB 1.69 752 12754 5308 6926 520 63.5 MiB 0.12 0.00 4.57592 -147.598 -4.57592 4.57592 0.67 0.000693316 0.000643126 0.0554606 0.0515359 48 2718 40 6.95648e+06 217135 865456. 2994.66 5.32 0.322656 0.278849 28354 207349 -1 2198 22 2028 2655 254879 61421 4.72641 4.72641 -159.267 -4.72641 0 0 1.05005e+06 3633.38 0.40 0.09 0.21 -1 -1 0.40 0.0276398 0.0245966 85 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 6.67 vpr 63.55 MiB -1 -1 0.24 18244 1 0.03 -1 -1 30440 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 24.8 MiB 1.00 797 12030 5060 6593 377 63.5 MiB 0.11 0.00 4.81473 -147.296 -4.81473 4.81473 0.68 0.000700983 0.000650835 0.0533486 0.0494821 46 2524 35 6.95648e+06 202660 828058. 2865.25 2.70 0.203249 0.177146 28066 200906 -1 1867 21 1482 2163 173801 40068 4.08896 4.08896 -142.959 -4.08896 0 0 1.01997e+06 3529.29 0.27 0.08 0.18 -1 -1 0.27 0.0292944 0.0256481 82 56 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 8.41 vpr 63.52 MiB -1 -1 0.23 18028 1 0.03 -1 -1 30180 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65048 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 24.6 MiB 0.49 857 12156 5040 6495 621 63.5 MiB 0.11 0.00 4.94172 -141.808 -4.94172 4.94172 0.68 0.000715975 0.000664731 0.0524999 0.0487967 50 2424 42 6.95648e+06 246087 902133. 3121.57 4.90 0.292006 0.253236 28642 213929 -1 2023 24 1791 3022 240716 56098 4.5268 4.5268 -146.532 -4.5268 0 0 1.08113e+06 3740.92 0.27 0.10 0.18 -1 -1 0.27 0.0336065 0.0294072 83 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 7.64 vpr 63.38 MiB -1 -1 0.24 18244 1 0.03 -1 -1 30372 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 24.5 MiB 0.79 694 11963 3988 5372 2603 63.4 MiB 0.10 0.00 3.42648 -99.7352 -3.42648 3.42648 0.67 0.000637402 0.000591171 0.0446457 0.0414971 36 2505 35 6.95648e+06 303989 648988. 2245.63 4.01 0.185994 0.161594 26050 158493 -1 1728 20 1405 2173 173282 37294 3.22627 3.22627 -109.804 -3.22627 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0258311 0.0225409 69 52 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 7.07 vpr 62.85 MiB -1 -1 0.21 17900 1 0.03 -1 -1 30424 -1 -1 16 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 27 32 255 219 1 129 75 17 17 289 -1 unnamed_device 24.2 MiB 0.57 461 8291 2789 4081 1421 62.8 MiB 0.06 0.00 2.92795 -88.1908 -2.92795 2.92795 0.68 0.000545598 0.000507528 0.0302709 0.0281608 34 1607 36 6.95648e+06 231611 618332. 2139.56 3.71 0.228103 0.194727 25762 151098 -1 1212 22 1022 1273 97777 24574 2.94272 2.94272 -98.3554 -2.94272 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0298883 0.0256876 55 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 26.16 vpr 63.74 MiB -1 -1 0.22 18516 1 0.04 -1 -1 30288 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65272 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 24.8 MiB 1.39 1102 15044 5934 6987 2123 63.7 MiB 0.15 0.00 3.84665 -133.243 -3.84665 3.84665 0.67 0.000801247 0.000744244 0.0731819 0.0679753 44 3912 38 6.95648e+06 231611 787024. 2723.27 21.65 0.428735 0.371357 27778 195446 -1 2650 23 2329 3777 336798 83820 3.95332 3.95332 -144.857 -3.95332 0 0 997811. 3452.63 0.26 0.12 0.17 -1 -1 0.26 0.036026 0.0314147 95 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 9.55 vpr 63.51 MiB -1 -1 0.22 18312 1 0.03 -1 -1 30416 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 31 32 365 296 1 191 78 17 17 289 -1 unnamed_device 24.6 MiB 4.28 1054 12362 3699 7370 1293 63.5 MiB 0.12 0.00 5.54356 -160.149 -5.54356 5.54356 0.68 0.000707646 0.000657464 0.0555299 0.051603 44 2839 44 6.95648e+06 217135 787024. 2723.27 2.29 0.191907 0.168027 27778 195446 -1 2311 22 1567 2448 215016 41644 4.67901 4.67901 -159.933 -4.67901 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0305869 0.0267138 82 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 8.18 vpr 63.32 MiB -1 -1 0.24 18392 1 0.03 -1 -1 30384 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 24.4 MiB 3.25 712 8923 3677 5027 219 63.3 MiB 0.08 0.00 3.7738 -128.135 -3.7738 3.7738 0.68 0.000656605 0.000609727 0.0397243 0.036942 38 2693 37 6.95648e+06 159232 678818. 2348.85 1.98 0.162281 0.141455 26626 170182 -1 1927 21 1453 2080 221772 61542 3.74976 3.74976 -140.556 -3.74976 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0273833 0.0238855 70 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 16.44 vpr 63.33 MiB -1 -1 0.24 18376 1 0.03 -1 -1 30368 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 24.4 MiB 0.41 938 14261 5382 6939 1940 63.3 MiB 0.13 0.00 4.23483 -126.342 -4.23483 4.23483 0.68 0.000675978 0.000626261 0.0564809 0.0522893 38 2645 48 6.95648e+06 318465 678818. 2348.85 13.02 0.364307 0.31454 26626 170182 -1 2110 20 1311 2028 170396 34366 3.92976 3.92976 -129.96 -3.92976 0 0 902133. 3121.57 0.24 0.08 0.16 -1 -1 0.24 0.0271057 0.023732 74 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 5.92 vpr 63.67 MiB -1 -1 0.25 18240 1 0.03 -1 -1 30488 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65200 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 24.7 MiB 0.90 924 11398 3933 5445 2020 63.7 MiB 0.10 0.00 4.47977 -130.348 -4.47977 4.47977 0.69 0.000734992 0.000680706 0.0452362 0.041981 36 2622 49 6.95648e+06 361892 648988. 2245.63 2.07 0.187988 0.164072 26050 158493 -1 2091 22 1634 2481 166714 37915 3.79382 3.79382 -133.71 -3.79382 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.031357 0.0273628 83 50 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 8.34 vpr 63.27 MiB -1 -1 0.24 18232 1 0.03 -1 -1 30380 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64788 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 24.4 MiB 0.98 716 8544 3177 4311 1056 63.3 MiB 0.08 0.00 3.31107 -101.686 -3.31107 3.31107 0.68 0.000647176 0.000601367 0.0357803 0.0332991 38 2777 45 6.95648e+06 231611 678818. 2348.85 4.49 0.19209 0.166187 26626 170182 -1 2061 19 1369 2231 197407 43010 3.37172 3.37172 -114.229 -3.37172 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0252426 0.0220748 68 51 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 23.51 vpr 63.54 MiB -1 -1 0.25 18268 1 0.03 -1 -1 30344 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 24.7 MiB 1.54 916 13856 5155 6510 2191 63.5 MiB 0.12 0.00 4.51937 -148.282 -4.51937 4.51937 0.68 0.000665504 0.000614794 0.0604364 0.0561482 44 3814 50 6.95648e+06 202660 787024. 2723.27 18.91 0.372005 0.321591 27778 195446 -1 2420 21 1984 2868 287175 60934 4.43742 4.43742 -152.778 -4.43742 0 0 997811. 3452.63 0.28 0.11 0.17 -1 -1 0.28 0.0335901 0.0295535 88 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 5.88 vpr 63.40 MiB -1 -1 0.18 18420 1 0.03 -1 -1 30096 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 24.7 MiB 0.92 854 9338 3754 5311 273 63.4 MiB 0.09 0.00 4.47033 -147.36 -4.47033 4.47033 0.69 0.000745552 0.000692145 0.0416502 0.0386972 40 2444 23 6.95648e+06 260562 706193. 2443.58 1.94 0.188328 0.163679 26914 176310 -1 2114 23 1571 2109 197933 41957 4.12762 4.12762 -144.507 -4.12762 0 0 926341. 3205.33 0.32 0.09 0.18 -1 -1 0.32 0.0301528 0.0265693 80 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 11.40 vpr 62.85 MiB -1 -1 0.24 17980 1 0.03 -1 -1 30252 -1 -1 12 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 24.3 MiB 4.20 468 9953 3826 4648 1479 62.8 MiB 0.08 0.00 4.00493 -101.525 -4.00493 4.00493 0.74 0.000591609 0.000533739 0.0396382 0.0369055 36 1656 25 6.95648e+06 173708 648988. 2245.63 4.26 0.226846 0.195622 26050 158493 -1 1227 27 1176 1581 127931 31156 3.12203 3.12203 -104.772 -3.12203 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0293586 0.0253909 53 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 7.98 vpr 63.28 MiB -1 -1 0.15 18268 1 0.03 -1 -1 30344 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 24.4 MiB 1.22 608 10187 3178 5307 1702 63.3 MiB 0.09 0.00 3.51519 -119.059 -3.51519 3.51519 0.68 0.000630757 0.000585992 0.042447 0.0394304 42 2230 44 6.95648e+06 159232 744469. 2576.02 3.88 0.258356 0.222719 27202 183097 -1 1461 18 1170 1458 120460 28525 3.41506 3.41506 -120.781 -3.41506 0 0 949917. 3286.91 0.25 0.06 0.18 -1 -1 0.25 0.0233698 0.0204254 64 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 8.54 vpr 63.36 MiB -1 -1 0.16 18228 1 0.03 -1 -1 30372 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 24.3 MiB 0.89 748 11615 3856 5496 2263 63.4 MiB 0.10 0.00 4.10411 -120.963 -4.10411 4.10411 0.69 0.00066778 0.000620309 0.0439936 0.0408811 44 2469 26 6.95648e+06 332941 787024. 2723.27 4.66 0.278701 0.240595 27778 195446 -1 1799 26 1480 2331 212814 48275 3.97526 3.97526 -129.99 -3.97526 0 0 997811. 3452.63 0.36 0.09 0.17 -1 -1 0.36 0.0326357 0.0283722 77 33 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 6.88 vpr 62.93 MiB -1 -1 0.23 18156 1 0.03 -1 -1 30308 -1 -1 13 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 24.4 MiB 1.75 593 9994 4212 5312 470 62.9 MiB 0.08 0.00 4.05727 -116.106 -4.05727 4.05727 0.68 0.000563999 0.000525059 0.0383632 0.0357296 40 2251 36 6.95648e+06 188184 706193. 2443.58 2.26 0.163052 0.141518 26914 176310 -1 1831 21 1318 1668 158768 36497 3.82202 3.82202 -121.162 -3.82202 0 0 926341. 3205.33 0.24 0.07 0.15 -1 -1 0.24 0.0242212 0.0211139 67 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 6.06 vpr 62.84 MiB -1 -1 0.21 17932 1 0.03 -1 -1 30204 -1 -1 9 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 24.2 MiB 1.25 609 9497 4084 5186 227 62.8 MiB 0.08 0.00 3.96096 -113.861 -3.96096 3.96096 0.68 0.000593176 0.000551432 0.0391459 0.0364425 44 1872 43 6.95648e+06 130281 787024. 2723.27 1.94 0.167166 0.145158 27778 195446 -1 1412 21 1258 1911 149762 32431 2.93842 2.93842 -110.555 -2.93842 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.02478 0.0216028 56 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 5.56 vpr 63.45 MiB -1 -1 0.26 18208 1 0.03 -1 -1 30476 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64976 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 24.5 MiB 1.02 760 14295 5473 6487 2335 63.5 MiB 0.12 0.00 3.48773 -117.233 -3.48773 3.48773 0.69 0.000725417 0.000674131 0.0571161 0.0530857 38 2353 27 6.95648e+06 347416 678818. 2348.85 1.61 0.18785 0.164526 26626 170182 -1 1741 20 1636 2188 161214 36056 3.39887 3.39887 -120.309 -3.39887 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.029089 0.0254622 79 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 7.88 vpr 62.83 MiB -1 -1 0.23 17884 1 0.03 -1 -1 30464 -1 -1 12 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 24.3 MiB 2.24 638 11925 5003 6558 364 62.8 MiB 0.10 0.00 3.74472 -112.927 -3.74472 3.74472 0.67 0.000576221 0.000535909 0.04515 0.0420228 38 2139 45 6.95648e+06 173708 678818. 2348.85 2.79 0.178446 0.155442 26626 170182 -1 1635 23 1259 1790 163948 37471 3.13146 3.13146 -111.948 -3.13146 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.025693 0.0223128 64 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 6.52 vpr 63.46 MiB -1 -1 0.24 18240 1 0.03 -1 -1 30116 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64984 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 24.5 MiB 1.37 684 15017 5927 7080 2010 63.5 MiB 0.11 0.00 3.20268 -108.628 -3.20268 3.20268 0.69 0.000691938 0.000641237 0.048263 0.0444098 50 1963 50 6.95648e+06 318465 902133. 3121.57 2.15 0.187117 0.162781 28642 213929 -1 1695 22 1320 2119 185443 42813 2.83647 2.83647 -109.921 -2.83647 0 0 1.08113e+06 3740.92 0.28 0.08 0.18 -1 -1 0.28 0.0300341 0.0262141 71 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 15.22 vpr 63.48 MiB -1 -1 0.25 18376 1 0.03 -1 -1 30308 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65004 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 24.5 MiB 1.75 793 8876 3629 4933 314 63.5 MiB 0.09 0.00 3.995 -134.834 -3.995 3.995 0.69 0.000809287 0.000725534 0.0426269 0.0395154 38 2580 38 6.95648e+06 217135 678818. 2348.85 10.53 0.352477 0.303083 26626 170182 -1 1938 20 1471 1968 167821 34556 3.58422 3.58422 -139.229 -3.58422 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0319824 0.0278557 73 91 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 6.06 vpr 63.07 MiB -1 -1 0.21 18108 1 0.03 -1 -1 30348 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 24.5 MiB 1.22 529 10304 4263 5737 304 63.1 MiB 0.09 0.00 2.9023 -97.7367 -2.9023 2.9023 0.68 0.000616115 0.000572059 0.0430039 0.0399508 46 1735 22 6.95648e+06 144757 828058. 2865.25 1.95 0.165988 0.144532 28066 200906 -1 1310 20 1149 1778 124339 30875 2.91172 2.91172 -102.967 -2.91172 0 0 1.01997e+06 3529.29 0.26 0.06 0.17 -1 -1 0.26 0.0245533 0.0213586 57 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 8.09 vpr 63.02 MiB -1 -1 0.21 17996 1 0.03 -1 -1 30212 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 24.4 MiB 1.42 759 10819 2915 6394 1510 63.0 MiB 0.10 0.00 4.04348 -128.875 -4.04348 4.04348 0.68 0.000618229 0.00057469 0.0438171 0.0407937 44 2276 48 6.95648e+06 159232 787024. 2723.27 3.79 0.247707 0.213903 27778 195446 -1 1861 20 1289 1885 182177 37686 3.73872 3.73872 -131.392 -3.73872 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0248827 0.0217402 70 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 8.13 vpr 63.34 MiB -1 -1 0.19 18444 1 0.03 -1 -1 30196 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 24.4 MiB 1.30 714 10370 4100 5259 1011 63.3 MiB 0.09 0.00 4.19403 -126.395 -4.19403 4.19403 0.67 0.000656995 0.000610953 0.0434992 0.0404789 50 2180 23 6.95648e+06 202660 902133. 3121.57 3.87 0.272286 0.234821 28642 213929 -1 1786 21 1591 2167 173769 41974 4.23792 4.23792 -132.209 -4.23792 0 0 1.08113e+06 3740.92 0.27 0.08 0.19 -1 -1 0.27 0.0277248 0.0242576 79 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 8.15 vpr 63.11 MiB -1 -1 0.16 18336 1 0.03 -1 -1 30232 -1 -1 21 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 24.5 MiB 1.07 662 11118 4280 5305 1533 63.1 MiB 0.09 0.00 4.24388 -117.238 -4.24388 4.24388 0.69 0.00065258 0.000606486 0.0431933 0.0402023 46 2122 28 6.95648e+06 303989 828058. 2865.25 4.20 0.269663 0.232008 28066 200906 -1 1448 23 1164 1690 119756 28843 3.68766 3.68766 -111.969 -3.68766 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0289341 0.025164 71 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 9.26 vpr 63.73 MiB -1 -1 0.25 18140 1 0.03 -1 -1 30372 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 24.9 MiB 1.39 793 12030 5031 6445 554 63.7 MiB 0.11 0.00 4.95915 -156.293 -4.95915 4.95915 0.68 0.000752906 0.000699056 0.0518231 0.0478155 54 2485 43 6.95648e+06 202660 949917. 3286.91 4.64 0.323805 0.279305 29506 232905 -1 1950 36 2625 3709 532287 182783 4.44822 4.44822 -154.247 -4.44822 0 0 1.17392e+06 4061.99 0.29 0.19 0.20 -1 -1 0.29 0.0494347 0.042959 89 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 6.38 vpr 62.59 MiB -1 -1 0.22 17764 1 0.03 -1 -1 30096 -1 -1 13 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 24.0 MiB 2.19 535 10476 4313 5711 452 62.6 MiB 0.08 0.00 3.50918 -93.5706 -3.50918 3.50918 0.68 0.000528618 0.000492172 0.036606 0.0341126 38 1790 27 6.95648e+06 188184 678818. 2348.85 1.37 0.121997 0.1067 26626 170182 -1 1375 22 1021 1643 115576 25319 3.13712 3.13712 -104.072 -3.13712 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0269759 0.0233925 54 4 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 8.51 vpr 63.52 MiB -1 -1 0.25 18320 1 0.03 -1 -1 30340 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65044 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 24.8 MiB 1.08 808 15533 3949 11126 458 63.5 MiB 0.14 0.00 3.75239 -135.532 -3.75239 3.75239 0.69 0.000770879 0.000714094 0.0632521 0.0586609 38 2695 48 6.95648e+06 361892 678818. 2348.85 4.40 0.253192 0.221022 26626 170182 -1 2028 23 1857 2478 205439 43685 3.99306 3.99306 -149.548 -3.99306 0 0 902133. 3121.57 0.28 0.08 0.15 -1 -1 0.28 0.0299646 0.026461 81 90 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 9.51 vpr 63.23 MiB -1 -1 0.25 18128 1 0.03 -1 -1 30140 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 24.6 MiB 2.54 581 11544 4905 6301 338 63.2 MiB 0.11 0.00 2.99685 -114.691 -2.99685 2.99685 0.68 0.000711409 0.000660425 0.0558083 0.0518415 40 2161 45 6.95648e+06 144757 706193. 2443.58 4.02 0.330268 0.284388 26914 176310 -1 1891 22 1683 2320 245662 55959 3.54322 3.54322 -139.792 -3.54322 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0303273 0.0263813 61 96 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 7.79 vpr 63.62 MiB -1 -1 0.20 18136 1 0.03 -1 -1 30280 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65152 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 24.7 MiB 1.21 727 10670 3941 5494 1235 63.6 MiB 0.10 0.00 4.11943 -125.455 -4.11943 4.11943 0.68 0.000707346 0.000656813 0.0429046 0.0398939 46 2249 26 6.95648e+06 318465 828058. 2865.25 3.61 0.245909 0.212303 28066 200906 -1 1805 21 1115 1739 127394 30050 3.50106 3.50106 -121.691 -3.50106 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0294046 0.0256711 75 60 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 6.79 vpr 63.88 MiB -1 -1 0.20 18192 1 0.03 -1 -1 30328 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65412 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 25.0 MiB 1.69 1022 12247 3468 7038 1741 63.9 MiB 0.13 0.00 6.03007 -174.097 -6.03007 6.03007 0.70 0.000776578 0.000720812 0.0602916 0.055999 48 2938 26 6.95648e+06 217135 865456. 2994.66 2.00 0.190823 0.167848 28354 207349 -1 2458 22 2142 3106 309004 63595 4.95685 4.95685 -169.055 -4.95685 0 0 1.05005e+06 3633.38 0.27 0.11 0.18 -1 -1 0.27 0.0338821 0.029692 95 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 6.70 vpr 62.74 MiB -1 -1 0.22 18044 1 0.02 -1 -1 30176 -1 -1 11 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 30 32 224 207 1 131 73 17 17 289 -1 unnamed_device 24.2 MiB 2.06 529 10865 3546 5596 1723 62.7 MiB 0.08 0.00 2.69765 -94.3472 -2.69765 2.69765 0.68 0.000501424 0.000467135 0.037594 0.0350413 34 1837 48 6.95648e+06 159232 618332. 2139.56 1.87 0.147435 0.12805 25762 151098 -1 1352 19 863 1089 119179 24854 2.36662 2.36662 -94.7935 -2.36662 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0193559 0.0168561 52 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 10.61 vpr 63.01 MiB -1 -1 0.23 17968 1 0.03 -1 -1 30460 -1 -1 11 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 30 32 286 239 1 137 73 17 17 289 -1 unnamed_device 24.5 MiB 1.77 541 7673 3127 4256 290 63.0 MiB 0.07 0.00 3.61654 -109.463 -3.61654 3.61654 0.68 0.000596938 0.00055511 0.0322437 0.0300152 36 1999 40 6.95648e+06 159232 648988. 2245.63 5.99 0.25191 0.215787 26050 158493 -1 1573 27 1433 2096 285043 86529 3.15927 3.15927 -115.804 -3.15927 0 0 828058. 2865.25 0.22 0.11 0.14 -1 -1 0.22 0.0323562 0.0282217 55 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 6.69 vpr 62.89 MiB -1 -1 0.20 17920 1 0.03 -1 -1 30160 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 24.4 MiB 0.38 540 6894 2748 3891 255 62.9 MiB 0.06 0.00 3.28706 -107.534 -3.28706 3.28706 0.67 0.000615352 0.000572046 0.0294774 0.0274304 48 1927 37 6.95648e+06 144757 865456. 2994.66 3.41 0.167173 0.144451 28354 207349 -1 1516 32 1414 2301 357477 110572 3.36277 3.36277 -117.521 -3.36277 0 0 1.05005e+06 3633.38 0.27 0.13 0.18 -1 -1 0.27 0.0359208 0.0310162 59 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 6.48 vpr 62.61 MiB -1 -1 0.24 18056 1 0.03 -1 -1 30140 -1 -1 18 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 24.0 MiB 0.45 429 8607 3204 4152 1251 62.6 MiB 0.06 0.00 3.25923 -75.9549 -3.25923 3.25923 0.67 0.000471674 0.000438944 0.0273212 0.0253976 38 1447 26 6.95648e+06 260562 678818. 2348.85 3.22 0.168869 0.14515 26626 170182 -1 1136 22 909 1447 102359 23567 2.91262 2.91262 -83.008 -2.91262 0 0 902133. 3121.57 0.23 0.05 0.14 -1 -1 0.23 0.0206039 0.0178652 53 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 15.37 vpr 63.59 MiB -1 -1 0.26 18292 1 0.03 -1 -1 30384 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65112 32 32 376 307 1 179 76 17 17 289 -1 unnamed_device 24.6 MiB 2.06 770 10636 4042 5174 1420 63.6 MiB 0.10 0.00 4.01326 -127.68 -4.01326 4.01326 0.68 0.000720075 0.000668408 0.0506933 0.047101 44 2789 32 6.95648e+06 173708 787024. 2723.27 10.33 0.313808 0.270681 27778 195446 -1 1975 23 1682 2784 223500 47848 4.07572 4.07572 -136.131 -4.07572 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0323408 0.0281956 72 72 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 7.42 vpr 63.52 MiB -1 -1 0.26 18136 1 0.03 -1 -1 30288 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 24.5 MiB 1.04 746 9540 3860 5304 376 63.5 MiB 0.09 0.00 4.09438 -138.115 -4.09438 4.09438 0.70 0.000764414 0.000709562 0.0449095 0.0416968 38 2658 29 6.95648e+06 246087 678818. 2348.85 3.36 0.209519 0.182325 26626 170182 -1 1960 20 1624 2159 180927 39751 3.71392 3.71392 -137.191 -3.71392 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0306974 0.0268329 80 90 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 8.30 vpr 63.61 MiB -1 -1 0.25 18100 1 0.03 -1 -1 30384 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65132 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 24.6 MiB 1.68 851 13599 5123 6301 2175 63.6 MiB 0.12 0.00 5.05471 -146.645 -5.05471 5.05471 0.68 0.000708559 0.000658712 0.0591872 0.0550004 40 2973 50 6.99608e+06 220735 706193. 2443.58 3.65 0.236087 0.20602 26914 176310 -1 2391 21 1860 2633 243329 56741 4.97901 4.97901 -158.616 -4.97901 0 0 926341. 3205.33 0.24 0.09 0.15 -1 -1 0.24 0.0293826 0.0256582 88 50 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 6.16 vpr 63.34 MiB -1 -1 0.25 18332 1 0.03 -1 -1 30316 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 30 32 363 293 1 224 80 17 17 289 -1 unnamed_device 24.3 MiB 0.89 900 10744 3918 5217 1609 63.3 MiB 0.10 0.00 4.91636 -147.436 -4.91636 4.91636 0.68 0.00070586 0.000655321 0.0465828 0.0432681 46 2747 23 6.99608e+06 264882 828058. 2865.25 2.26 0.185814 0.161803 28066 200906 -1 2084 23 2150 3223 242281 52439 4.53109 4.53109 -146.905 -4.53109 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0315369 0.0275057 101 63 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 7.86 vpr 62.84 MiB -1 -1 0.23 18208 1 0.03 -1 -1 30308 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 24.3 MiB 0.81 763 12030 3995 5720 2315 62.8 MiB 0.10 0.00 3.55089 -109.995 -3.55089 3.55089 0.80 0.00062597 0.00058197 0.0479003 0.0445358 44 2462 46 6.99608e+06 206020 787024. 2723.27 4.02 0.248834 0.214858 27778 195446 -1 1773 23 1312 1775 138732 30275 3.49336 3.49336 -113.946 -3.49336 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0277031 0.0240845 76 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 5.88 vpr 62.92 MiB -1 -1 0.18 18256 1 0.03 -1 -1 30256 -1 -1 16 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 29 32 308 248 1 182 77 17 17 289 -1 unnamed_device 24.3 MiB 0.98 725 10998 3857 5366 1775 62.9 MiB 0.09 0.00 4.23493 -118.016 -4.23493 4.23493 0.68 0.000632513 0.000587889 0.0449638 0.0418083 44 2522 28 6.99608e+06 235451 787024. 2723.27 2.02 0.151947 0.133145 27778 195446 -1 1857 24 1459 2384 167378 38752 3.95812 3.95812 -125.643 -3.95812 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0291449 0.0253372 78 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 11.15 vpr 63.32 MiB -1 -1 0.23 18132 1 0.03 -1 -1 30400 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 336 268 1 193 78 17 17 289 -1 unnamed_device 24.4 MiB 2.82 864 10536 4352 5849 335 63.3 MiB 0.10 0.00 4.46745 -139.506 -4.46745 4.46745 0.72 0.000685913 0.000636325 0.0455526 0.0423186 44 3120 46 6.99608e+06 206020 787024. 2723.27 5.33 0.299625 0.258698 27778 195446 -1 2219 21 1490 2510 218025 47308 4.36971 4.36971 -150.636 -4.36971 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0283417 0.0247472 81 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 11.91 vpr 63.52 MiB -1 -1 0.25 18244 1 0.03 -1 -1 30316 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65048 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 24.4 MiB 3.43 959 11981 4937 6553 491 63.5 MiB 0.11 0.00 3.38926 -120.16 -3.38926 3.38926 0.67 0.000708891 0.000657102 0.051428 0.0476881 60 2244 24 6.99608e+06 250167 1.01997e+06 3529.29 5.30 0.299101 0.258421 30658 258169 -1 1762 21 1410 2064 123116 29745 3.25596 3.25596 -115.922 -3.25596 0 0 1.27783e+06 4421.56 0.33 0.07 0.24 -1 -1 0.33 0.0298554 0.026117 97 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 5.49 vpr 62.68 MiB -1 -1 0.18 17896 1 0.03 -1 -1 30588 -1 -1 15 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64188 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 24.0 MiB 0.81 493 10924 4387 5255 1282 62.7 MiB 0.08 0.00 3.74847 -105.464 -3.74847 3.74847 0.68 0.000552856 0.000515081 0.041063 0.0382139 44 1722 34 6.99608e+06 220735 787024. 2723.27 1.88 0.163426 0.141957 27778 195446 -1 1171 21 1171 1713 134252 32052 3.02191 3.02191 -101.224 -3.02191 0 0 997811. 3452.63 0.26 0.06 0.13 -1 -1 0.26 0.0231677 0.0200941 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 13.08 vpr 62.75 MiB -1 -1 0.22 17736 1 0.03 -1 -1 30076 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 24.0 MiB 0.35 646 12568 4471 6001 2096 62.7 MiB 0.09 0.00 2.86205 -89.6785 -2.86205 2.86205 0.70 0.000596601 0.000553439 0.0404695 0.0376206 40 2046 44 6.99608e+06 367892 706193. 2443.58 9.90 0.301415 0.259343 26914 176310 -1 1679 21 1162 1930 167655 41587 3.23737 3.23737 -103.037 -3.23737 0 0 926341. 3205.33 0.24 0.07 0.15 -1 -1 0.24 0.0243749 0.021143 69 4 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 5.52 vpr 63.03 MiB -1 -1 0.24 18324 1 0.03 -1 -1 30284 -1 -1 14 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 24.3 MiB 0.86 971 11487 3139 6320 2028 63.0 MiB 0.10 0.00 3.37244 -119.224 -3.37244 3.37244 0.68 0.000629846 0.000585743 0.0471929 0.0439202 38 2510 23 6.99608e+06 206020 678818. 2348.85 1.79 0.174452 0.152271 26626 170182 -1 2071 18 1660 2239 168297 35771 3.50741 3.50741 -126.791 -3.50741 0 0 902133. 3121.57 0.24 0.07 0.15 -1 -1 0.24 0.023563 0.0205951 87 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 5.84 vpr 62.80 MiB -1 -1 0.21 17860 1 0.03 -1 -1 30184 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 24.2 MiB 0.85 721 12465 5225 6975 265 62.8 MiB 0.10 0.00 3.92192 -133.493 -3.92192 3.92192 0.68 0.000623083 0.000579312 0.0497209 0.0462627 38 2622 30 6.99608e+06 191304 678818. 2348.85 2.15 0.177739 0.155328 26626 170182 -1 1885 19 1498 1863 167052 35482 3.33856 3.33856 -127.368 -3.33856 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0241382 0.021098 75 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 12.33 vpr 63.18 MiB -1 -1 0.24 18200 1 0.03 -1 -1 30536 -1 -1 14 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 24.3 MiB 1.80 754 13516 5712 6664 1140 63.2 MiB 0.11 0.00 3.97461 -128.358 -3.97461 3.97461 0.67 0.000622409 0.000576903 0.0535596 0.0497265 38 2495 37 6.99608e+06 206020 678818. 2348.85 7.61 0.290368 0.250669 26626 170182 -1 1877 19 1440 1936 144531 31810 4.1193 4.1193 -132.916 -4.1193 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0237811 0.0207679 83 63 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 7.08 vpr 62.69 MiB -1 -1 0.22 18040 1 0.02 -1 -1 30244 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 24.2 MiB 0.65 849 10977 2887 7437 653 62.7 MiB 0.09 0.00 3.07868 -112.05 -3.07868 3.07868 0.68 0.000590888 0.000550152 0.043241 0.0402983 40 2073 21 6.99608e+06 161872 706193. 2443.58 3.50 0.212153 0.183337 26914 176310 -1 1903 21 1177 1516 143718 29819 2.98387 2.98387 -120.376 -2.98387 0 0 926341. 3205.33 0.26 0.07 0.17 -1 -1 0.26 0.0244678 0.0212788 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 8.54 vpr 63.32 MiB -1 -1 0.24 18348 1 0.03 -1 -1 30304 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 24.3 MiB 0.79 843 12585 5259 6846 480 63.3 MiB 0.11 0.00 3.78992 -128.054 -3.78992 3.78992 0.68 0.000698463 0.000649154 0.0541061 0.0502953 46 2868 30 6.99608e+06 220735 828058. 2865.25 4.74 0.279126 0.241659 28066 200906 -1 2083 23 1994 2972 236374 51689 3.48381 3.48381 -130.891 -3.48381 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0310551 0.0270907 87 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 5.96 vpr 63.34 MiB -1 -1 0.25 18152 1 0.03 -1 -1 30292 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 24.3 MiB 0.79 1008 11981 3623 6079 2279 63.3 MiB 0.11 0.00 4.68712 -142.46 -4.68712 4.68712 0.68 0.000704449 0.000654191 0.0512014 0.0475528 54 2354 26 6.99608e+06 250167 949917. 3286.91 2.08 0.194053 0.169473 29506 232905 -1 1818 25 2094 2851 202373 47066 4.17491 4.17491 -142.251 -4.17491 0 0 1.17392e+06 4061.99 0.29 0.09 0.22 -1 -1 0.29 0.0339712 0.0295427 97 61 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 12.01 vpr 62.53 MiB -1 -1 0.22 18148 1 0.03 -1 -1 30188 -1 -1 13 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 29 32 248 215 1 154 74 17 17 289 -1 unnamed_device 23.9 MiB 3.45 611 8754 3597 4747 410 62.5 MiB 0.07 0.00 3.0585 -88.5437 -3.0585 3.0585 0.74 0.000542289 0.000504608 0.0328337 0.0305834 38 1880 28 6.99608e+06 191304 678818. 2348.85 5.70 0.231168 0.198232 26626 170182 -1 1427 26 1171 1648 178027 64766 2.89347 2.89347 -95.7987 -2.89347 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0268205 0.0232084 63 27 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 8.98 vpr 63.39 MiB -1 -1 0.21 18148 1 0.03 -1 -1 30396 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 24.4 MiB 1.40 1140 12464 4408 6591 1465 63.4 MiB 0.12 0.00 3.78769 -130.542 -3.78769 3.78769 0.68 0.000718875 0.000666763 0.054901 0.0509731 42 3336 48 6.99608e+06 235451 744469. 2576.02 4.59 0.311533 0.269201 27202 183097 -1 2553 23 2137 3282 294346 60400 3.53451 3.53451 -137.204 -3.53451 0 0 949917. 3286.91 0.24 0.10 0.16 -1 -1 0.24 0.03217 0.0280825 96 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 5.79 vpr 63.20 MiB -1 -1 0.13 18236 1 0.03 -1 -1 30080 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 24.3 MiB 0.72 918 13768 4694 7034 2040 63.2 MiB 0.12 0.00 4.0525 -128.935 -4.0525 4.0525 0.68 0.000691676 0.000643159 0.0583607 0.0543006 38 2783 48 6.99608e+06 220735 678818. 2348.85 2.23 0.190833 0.167457 26626 170182 -1 2142 23 1730 2375 236394 51694 3.25321 3.25321 -123.43 -3.25321 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0315588 0.0276291 84 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 8.07 vpr 63.22 MiB -1 -1 0.19 18216 1 0.03 -1 -1 30228 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 24.3 MiB 0.77 903 11064 3444 5931 1689 63.2 MiB 0.10 0.00 3.21889 -121.244 -3.21889 3.21889 0.69 0.000645739 0.000599563 0.0446835 0.041548 44 2749 36 6.99608e+06 220735 787024. 2723.27 4.36 0.245294 0.212054 27778 195446 -1 2055 22 1814 2261 190479 41538 3.07012 3.07012 -121.754 -3.07012 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0278241 0.0242211 89 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 7.52 vpr 62.38 MiB -1 -1 0.17 18188 1 0.03 -1 -1 30280 -1 -1 10 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63872 30 32 222 206 1 133 72 17 17 289 -1 unnamed_device 23.9 MiB 1.48 489 10949 4586 6034 329 62.4 MiB 0.08 0.00 2.30246 -84.2954 -2.30246 2.30246 0.69 0.000496861 0.000462021 0.0385301 0.0358684 36 1686 45 6.99608e+06 147157 648988. 2245.63 3.32 0.190432 0.164295 26050 158493 -1 1183 16 756 833 72235 17268 2.42913 2.42913 -91.9913 -2.42913 0 0 828058. 2865.25 0.22 0.04 0.14 -1 -1 0.22 0.0167415 0.0146298 53 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 11.09 vpr 62.72 MiB -1 -1 0.21 17960 1 0.03 -1 -1 30556 -1 -1 13 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 24.1 MiB 3.02 914 8396 2822 4710 864 62.7 MiB 0.09 0.00 4.11252 -133.321 -4.11252 4.11252 0.73 0.000613327 0.000570216 0.0378787 0.0351104 36 2304 25 6.99608e+06 191304 648988. 2245.63 5.08 0.233722 0.201318 26050 158493 -1 2051 24 1606 2280 285081 73882 3.73061 3.73061 -141.603 -3.73061 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0279508 0.0242473 72 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 8.75 vpr 63.24 MiB -1 -1 0.19 18364 1 0.03 -1 -1 30412 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 24.3 MiB 1.09 753 13260 4777 6497 1986 63.2 MiB 0.12 0.00 3.96428 -130.083 -3.96428 3.96428 0.68 0.000810026 0.000747345 0.0561233 0.0519578 46 2675 50 6.99608e+06 294314 828058. 2865.25 4.71 0.304444 0.263312 28066 200906 -1 1829 21 1870 2722 202521 48522 3.86415 3.86415 -137.674 -3.86415 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0280878 0.024654 88 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 8.36 vpr 63.64 MiB -1 -1 0.17 18272 1 0.03 -1 -1 30284 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 24.9 MiB 1.47 1213 11432 3690 6927 815 63.6 MiB 0.11 0.00 4.63424 -146.103 -4.63424 4.63424 0.68 0.000722445 0.000671419 0.0507366 0.0471573 44 3169 22 6.99608e+06 235451 787024. 2723.27 3.95 0.266643 0.230595 27778 195446 -1 2575 19 1666 2486 201192 40418 3.84232 3.84232 -140.174 -3.84232 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0279447 0.0244555 100 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 5.13 vpr 62.25 MiB -1 -1 0.10 17952 1 0.02 -1 -1 30548 -1 -1 13 26 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 26 32 190 182 1 122 71 17 17 289 -1 unnamed_device 23.7 MiB 0.73 398 7809 3208 4118 483 62.3 MiB 0.05 0.00 2.6826 -76.1752 -2.6826 2.6826 0.68 0.000426669 0.000395708 0.0242135 0.0225137 38 1303 33 6.99608e+06 191304 678818. 2348.85 1.76 0.115774 0.100076 26626 170182 -1 963 20 721 809 72420 16775 2.30307 2.30307 -73.7861 -2.30307 0 0 902133. 3121.57 0.23 0.05 0.15 -1 -1 0.23 0.0172081 0.0149655 52 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 7.95 vpr 62.75 MiB -1 -1 0.22 17764 1 0.03 -1 -1 30292 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 24.0 MiB 0.87 705 12078 4998 6546 534 62.7 MiB 0.10 0.00 4.4821 -114.357 -4.4821 4.4821 0.68 0.000612878 0.000569545 0.046022 0.0427892 38 2698 27 6.99608e+06 220735 678818. 2348.85 4.17 0.178496 0.155754 26626 170182 -1 1954 23 1419 2416 197936 43766 3.78296 3.78296 -121.838 -3.78296 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0277355 0.0241346 66 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 4.26 vpr 62.20 MiB -1 -1 0.19 17384 1 0.03 -1 -1 29952 -1 -1 8 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63692 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 23.5 MiB 0.22 437 9906 4129 5591 186 62.2 MiB 0.06 0.00 2.05011 -68.4317 -2.05011 2.05011 0.68 0.000422912 0.000392752 0.0294598 0.0273625 36 1207 35 6.99608e+06 117725 648988. 2245.63 1.35 0.113215 0.0984966 26050 158493 -1 911 19 566 682 56435 12806 2.02348 2.02348 -70.7598 -2.02348 0 0 828058. 2865.25 0.22 0.04 0.14 -1 -1 0.22 0.0163919 0.0142994 42 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 7.30 vpr 62.76 MiB -1 -1 0.24 17896 1 0.03 -1 -1 30144 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 24.2 MiB 0.92 787 11034 4537 6125 372 62.8 MiB 0.10 0.00 4.53486 -122.805 -4.53486 4.53486 0.68 0.000633007 0.000588573 0.0444814 0.0413798 38 2644 43 6.99608e+06 206020 678818. 2348.85 3.46 0.187567 0.162934 26626 170182 -1 1864 29 1489 2059 268194 93673 4.13361 4.13361 -127.157 -4.13361 0 0 902133. 3121.57 0.23 0.11 0.15 -1 -1 0.23 0.0338474 0.0293608 73 24 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 6.62 vpr 63.03 MiB -1 -1 0.19 17756 1 0.03 -1 -1 30360 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 24.5 MiB 0.50 752 10873 3818 5551 1504 63.0 MiB 0.11 0.00 2.96725 -98.6672 -2.96725 2.96725 0.68 0.000634665 0.0005904 0.0478045 0.0444445 38 2710 37 6.99608e+06 309029 678818. 2348.85 3.24 0.189772 0.165405 26626 170182 -1 1920 21 1417 2326 158600 36999 3.12812 3.12812 -112.923 -3.12812 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0261261 0.0228111 74 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 7.68 vpr 63.16 MiB -1 -1 0.22 18164 1 0.03 -1 -1 30284 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 24.2 MiB 1.07 867 7853 3139 4431 283 63.2 MiB 0.08 0.00 4.12347 -127.886 -4.12347 4.12347 0.72 0.000532242 0.00048631 0.0337816 0.0312944 46 2738 41 6.99608e+06 220735 828058. 2865.25 3.63 0.192674 0.166984 28066 200906 -1 2181 22 1719 2587 190254 43419 3.85501 3.85501 -128.799 -3.85501 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0290882 0.025326 87 50 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 8.93 vpr 62.89 MiB -1 -1 0.21 18000 1 0.02 -1 -1 30060 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 24.3 MiB 2.22 674 9356 2870 4551 1935 62.9 MiB 0.08 0.00 3.13575 -106.667 -3.13575 3.13575 0.69 0.000603667 0.000561981 0.0374729 0.0348761 40 2217 49 6.99608e+06 176588 706193. 2443.58 3.85 0.255502 0.219666 26914 176310 -1 1797 20 1266 1757 166502 36883 3.25457 3.25457 -122.85 -3.25457 0 0 926341. 3205.33 0.24 0.07 0.15 -1 -1 0.24 0.0241186 0.0210075 69 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 8.22 vpr 62.69 MiB -1 -1 0.22 18116 1 0.03 -1 -1 30292 -1 -1 14 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 24.0 MiB 1.27 589 9996 4089 5442 465 62.7 MiB 0.08 0.00 3.74777 -109.42 -3.74777 3.74777 0.68 0.000565684 0.000525655 0.0373051 0.0347224 48 1951 22 6.99608e+06 206020 865456. 2994.66 4.02 0.204522 0.176384 28354 207349 -1 1463 20 1190 1805 156689 38956 3.24581 3.24581 -110.842 -3.24581 0 0 1.05005e+06 3633.38 0.27 0.07 0.18 -1 -1 0.27 0.0225715 0.0196352 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 9.52 vpr 62.79 MiB -1 -1 0.24 18140 1 0.03 -1 -1 30068 -1 -1 18 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 24.2 MiB 2.64 566 10702 3839 4998 1865 62.8 MiB 0.08 0.00 3.27594 -101.475 -3.27594 3.27594 0.67 0.000558107 0.000518343 0.0379818 0.0353336 42 2228 35 6.99608e+06 264882 744469. 2576.02 3.96 0.239772 0.205746 27202 183097 -1 1502 22 1294 2101 157785 36966 3.36181 3.36181 -108.095 -3.36181 0 0 949917. 3286.91 0.25 0.07 0.16 -1 -1 0.25 0.0241068 0.0209217 70 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 7.08 vpr 62.65 MiB -1 -1 0.20 17772 1 0.03 -1 -1 30264 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 24.0 MiB 0.40 510 11079 3828 5373 1878 62.7 MiB 0.09 0.00 3.37459 -106.177 -3.37459 3.37459 0.68 0.000565827 0.000526454 0.042625 0.0397107 44 1632 21 6.99608e+06 147157 787024. 2723.27 3.81 0.211861 0.183311 27778 195446 -1 1255 23 1278 1977 120442 31904 3.03062 3.03062 -110.115 -3.03062 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0251787 0.0218552 58 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 11.90 vpr 62.68 MiB -1 -1 0.24 17872 1 0.03 -1 -1 30468 -1 -1 13 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64188 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 23.9 MiB 0.99 892 8396 1989 5699 708 62.7 MiB 0.07 0.00 3.27018 -109.388 -3.27018 3.27018 0.68 0.000581304 0.000540744 0.032038 0.0298391 36 2529 37 6.99608e+06 191304 648988. 2245.63 8.09 0.250181 0.214663 26050 158493 -1 1957 21 1260 1716 145686 30648 3.10592 3.10592 -115.413 -3.10592 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0242272 0.0210917 69 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 8.34 vpr 62.89 MiB -1 -1 0.25 18084 1 0.03 -1 -1 30344 -1 -1 15 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64396 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 24.2 MiB 1.95 893 11756 3359 7323 1074 62.9 MiB 0.10 0.00 2.90695 -103.76 -2.90695 2.90695 0.68 0.000593611 0.000552602 0.0459979 0.0428254 36 2442 43 6.99608e+06 220735 648988. 2245.63 3.54 0.187169 0.163144 26050 158493 -1 1954 18 1256 1690 139426 28896 3.05912 3.05912 -113.612 -3.05912 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0210485 0.0184402 77 54 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 8.58 vpr 63.45 MiB -1 -1 0.20 18224 1 0.03 -1 -1 30496 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 24.4 MiB 1.04 941 11432 4088 5131 2213 63.4 MiB 0.10 0.00 4.40712 -125.714 -4.40712 4.40712 0.69 0.000738163 0.000685762 0.0515522 0.047914 54 2574 21 6.99608e+06 235451 949917. 3286.91 4.57 0.284028 0.245943 29506 232905 -1 1986 18 1380 2261 147872 35051 3.58842 3.58842 -121.497 -3.58842 0 0 1.17392e+06 4061.99 0.31 0.07 0.22 -1 -1 0.31 0.0283662 0.0250659 92 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 7.06 vpr 63.56 MiB -1 -1 0.25 18328 1 0.03 -1 -1 30356 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 391 311 1 244 82 17 17 289 -1 unnamed_device 24.7 MiB 0.81 1003 12186 4031 5776 2379 63.6 MiB 0.12 0.00 4.3859 -150.052 -4.3859 4.3859 0.68 0.000762386 0.000707906 0.0559035 0.0519869 44 3661 45 6.99608e+06 264882 787024. 2723.27 3.20 0.23513 0.205117 27778 195446 -1 2288 24 2353 3309 249990 56885 4.0015 4.0015 -149.159 -4.0015 0 0 997811. 3452.63 0.26 0.10 0.17 -1 -1 0.26 0.0348263 0.0303706 106 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 5.88 vpr 62.73 MiB -1 -1 0.23 18236 1 0.03 -1 -1 30080 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 24.0 MiB 1.12 879 8134 2173 5187 774 62.7 MiB 0.07 0.00 3.62727 -120.528 -3.62727 3.62727 0.69 0.000594896 0.000553184 0.0328955 0.0306322 36 2423 45 6.99608e+06 161872 648988. 2245.63 1.96 0.144642 0.125723 26050 158493 -1 1996 20 1328 1931 181557 35817 3.48246 3.48246 -125.103 -3.48246 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0236361 0.0205862 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 9.12 vpr 63.68 MiB -1 -1 0.21 18232 1 0.03 -1 -1 30488 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65208 31 32 370 297 1 227 80 17 17 289 -1 unnamed_device 24.7 MiB 0.88 902 12292 4688 5816 1788 63.7 MiB 0.11 0.00 3.65599 -121.612 -3.65599 3.65599 0.67 0.000727121 0.000675209 0.0569105 0.0527786 50 2759 34 6.99608e+06 250167 902133. 3121.57 5.23 0.304515 0.263576 28642 213929 -1 2077 19 1659 2252 180057 42667 3.51907 3.51907 -125.738 -3.51907 0 0 1.08113e+06 3740.92 0.28 0.08 0.22 -1 -1 0.28 0.02785 0.024403 101 61 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 7.38 vpr 63.48 MiB -1 -1 0.25 18132 1 0.03 -1 -1 30232 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65004 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 24.6 MiB 0.98 1028 12636 4939 6150 1547 63.5 MiB 0.12 0.00 5.24621 -161.935 -5.24621 5.24621 0.67 0.000724436 0.000673102 0.0565533 0.0525867 48 3303 37 6.99608e+06 250167 865456. 2994.66 3.31 0.218581 0.190662 28354 207349 -1 2354 33 2920 4225 465806 138121 5.3112 5.3112 -170.393 -5.3112 0 0 1.05005e+06 3633.38 0.27 0.16 0.18 -1 -1 0.27 0.0432746 0.037431 104 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 10.08 vpr 63.38 MiB -1 -1 0.22 18124 1 0.03 -1 -1 30508 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64900 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 24.5 MiB 3.57 968 11981 4242 5473 2266 63.4 MiB 0.12 0.00 5.22958 -165.475 -5.22958 5.22958 0.67 0.000735471 0.000683189 0.0530022 0.0492437 38 4038 49 6.99608e+06 264882 678818. 2348.85 3.51 0.205989 0.180022 26626 170182 -1 2704 22 2314 3311 303781 63787 5.01455 5.01455 -170.12 -5.01455 0 0 902133. 3121.57 0.23 0.14 0.15 -1 -1 0.23 0.0393263 0.0346761 103 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 7.20 vpr 63.49 MiB -1 -1 0.26 18248 1 0.03 -1 -1 30392 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 24.7 MiB 1.97 882 12585 5245 6747 593 63.5 MiB 0.11 0.00 3.91372 -127.244 -3.91372 3.91372 0.67 0.000689469 0.000638139 0.0542311 0.0503753 46 3220 49 6.99608e+06 235451 828058. 2865.25 2.25 0.195535 0.170889 28066 200906 -1 2148 20 1690 2211 184808 39735 3.41986 3.41986 -124.041 -3.41986 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0280043 0.024484 93 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 6.20 vpr 62.77 MiB -1 -1 0.15 17952 1 0.03 -1 -1 30500 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 291 242 1 177 78 17 17 289 -1 unnamed_device 24.2 MiB 1.11 853 9872 3567 4389 1916 62.8 MiB 0.09 0.00 4.1407 -116.233 -4.1407 4.1407 0.68 0.000622525 0.000579241 0.0390158 0.0363222 40 2523 26 6.99608e+06 206020 706193. 2443.58 2.26 0.16527 0.143684 26914 176310 -1 2086 20 1342 1862 174928 36049 3.96232 3.96232 -123.593 -3.96232 0 0 926341. 3205.33 0.24 0.07 0.15 -1 -1 0.24 0.0247406 0.0215883 72 27 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 8.67 vpr 63.89 MiB -1 -1 0.27 18484 1 0.03 -1 -1 30524 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65420 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 24.9 MiB 1.39 1445 14965 4188 8952 1825 63.9 MiB 0.16 0.00 4.92896 -170.692 -4.92896 4.92896 0.70 0.000872834 0.000812089 0.0731754 0.0680412 40 3661 40 6.99608e+06 309029 706193. 2443.58 4.12 0.275788 0.24138 26914 176310 -1 3385 20 2610 3812 343398 69832 4.77544 4.77544 -177.469 -4.77544 0 0 926341. 3205.33 0.24 0.12 0.15 -1 -1 0.24 0.0353872 0.0310039 129 87 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 9.69 vpr 62.64 MiB -1 -1 0.22 18068 1 0.03 -1 -1 30292 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 31 32 261 225 1 160 74 17 17 289 -1 unnamed_device 24.2 MiB 2.95 542 11234 3813 5447 1974 62.6 MiB 0.09 0.00 2.9921 -96.3096 -2.9921 2.9921 0.68 0.000561478 0.000522534 0.0428001 0.039845 44 2071 32 6.99608e+06 161872 787024. 2723.27 3.86 0.247706 0.21305 27778 195446 -1 1288 20 1197 1546 103827 25958 3.08197 3.08197 -102.762 -3.08197 0 0 997811. 3452.63 0.26 0.06 0.17 -1 -1 0.26 0.0232778 0.0203583 65 28 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 6.24 vpr 63.28 MiB -1 -1 0.26 18424 1 0.03 -1 -1 30140 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 24.3 MiB 0.80 912 12694 5540 6748 406 63.3 MiB 0.11 0.00 4.60267 -146.673 -4.60267 4.60267 0.72 0.000687599 0.000639951 0.0551183 0.0512899 48 2598 24 6.99608e+06 220735 865456. 2994.66 2.31 0.192008 0.168087 28354 207349 -1 2041 22 1747 2529 208572 44467 4.26401 4.26401 -140.32 -4.26401 0 0 1.05005e+06 3633.38 0.30 0.09 0.18 -1 -1 0.30 0.029553 0.0258106 85 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 7.72 vpr 63.29 MiB -1 -1 0.22 18252 1 0.03 -1 -1 30312 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 24.3 MiB 1.34 945 13430 5690 7168 572 63.3 MiB 0.12 0.00 3.78685 -125.526 -3.78685 3.78685 0.70 0.000699007 0.000640156 0.0577587 0.053592 46 2883 38 6.99608e+06 220735 828058. 2865.25 3.39 0.212827 0.185578 28066 200906 -1 2024 20 1406 2136 157327 35923 3.43852 3.43852 -123.865 -3.43852 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0277235 0.024243 91 53 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 13.53 vpr 62.61 MiB -1 -1 0.22 17724 1 0.03 -1 -1 30172 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 291 230 1 167 80 17 17 289 -1 unnamed_device 24.1 MiB 0.79 698 11776 4112 5155 2509 62.6 MiB 0.10 0.00 4.31309 -119.613 -4.31309 4.31309 0.72 0.000624215 0.000580364 0.0473905 0.0440873 40 2369 28 6.99608e+06 235451 706193. 2443.58 9.83 0.301634 0.259934 26914 176310 -1 2009 23 1477 2518 249326 68662 4.26966 4.26966 -133.049 -4.26966 0 0 926341. 3205.33 0.24 0.10 0.16 -1 -1 0.24 0.0303984 0.0266719 69 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 17.45 vpr 63.26 MiB -1 -1 0.23 18108 1 0.03 -1 -1 30412 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64780 32 32 353 287 1 205 79 17 17 289 -1 unnamed_device 24.2 MiB 1.27 862 12585 4753 5708 2124 63.3 MiB 0.12 0.00 4.19608 -127.939 -4.19608 4.19608 0.68 0.000697465 0.000647605 0.0547042 0.0508222 38 3230 48 6.99608e+06 220735 678818. 2348.85 13.22 0.379394 0.327216 26626 170182 -1 2128 19 1557 2138 182030 38940 3.23321 3.23321 -118.635 -3.23321 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.027071 0.023698 90 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 8.43 vpr 63.35 MiB -1 -1 0.24 18212 1 0.03 -1 -1 30304 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 24.3 MiB 1.56 946 11402 4534 5168 1700 63.4 MiB 0.11 0.00 3.61665 -125.974 -3.61665 3.61665 0.68 0.000713295 0.000660621 0.0506747 0.0470515 40 3373 27 6.99608e+06 220735 706193. 2443.58 3.92 0.200571 0.175257 26914 176310 -1 2720 22 1775 2673 249256 52847 3.65666 3.65666 -138.794 -3.65666 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0307386 0.0268369 93 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 7.43 vpr 63.57 MiB -1 -1 0.18 18220 1 0.03 -1 -1 30248 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 24.7 MiB 2.08 1092 13152 5486 7241 425 63.6 MiB 0.13 0.00 3.81447 -129.917 -3.81447 3.81447 0.68 0.0007539 0.000697415 0.0601056 0.0558523 46 2925 27 6.99608e+06 235451 828058. 2865.25 2.38 0.210817 0.184352 28066 200906 -1 2278 19 1796 2390 177921 42101 3.34751 3.34751 -126.123 -3.34751 0 0 1.01997e+06 3529.29 0.28 0.08 0.17 -1 -1 0.28 0.0265054 0.0236087 101 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 13.48 vpr 62.96 MiB -1 -1 0.21 17980 1 0.03 -1 -1 30308 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64476 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 24.3 MiB 1.03 751 10204 3498 4965 1741 63.0 MiB 0.09 0.00 4.48113 -123.015 -4.48113 4.48113 0.70 0.000638862 0.000592321 0.0418086 0.0387887 40 2686 32 6.99608e+06 206020 706193. 2443.58 9.56 0.313297 0.269703 26914 176310 -1 2024 24 1488 2250 174372 40440 4.13042 4.13042 -131.697 -4.13042 0 0 926341. 3205.33 0.24 0.08 0.16 -1 -1 0.24 0.0295542 0.0256267 74 24 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 7.44 vpr 63.13 MiB -1 -1 0.25 18264 1 0.03 -1 -1 30116 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 319 257 1 193 77 17 17 289 -1 unnamed_device 24.2 MiB 1.86 789 11161 3588 5346 2227 63.1 MiB 0.10 0.00 4.08638 -125.107 -4.08638 4.08638 0.63 0.000653365 0.000607436 0.0472488 0.0439479 40 2671 45 6.99608e+06 191304 706193. 2443.58 2.69 0.197172 0.171649 26914 176310 -1 2229 20 1798 2408 237570 50974 3.98701 3.98701 -139.933 -3.98701 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0262954 0.022954 81 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 8.01 vpr 63.66 MiB -1 -1 0.24 18108 1 0.03 -1 -1 30340 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 24.6 MiB 0.83 960 12923 4769 6489 1665 63.7 MiB 0.12 0.00 4.33001 -137.493 -4.33001 4.33001 0.68 0.000730137 0.000678149 0.0579056 0.0538408 46 3262 28 6.99608e+06 235451 828058. 2865.25 4.17 0.275707 0.239069 28066 200906 -1 2240 21 1802 2662 180385 42129 4.03366 4.03366 -137.646 -4.03366 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0306436 0.0268581 99 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 8.65 vpr 63.49 MiB -1 -1 0.25 18124 1 0.03 -1 -1 30320 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65012 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 24.6 MiB 1.02 1085 14872 6411 8186 275 63.5 MiB 0.14 0.00 3.95718 -133.91 -3.95718 3.95718 0.68 0.000740004 0.000686835 0.0664649 0.0617078 46 3438 27 6.99608e+06 235451 828058. 2865.25 4.54 0.296906 0.257576 28066 200906 -1 2566 22 2336 3360 279653 57197 3.90226 3.90226 -136.587 -3.90226 0 0 1.01997e+06 3529.29 0.26 0.11 0.17 -1 -1 0.26 0.0324264 0.0283269 106 77 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 6.86 vpr 62.63 MiB -1 -1 0.20 18020 1 0.03 -1 -1 30364 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 251 219 1 151 74 17 17 289 -1 unnamed_device 23.9 MiB 0.50 584 9994 4131 5517 346 62.6 MiB 0.08 0.00 3.27254 -98.1459 -3.27254 3.27254 0.67 0.000561698 0.000516963 0.0377823 0.0351549 44 1896 43 6.99608e+06 147157 787024. 2723.27 3.51 0.216424 0.186468 27778 195446 -1 1353 17 935 1329 98033 24166 3.06092 3.06092 -97.4265 -3.06092 0 0 997811. 3452.63 0.26 0.05 0.17 -1 -1 0.26 0.0198614 0.0173881 60 23 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 6.52 vpr 63.37 MiB -1 -1 0.14 18276 1 0.03 -1 -1 30128 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 24.4 MiB 0.89 872 9036 3191 4723 1122 63.4 MiB 0.08 0.00 3.89113 -140.293 -3.89113 3.89113 0.70 0.000670937 0.000623647 0.0383708 0.0356826 44 3087 35 6.99608e+06 220735 787024. 2723.27 2.73 0.164018 0.142829 27778 195446 -1 2004 20 1867 2519 222462 45910 3.68341 3.68341 -137.359 -3.68341 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0269781 0.023557 93 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 7.93 vpr 63.38 MiB -1 -1 0.24 18340 1 0.03 -1 -1 30328 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64900 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 24.6 MiB 0.88 920 11776 4854 6254 668 63.4 MiB 0.11 0.00 4.78758 -149.316 -4.78758 4.78758 0.74 0.000758856 0.000704735 0.0550565 0.0511591 48 3455 47 6.99608e+06 235451 865456. 2994.66 3.87 0.237289 0.206959 28354 207349 -1 2342 22 2187 3298 304499 71557 4.94376 4.94376 -156.132 -4.94376 0 0 1.05005e+06 3633.38 0.27 0.11 0.18 -1 -1 0.27 0.0327941 0.0286679 98 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 7.76 vpr 63.25 MiB -1 -1 0.24 18108 1 0.03 -1 -1 30392 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 24.3 MiB 0.62 871 12247 5090 6619 538 63.2 MiB 0.11 0.00 4.21616 -136.097 -4.21616 4.21616 0.68 0.000689467 0.000640708 0.0524246 0.0487448 46 2790 27 6.99608e+06 220735 828058. 2865.25 4.18 0.257943 0.223466 28066 200906 -1 2033 22 1764 2369 168064 38187 3.60811 3.60811 -129.881 -3.60811 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0296379 0.0258116 85 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 15.97 vpr 62.89 MiB -1 -1 0.18 18064 1 0.03 -1 -1 30504 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 24.3 MiB 1.69 641 12008 4694 6159 1155 62.9 MiB 0.09 0.00 3.67135 -114.032 -3.67135 3.67135 0.71 0.000587415 0.000543521 0.0418311 0.0388782 40 2118 44 6.99608e+06 294314 706193. 2443.58 11.34 0.296133 0.254635 26914 176310 -1 1753 21 1282 1962 260164 82998 3.52936 3.52936 -121.75 -3.52936 0 0 926341. 3205.33 0.25 0.09 0.16 -1 -1 0.25 0.0246824 0.0214894 72 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 8.03 vpr 63.73 MiB -1 -1 0.25 18388 1 0.03 -1 -1 30516 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 431 332 1 260 82 17 17 289 -1 unnamed_device 24.7 MiB 0.94 1432 14144 5603 7508 1033 63.7 MiB 0.15 0.00 6.40939 -192.555 -6.40939 6.40939 0.68 0.000823784 0.000765761 0.0682564 0.0634251 48 3781 32 6.99608e+06 264882 865456. 2994.66 3.97 0.321909 0.279448 28354 207349 -1 3159 22 2427 3546 304769 61049 5.77539 5.77539 -188.538 -5.77539 0 0 1.05005e+06 3633.38 0.27 0.11 0.18 -1 -1 0.27 0.0359297 0.0313662 116 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 6.91 vpr 63.22 MiB -1 -1 0.24 18240 1 0.03 -1 -1 30352 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 24.2 MiB 0.65 852 9374 3899 5203 272 63.2 MiB 0.09 0.00 4.9189 -148.418 -4.9189 4.9189 0.68 0.000691929 0.000643346 0.0418568 0.0389459 38 2787 31 6.99608e+06 206020 678818. 2348.85 3.25 0.176989 0.154242 26626 170182 -1 2002 21 1728 2348 174385 37585 4.06535 4.06535 -139.343 -4.06535 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0285734 0.0250144 83 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 12.41 vpr 62.42 MiB -1 -1 0.23 17608 1 0.03 -1 -1 30516 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 23.8 MiB 0.27 535 10509 4368 5789 352 62.4 MiB 0.08 0.00 2.922 -91.3971 -2.922 2.922 0.69 0.000534092 0.000496977 0.0363415 0.0338374 40 1896 38 6.99608e+06 191304 706193. 2443.58 9.31 0.265828 0.228333 26914 176310 -1 1509 21 991 1481 143085 34737 3.14927 3.14927 -103.816 -3.14927 0 0 926341. 3205.33 0.26 0.06 0.15 -1 -1 0.26 0.0219548 0.0190264 51 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 6.59 vpr 63.37 MiB -1 -1 0.24 18360 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 24.4 MiB 1.42 937 15044 6237 7403 1404 63.4 MiB 0.14 0.00 4.79375 -134.609 -4.79375 4.79375 0.68 0.000556487 0.000509724 0.064016 0.0594919 44 3213 27 6.99608e+06 235451 787024. 2723.27 2.17 0.184961 0.162973 27778 195446 -1 2245 25 1746 2823 236258 49811 4.97986 4.97986 -144.606 -4.97986 0 0 997811. 3452.63 0.26 0.10 0.17 -1 -1 0.26 0.0334141 0.0291243 85 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 6.02 vpr 62.61 MiB -1 -1 0.17 17692 1 0.02 -1 -1 30108 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 23.9 MiB 0.76 492 10204 2692 5791 1721 62.6 MiB 0.08 0.00 2.966 -96.76 -2.966 2.966 0.72 0.000554457 0.000516121 0.036069 0.0335809 38 1631 32 6.99608e+06 206020 678818. 2348.85 2.50 0.153438 0.133257 26626 170182 -1 1195 22 1046 1513 86598 21931 3.06997 3.06997 -104.764 -3.06997 0 0 902133. 3121.57 0.23 0.06 0.15 -1 -1 0.23 0.0240837 0.0209323 57 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 6.77 vpr 62.84 MiB -1 -1 0.23 17960 1 0.03 -1 -1 30048 -1 -1 13 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 24.3 MiB 0.74 683 11293 4547 5793 953 62.8 MiB 0.10 0.00 3.84183 -118.192 -3.84183 3.84183 0.68 0.000588344 0.000547567 0.0443713 0.0412897 38 2131 30 6.99608e+06 191304 678818. 2348.85 3.15 0.172746 0.150735 26626 170182 -1 1548 21 1163 1560 112003 25178 3.20221 3.20221 -112.039 -3.20221 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0246041 0.021383 69 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 9.01 vpr 63.45 MiB -1 -1 0.26 18240 1 0.03 -1 -1 30336 -1 -1 18 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 24.6 MiB 1.03 978 11064 4603 5811 650 63.4 MiB 0.10 0.00 4.04056 -127.05 -4.04056 4.04056 0.68 0.000691021 0.000641493 0.047699 0.0443335 44 3460 36 6.99608e+06 264882 787024. 2723.27 4.98 0.314581 0.270737 27778 195446 -1 2237 22 1721 2487 195932 42997 3.88346 3.88346 -131.875 -3.88346 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0297128 0.0258786 97 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 6.99 vpr 63.30 MiB -1 -1 0.20 18208 1 0.03 -1 -1 30316 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 358 289 1 219 79 17 17 289 -1 unnamed_device 24.3 MiB 1.37 980 14444 5001 7107 2336 63.3 MiB 0.13 0.00 4.54753 -143.667 -4.54753 4.54753 0.68 0.000700086 0.000650022 0.0630786 0.0586228 38 3493 41 6.99608e+06 220735 678818. 2348.85 2.65 0.197532 0.173294 26626 170182 -1 2608 21 2012 2796 244213 51678 4.40255 4.40255 -157.439 -4.40255 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.029502 0.0257754 93 54 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 9.42 vpr 63.20 MiB -1 -1 0.25 18312 1 0.03 -1 -1 30376 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 24.3 MiB 3.11 1118 12585 4147 6271 2167 63.2 MiB 0.12 0.00 4.58917 -148.796 -4.58917 4.58917 0.71 0.000701113 0.000652239 0.0548877 0.0510579 40 2940 33 6.99608e+06 220735 706193. 2443.58 3.34 0.207768 0.181434 26914 176310 -1 2614 22 1958 2844 308347 61854 4.45201 4.45201 -153.727 -4.45201 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0307348 0.0268196 90 51 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 9.18 vpr 62.77 MiB -1 -1 0.23 18124 1 0.03 -1 -1 30100 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 24.2 MiB 1.72 646 11767 4636 5730 1401 62.8 MiB 0.10 0.00 4.03444 -123.732 -4.03444 4.03444 0.72 0.000593108 0.000552054 0.0461891 0.0430133 46 2438 26 6.99608e+06 161872 828058. 2865.25 4.43 0.222702 0.192698 28066 200906 -1 1572 26 1180 1552 122096 28753 3.46386 3.46386 -118.174 -3.46386 0 0 1.01997e+06 3529.29 0.26 0.07 0.20 -1 -1 0.26 0.0287614 0.0249455 67 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 5.75 vpr 63.28 MiB -1 -1 0.24 18316 1 0.02 -1 -1 30400 -1 -1 14 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64800 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 24.3 MiB 0.80 795 12791 5222 5710 1859 63.3 MiB 0.11 0.00 3.72927 -124.319 -3.72927 3.72927 0.69 0.000642652 0.000597184 0.0532818 0.0495481 44 2591 26 6.99608e+06 206020 787024. 2723.27 1.95 0.15546 0.136678 27778 195446 -1 1899 23 1534 2162 165982 36611 3.60141 3.60141 -123.632 -3.60141 0 0 997811. 3452.63 0.26 0.08 0.18 -1 -1 0.26 0.0285564 0.0248507 86 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 7.54 vpr 63.21 MiB -1 -1 0.24 18224 1 0.03 -1 -1 30384 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64728 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 24.2 MiB 1.19 844 13731 4372 6963 2396 63.2 MiB 0.12 0.00 3.3817 -109.729 -3.3817 3.3817 0.68 0.000651228 0.000604635 0.0536258 0.049803 40 2972 39 6.99608e+06 279598 706193. 2443.58 3.34 0.210864 0.184502 26914 176310 -1 1994 24 1750 2466 236383 60060 3.06321 3.06321 -110.106 -3.06321 0 0 926341. 3205.33 0.24 0.10 0.14 -1 -1 0.24 0.0301618 0.0261913 91 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 7.36 vpr 62.68 MiB -1 -1 0.23 17872 1 0.03 -1 -1 30316 -1 -1 17 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64188 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 24.2 MiB 0.51 703 11976 4217 5816 1943 62.7 MiB 0.09 0.00 3.6892 -102.61 -3.6892 3.6892 0.68 0.000586793 0.000545683 0.0452123 0.04203 40 2134 23 6.99608e+06 250167 706193. 2443.58 3.96 0.23387 0.201701 26914 176310 -1 1788 20 1317 1928 212398 44387 3.51816 3.51816 -110.645 -3.51816 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0236136 0.0205335 71 27 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 5.51 vpr 63.12 MiB -1 -1 0.23 18104 1 0.03 -1 -1 30396 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 24.2 MiB 0.76 796 9042 3476 4677 889 63.1 MiB 0.09 0.00 4.23312 -132.968 -4.23312 4.23312 0.71 0.000632875 0.000588264 0.0393155 0.0365005 44 2471 25 6.99608e+06 220735 787024. 2723.27 1.75 0.145968 0.127446 27778 195446 -1 1793 21 1664 2228 177685 38515 3.71386 3.71386 -130.295 -3.71386 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0264488 0.0230325 88 63 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 7.73 vpr 63.25 MiB -1 -1 0.19 18236 1 0.03 -1 -1 30188 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 24.3 MiB 0.79 932 13524 5742 7441 341 63.3 MiB 0.12 0.00 3.33761 -122.631 -3.33761 3.33761 0.68 0.000661775 0.000614173 0.0565403 0.0525286 46 2602 32 6.99608e+06 206020 828058. 2865.25 3.94 0.265991 0.230251 28066 200906 -1 2009 20 1718 2353 172584 38355 3.51211 3.51211 -128.602 -3.51211 0 0 1.01997e+06 3529.29 0.26 0.08 0.18 -1 -1 0.26 0.0266526 0.0232426 93 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 5.38 vpr 62.69 MiB -1 -1 0.21 17796 1 0.03 -1 -1 30376 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 24.2 MiB 0.53 734 13911 5021 5993 2897 62.7 MiB 0.12 0.00 4.52238 -122.271 -4.52238 4.52238 0.68 0.000715989 0.000660621 0.0542717 0.0501172 44 2469 50 6.99608e+06 353176 787024. 2723.27 1.95 0.184135 0.160578 27778 195446 -1 1737 22 1226 2079 141220 32771 4.03642 4.03642 -127.786 -4.03642 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0271386 0.0236522 74 4 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 9.97 vpr 63.46 MiB -1 -1 0.18 18352 1 0.03 -1 -1 30456 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64980 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 24.6 MiB 1.17 829 10204 4200 5555 449 63.5 MiB 0.10 0.00 4.50341 -148.643 -4.50341 4.50341 0.68 0.000702203 0.000652403 0.0461568 0.0429482 52 2882 26 6.99608e+06 206020 926341. 3205.33 5.82 0.308354 0.265983 29218 227130 -1 2059 21 1658 2441 183994 42143 3.9837 3.9837 -139.238 -3.9837 0 0 1.14541e+06 3963.36 0.29 0.08 0.23 -1 -1 0.29 0.0293451 0.0256825 86 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 7.34 vpr 63.62 MiB -1 -1 0.25 18144 1 0.03 -1 -1 30340 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65148 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 24.8 MiB 0.88 1083 14606 4862 7486 2258 63.6 MiB 0.14 0.00 5.11069 -165.7 -5.11069 5.11069 0.68 0.000744127 0.000688213 0.065007 0.0603551 44 3460 33 6.99608e+06 250167 787024. 2723.27 3.37 0.226346 0.198104 27778 195446 -1 2572 23 2258 3110 251900 53678 5.12834 5.12834 -169.932 -5.12834 0 0 997811. 3452.63 0.28 0.10 0.17 -1 -1 0.28 0.0333417 0.0290446 102 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 10.11 vpr 63.51 MiB -1 -1 0.22 18124 1 0.03 -1 -1 30308 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65032 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 24.7 MiB 0.98 1036 9181 3131 4714 1336 63.5 MiB 0.10 0.00 4.33426 -143.87 -4.33426 4.33426 0.71 0.000745672 0.000692504 0.0423756 0.0394432 56 3044 44 6.99608e+06 250167 973134. 3367.25 6.06 0.347236 0.298821 29794 239141 -1 2372 22 2062 2896 252385 53060 4.0145 4.0145 -144.544 -4.0145 0 0 1.19926e+06 4149.71 0.30 0.10 0.22 -1 -1 0.30 0.0322058 0.0281234 104 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 5.45 vpr 62.75 MiB -1 -1 0.22 18100 1 0.03 -1 -1 30164 -1 -1 13 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 24.3 MiB 0.85 635 9713 3107 4623 1983 62.8 MiB 0.08 0.00 4.08266 -116.386 -4.08266 4.08266 0.68 0.000578989 0.000537771 0.0376978 0.0350579 44 2129 25 6.99608e+06 191304 787024. 2723.27 1.69 0.131355 0.114783 27778 195446 -1 1497 24 1199 1715 131162 28757 3.21021 3.21021 -110.586 -3.21021 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0267396 0.0232279 71 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 8.91 vpr 63.38 MiB -1 -1 0.21 18236 1 0.03 -1 -1 30568 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 24.6 MiB 0.90 883 12120 4402 5485 2233 63.4 MiB 0.11 0.00 5.1699 -158.063 -5.1699 5.1699 0.67 0.000721968 0.000671199 0.0536661 0.0498326 48 2922 49 6.99608e+06 264882 865456. 2994.66 4.99 0.349744 0.301395 28354 207349 -1 2248 21 2138 3053 249900 59890 5.1971 5.1971 -167.765 -5.1971 0 0 1.05005e+06 3633.38 0.27 0.10 0.18 -1 -1 0.27 0.030304 0.0264798 104 63 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 8.13 vpr 63.16 MiB -1 -1 0.24 18156 1 0.03 -1 -1 30288 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 24.2 MiB 0.69 788 9374 3088 4347 1939 63.2 MiB 0.09 0.00 4.91711 -144.854 -4.91711 4.91711 0.69 0.000687274 0.000639083 0.0416753 0.0387941 54 2286 40 6.99608e+06 206020 949917. 3286.91 4.31 0.267315 0.230725 29506 232905 -1 1621 19 1321 2164 139952 35343 4.04535 4.04535 -135.966 -4.04535 0 0 1.17392e+06 4061.99 0.30 0.07 0.21 -1 -1 0.30 0.026567 0.0232804 81 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 7.22 vpr 63.39 MiB -1 -1 0.24 18220 1 0.03 -1 -1 30068 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 31 32 340 275 1 196 80 17 17 289 -1 unnamed_device 24.4 MiB 1.08 828 14528 6197 7823 508 63.4 MiB 0.13 0.00 5.0524 -144.146 -5.0524 5.0524 0.68 0.000683269 0.0006346 0.060004 0.0557774 38 3321 44 6.99608e+06 250167 678818. 2348.85 3.25 0.204318 0.179017 26626 170182 -1 2238 25 1699 2500 204991 46682 4.45981 4.45981 -147.934 -4.45981 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0324157 0.0282148 87 47 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 8.82 vpr 63.40 MiB -1 -1 0.25 18240 1 0.03 -1 -1 30036 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 30 32 377 310 1 234 81 17 17 289 -1 unnamed_device 24.5 MiB 1.34 998 14606 5096 6874 2636 63.4 MiB 0.13 0.00 4.3242 -135.003 -4.3242 4.3242 0.67 0.000719139 0.000668155 0.063099 0.0586206 46 3279 31 6.99608e+06 279598 828058. 2865.25 4.40 0.277742 0.240779 28066 200906 -1 2277 21 2181 2990 217660 49510 4.4295 4.4295 -146.67 -4.4295 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0298567 0.0261268 107 83 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 9.04 vpr 63.32 MiB -1 -1 0.23 18316 1 0.03 -1 -1 30336 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64844 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 24.3 MiB 1.50 1123 15831 6103 7773 1955 63.3 MiB 0.15 0.00 4.68727 -152.859 -4.68727 4.68727 0.69 0.000724986 0.000673495 0.067514 0.0626748 44 2988 22 6.99608e+06 250167 787024. 2723.27 4.44 0.277239 0.241021 27778 195446 -1 2413 20 1812 2583 214244 43226 4.27741 4.27741 -153.972 -4.27741 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0286897 0.0250656 95 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 8.46 vpr 63.50 MiB -1 -1 0.21 18196 1 0.03 -1 -1 30312 -1 -1 20 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 24.6 MiB 1.92 1106 12156 3661 6482 2013 63.5 MiB 0.11 0.00 3.82165 -125.941 -3.82165 3.82165 0.71 0.000713098 0.000661566 0.0522412 0.0485103 38 3242 28 6.99608e+06 294314 678818. 2348.85 3.64 0.208609 0.1823 26626 170182 -1 2602 22 1986 2601 212313 44205 3.85722 3.85722 -135.545 -3.85722 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0308992 0.0269335 109 85 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 7.51 vpr 62.55 MiB -1 -1 0.21 17740 1 0.03 -1 -1 30352 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 24.1 MiB 2.17 497 9529 2774 4777 1978 62.6 MiB 0.07 0.00 3.56099 -102.406 -3.56099 3.56099 0.68 0.000551925 0.000513414 0.0359835 0.0335279 50 1343 28 6.99608e+06 147157 902133. 3121.57 2.47 0.148823 0.129384 28642 213929 -1 1025 26 974 1476 91476 23979 3.21827 3.21827 -98.6875 -3.21827 0 0 1.08113e+06 3740.92 0.28 0.06 0.20 -1 -1 0.28 0.0267765 0.0232479 54 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 8.51 vpr 63.46 MiB -1 -1 0.23 18176 1 0.03 -1 -1 30388 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64988 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 24.7 MiB 0.69 934 8831 2712 4206 1913 63.5 MiB 0.09 0.00 5.01054 -157.498 -5.01054 5.01054 0.67 0.000729128 0.000677151 0.0392439 0.0364633 54 2473 24 6.99608e+06 250167 949917. 3286.91 4.75 0.283383 0.244217 29506 232905 -1 2014 23 1966 2770 224036 48219 4.52184 4.52184 -150.566 -4.52184 0 0 1.17392e+06 4061.99 0.30 0.10 0.24 -1 -1 0.30 0.0328562 0.028753 100 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 7.06 vpr 63.64 MiB -1 -1 0.24 18204 1 0.03 -1 -1 30280 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65168 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 24.7 MiB 0.90 1037 11456 4156 5041 2259 63.6 MiB 0.11 0.00 4.93306 -166.082 -4.93306 4.93306 0.70 0.000760506 0.000706463 0.0526707 0.0489376 44 3965 44 6.99608e+06 250167 787024. 2723.27 3.09 0.202959 0.177746 27778 195446 -1 2622 24 2664 3735 313256 64961 4.90074 4.90074 -173.084 -4.90074 0 0 997811. 3452.63 0.26 0.12 0.17 -1 -1 0.26 0.0352523 0.0307584 109 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 8.24 vpr 62.68 MiB -1 -1 0.17 18068 1 0.03 -1 -1 30300 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64188 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 24.0 MiB 1.20 644 12241 5168 6711 362 62.7 MiB 0.10 0.00 3.78577 -113.025 -3.78577 3.78577 0.68 0.000587067 0.000538559 0.046738 0.0434737 44 2214 37 6.99608e+06 161872 787024. 2723.27 4.18 0.240027 0.207533 27778 195446 -1 1516 21 1065 1330 98779 22991 3.09311 3.09311 -108.774 -3.09311 0 0 997811. 3452.63 0.26 0.06 0.17 -1 -1 0.26 0.0240878 0.0209928 69 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 7.70 vpr 62.78 MiB -1 -1 0.22 17588 1 0.03 -1 -1 30384 -1 -1 13 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 24.2 MiB 0.89 467 10956 2929 5982 2045 62.8 MiB 0.08 0.00 3.36359 -99.0047 -3.36359 3.36359 0.75 0.000557263 0.000519207 0.0394894 0.0367793 48 1458 23 6.99608e+06 191304 865456. 2994.66 3.82 0.228087 0.196324 28354 207349 -1 1149 20 1037 1562 107224 27427 2.97667 2.97667 -103.555 -2.97667 0 0 1.05005e+06 3633.38 0.27 0.06 0.18 -1 -1 0.27 0.0220632 0.0191992 57 4 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 10.82 vpr 63.16 MiB -1 -1 0.24 18192 1 0.03 -1 -1 30416 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 24.1 MiB 0.85 775 12754 5312 6863 579 63.2 MiB 0.11 0.00 4.29802 -140.072 -4.29802 4.29802 0.68 0.000698643 0.000649637 0.0552815 0.0514174 48 2804 25 6.99608e+06 220735 865456. 2994.66 6.99 0.301877 0.261537 28354 207349 -1 2110 22 1910 2568 220393 52114 4.7131 4.7131 -155.264 -4.7131 0 0 1.05005e+06 3633.38 0.27 0.09 0.18 -1 -1 0.27 0.0301788 0.0263432 88 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 8.84 vpr 63.21 MiB -1 -1 0.24 18236 1 0.03 -1 -1 30324 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64728 32 32 356 289 1 217 79 17 17 289 -1 unnamed_device 24.2 MiB 1.66 1200 10050 2860 5275 1915 63.2 MiB 0.10 0.00 4.58812 -146.135 -4.58812 4.58812 0.68 0.000705137 0.00065402 0.0444481 0.0412489 44 3098 28 6.99608e+06 220735 787024. 2723.27 4.23 0.278932 0.240665 27778 195446 -1 2424 23 1470 2021 162241 32994 4.01671 4.01671 -141.1 -4.01671 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0312084 0.0272185 95 56 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 7.67 vpr 63.31 MiB -1 -1 0.20 18028 1 0.03 -1 -1 30172 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64832 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 24.4 MiB 0.44 875 12156 5059 6582 515 63.3 MiB 0.11 0.00 4.64591 -137.502 -4.64591 4.64591 0.68 0.000714676 0.000664102 0.0523771 0.0487032 40 3001 48 6.99608e+06 250167 706193. 2443.58 4.28 0.230235 0.200903 26914 176310 -1 2413 25 2029 3465 277166 62434 5.02705 5.02705 -153.157 -5.02705 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0340167 0.0295919 83 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 9.61 vpr 63.11 MiB -1 -1 0.25 18200 1 0.03 -1 -1 30312 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 24.2 MiB 2.49 811 12860 4243 6447 2170 63.1 MiB 0.11 0.00 3.96842 -107.825 -3.96842 3.96842 0.68 0.00064619 0.000601724 0.0521514 0.0485206 46 2449 28 6.99608e+06 235451 828058. 2865.25 4.14 0.238832 0.206488 28066 200906 -1 1888 22 1521 2302 187777 40324 3.20841 3.20841 -110.256 -3.20841 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0275544 0.0239894 87 52 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 13.68 vpr 62.70 MiB -1 -1 0.23 17948 1 0.03 -1 -1 30348 -1 -1 15 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 23.9 MiB 2.03 489 7669 3106 4069 494 62.7 MiB 0.06 0.00 3.4808 -102.051 -3.4808 3.4808 0.67 0.000549273 0.000511468 0.0290817 0.0270601 38 2144 42 6.99608e+06 220735 678818. 2348.85 8.90 0.277872 0.238007 26626 170182 -1 1355 22 1106 1621 145910 35143 3.53956 3.53956 -112.677 -3.53956 0 0 902133. 3121.57 0.23 0.07 0.10 -1 -1 0.23 0.0238126 0.0206506 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 7.58 vpr 63.82 MiB -1 -1 0.25 18492 1 0.03 -1 -1 30320 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65348 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 24.9 MiB 0.97 1332 12186 3960 6618 1608 63.8 MiB 0.13 0.00 4.21393 -148.472 -4.21393 4.21393 0.67 0.000812541 0.000755633 0.0586104 0.054515 46 3802 31 6.99608e+06 264882 828058. 2865.25 3.50 0.229665 0.200567 28066 200906 -1 3098 25 2477 3827 319015 62018 4.29751 4.29751 -154.976 -4.29751 0 0 1.01997e+06 3529.29 0.26 0.11 0.18 -1 -1 0.26 0.0385638 0.0336358 111 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 18.70 vpr 63.29 MiB -1 -1 0.26 18240 1 0.03 -1 -1 30364 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 24.3 MiB 0.95 986 5756 1263 4208 285 63.3 MiB 0.07 0.00 5.65424 -162.981 -5.65424 5.65424 0.68 0.00071174 0.00066078 0.0264575 0.0245727 40 3074 34 6.99608e+06 250167 706193. 2443.58 14.65 0.325992 0.279852 26914 176310 -1 2702 28 2647 3753 480560 145673 5.2637 5.2637 -178.943 -5.2637 0 0 926341. 3205.33 0.24 0.16 0.16 -1 -1 0.24 0.0369331 0.0320309 100 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 7.94 vpr 63.28 MiB -1 -1 0.23 18204 1 0.03 -1 -1 30360 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 24.2 MiB 0.88 966 12030 5173 6617 240 63.3 MiB 0.10 0.00 3.99123 -142.235 -3.99123 3.99123 0.69 0.000657195 0.000610797 0.049849 0.046324 48 2359 23 6.99608e+06 206020 865456. 2994.66 4.10 0.235182 0.203781 28354 207349 -1 2012 20 1550 1970 181291 38605 3.6147 3.6147 -137.523 -3.6147 0 0 1.05005e+06 3633.38 0.28 0.08 0.14 -1 -1 0.28 0.0261626 0.0228043 91 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 6.06 vpr 63.29 MiB -1 -1 0.24 18108 1 0.03 -1 -1 30288 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 24.4 MiB 0.73 812 13768 5924 7391 453 63.3 MiB 0.12 0.00 4.14137 -126.485 -4.14137 4.14137 0.68 0.000663297 0.00061557 0.0563809 0.0523515 46 2566 28 6.99608e+06 220735 828058. 2865.25 2.33 0.201777 0.176678 28066 200906 -1 1927 20 1267 1756 117851 26945 3.76272 3.76272 -126.629 -3.76272 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0267856 0.0234235 81 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 9.45 vpr 63.38 MiB -1 -1 0.27 18196 1 0.03 -1 -1 30432 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 24.3 MiB 2.27 911 12120 4489 5478 2153 63.4 MiB 0.11 0.00 4.14153 -124.204 -4.14153 4.14153 0.76 0.00072954 0.00067399 0.0545074 0.0505658 48 2470 25 6.99608e+06 250167 865456. 2994.66 4.03 0.258929 0.224446 28354 207349 -1 2069 21 1768 2487 183168 40754 3.95662 3.95662 -125.048 -3.95662 0 0 1.05005e+06 3633.38 0.27 0.08 0.21 -1 -1 0.27 0.0308451 0.026968 97 50 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 8.92 vpr 63.41 MiB -1 -1 0.20 18112 1 0.03 -1 -1 30396 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 30 32 325 268 1 199 80 17 17 289 -1 unnamed_device 24.5 MiB 1.59 860 13496 5767 7196 533 63.4 MiB 0.11 0.00 3.54615 -113.081 -3.54615 3.54615 0.71 0.000651015 0.000604076 0.0534947 0.0496922 46 2607 47 6.99608e+06 264882 828058. 2865.25 4.40 0.26051 0.225405 28066 200906 -1 1990 23 1472 2372 171331 37082 3.14741 3.14741 -111.674 -3.14741 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0290111 0.0252482 89 51 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 8.05 vpr 63.16 MiB -1 -1 0.24 18144 1 0.03 -1 -1 30288 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 24.4 MiB 0.85 937 9042 3197 4114 1731 63.2 MiB 0.09 0.00 4.39601 -145.139 -4.39601 4.39601 0.69 0.000665043 0.00061265 0.0409209 0.0380488 46 3268 28 6.99608e+06 206020 828058. 2865.25 4.27 0.18744 0.16335 28066 200906 -1 2357 20 1918 2884 223863 48793 4.09442 4.09442 -146.658 -4.09442 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0283323 0.0248131 88 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 17.63 vpr 63.63 MiB -1 -1 0.22 18232 1 0.03 -1 -1 30132 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65156 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 24.7 MiB 2.28 985 11260 4054 5703 1503 63.6 MiB 0.11 0.00 3.75091 -129.281 -3.75091 3.75091 0.67 0.000756134 0.000703416 0.0524962 0.0488218 40 3212 32 6.99608e+06 235451 706193. 2443.58 12.37 0.383026 0.330434 26914 176310 -1 2417 21 2274 3028 261524 58194 3.37457 3.37457 -134.662 -3.37457 0 0 926341. 3205.33 0.24 0.10 0.16 -1 -1 0.24 0.0315338 0.0276357 103 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 10.57 vpr 62.72 MiB -1 -1 0.24 17892 1 0.03 -1 -1 30368 -1 -1 14 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 24.0 MiB 1.86 580 10345 3835 4839 1671 62.7 MiB 0.09 0.00 4.0374 -114.573 -4.0374 4.0374 0.67 0.000570812 0.000530484 0.0395578 0.0367942 40 1759 25 6.99608e+06 206020 706193. 2443.58 5.85 0.271105 0.232557 26914 176310 -1 1521 22 1454 1851 189965 51937 3.55392 3.55392 -121.421 -3.55392 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0316457 0.0274504 70 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 9.64 vpr 62.78 MiB -1 -1 0.19 18216 1 0.04 -1 -1 30460 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 24.1 MiB 1.01 710 11200 4654 6133 413 62.8 MiB 0.10 0.00 4.05854 -127.727 -4.05854 4.05854 0.70 0.000509247 0.000474329 0.0446975 0.0415623 48 2075 27 6.99608e+06 206020 865456. 2994.66 5.61 0.26847 0.231199 28354 207349 -1 1685 19 1263 1746 156420 35580 3.82726 3.82726 -130.05 -3.82726 0 0 1.05005e+06 3633.38 0.27 0.07 0.18 -1 -1 0.27 0.0243056 0.021227 81 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 7.94 vpr 63.20 MiB -1 -1 0.25 18232 1 0.03 -1 -1 30432 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 31 32 326 261 1 192 78 17 17 289 -1 unnamed_device 24.2 MiB 0.71 833 12196 4708 5911 1577 63.2 MiB 0.11 0.00 4.19283 -126.892 -4.19283 4.19283 0.68 0.000665103 0.000618353 0.0512775 0.0476883 44 2512 43 6.99608e+06 220735 787024. 2723.27 4.23 0.292912 0.252919 27778 195446 -1 1898 17 1425 2036 154007 34405 3.80592 3.80592 -132.202 -3.80592 0 0 997811. 3452.63 0.26 0.07 0.18 -1 -1 0.26 0.0236632 0.0207572 80 33 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 7.77 vpr 62.77 MiB -1 -1 0.20 17968 1 0.03 -1 -1 30292 -1 -1 13 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 24.0 MiB 1.08 625 8909 3845 4668 396 62.8 MiB 0.07 0.00 3.79267 -110.13 -3.79267 3.79267 0.70 0.000563374 0.000524029 0.0344956 0.0320716 44 1701 25 6.99608e+06 191304 787024. 2723.27 3.78 0.19289 0.166107 27778 195446 -1 1404 23 1155 1449 107406 23865 3.03491 3.03491 -100.612 -3.03491 0 0 997811. 3452.63 0.30 0.06 0.17 -1 -1 0.30 0.0296184 0.0260298 68 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 5.28 vpr 62.97 MiB -1 -1 0.18 17928 1 0.03 -1 -1 30048 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 24.5 MiB 0.75 737 11436 4762 6383 291 63.0 MiB 0.10 0.00 4.0773 -124.169 -4.0773 4.0773 0.71 0.000594457 0.000552967 0.0446979 0.0416084 44 2022 22 6.99608e+06 176588 787024. 2723.27 1.65 0.138339 0.121311 27778 195446 -1 1605 23 1334 1754 130156 28569 3.24121 3.24121 -116.641 -3.24121 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0265702 0.0231258 73 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 6.24 vpr 63.39 MiB -1 -1 0.24 18244 1 0.03 -1 -1 30536 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 31 32 373 300 1 231 81 17 17 289 -1 unnamed_device 24.6 MiB 0.91 983 14606 5438 6820 2348 63.4 MiB 0.14 0.00 4.38351 -142.434 -4.38351 4.38351 0.69 0.000725894 0.000674055 0.0641048 0.0595201 44 3308 29 6.99608e+06 264882 787024. 2723.27 2.36 0.213655 0.18669 27778 195446 -1 2284 22 2017 2674 212903 46643 3.91555 3.91555 -141.293 -3.91555 0 0 997811. 3452.63 0.25 0.09 0.11 -1 -1 0.25 0.0311565 0.0271865 103 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 6.10 vpr 62.73 MiB -1 -1 0.23 17912 1 0.03 -1 -1 30300 -1 -1 13 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 24.2 MiB 0.72 724 12236 4456 5440 2340 62.7 MiB 0.10 0.00 3.48012 -106.772 -3.48012 3.48012 0.69 0.00057608 0.000535862 0.0457695 0.0425881 40 2354 32 6.99608e+06 191304 706193. 2443.58 2.48 0.167458 0.145807 26914 176310 -1 1973 27 1536 2142 255746 49653 3.28462 3.28462 -115.252 -3.28462 0 0 926341. 3205.33 0.24 0.09 0.15 -1 -1 0.24 0.0287376 0.0248311 71 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 8.00 vpr 63.23 MiB -1 -1 0.25 18364 1 0.03 -1 -1 30044 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 24.2 MiB 1.20 1045 14275 6069 7825 381 63.2 MiB 0.12 0.00 3.51899 -121.288 -3.51899 3.51899 0.69 0.000544714 0.000501752 0.0599277 0.055626 38 2528 20 6.99608e+06 220735 678818. 2348.85 3.80 0.270041 0.234296 26626 170182 -1 2176 20 1461 1984 153571 32028 3.28376 3.28376 -123.98 -3.28376 0 0 902133. 3121.57 0.23 0.07 0.16 -1 -1 0.23 0.0279358 0.0244569 91 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 18.68 vpr 63.48 MiB -1 -1 0.26 18220 1 0.04 -1 -1 30288 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65000 31 32 396 325 1 254 83 17 17 289 -1 unnamed_device 24.6 MiB 1.90 1199 11603 3562 6376 1665 63.5 MiB 0.11 0.00 4.92082 -166.246 -4.92082 4.92082 0.68 0.00075591 0.000701995 0.050821 0.0471503 44 3396 49 6.99608e+06 294314 787024. 2723.27 13.78 0.367131 0.316627 27778 195446 -1 2597 20 2345 3296 248918 52068 4.70579 4.70579 -163.224 -4.70579 0 0 997811. 3452.63 0.26 0.10 0.17 -1 -1 0.26 0.0293753 0.025716 113 91 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 9.13 vpr 63.16 MiB -1 -1 0.22 17876 1 0.03 -1 -1 30360 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 24.3 MiB 1.65 739 9516 3925 5290 301 63.2 MiB 0.08 0.00 3.40734 -116.434 -3.40734 3.40734 0.68 0.000619029 0.000574659 0.0389656 0.0362152 46 2552 39 6.99608e+06 176588 828058. 2865.25 4.56 0.239444 0.206334 28066 200906 -1 1830 20 1531 2042 184445 39904 3.54231 3.54231 -116.338 -3.54231 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0249426 0.0217476 81 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 14.11 vpr 62.83 MiB -1 -1 0.24 18160 1 0.03 -1 -1 30268 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 24.3 MiB 0.72 715 9871 2522 5750 1599 62.8 MiB 0.09 0.00 3.90682 -124.154 -3.90682 3.90682 0.68 0.000607256 0.000565371 0.0402432 0.0374987 38 2484 49 6.99608e+06 161872 678818. 2348.85 10.57 0.34239 0.293311 26626 170182 -1 1619 24 1408 1990 124637 31771 3.35457 3.35457 -120.004 -3.35457 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.028012 0.0243335 72 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 7.61 vpr 63.29 MiB -1 -1 0.23 18072 1 0.03 -1 -1 30244 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64804 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 24.4 MiB 1.78 781 10370 4270 5693 407 63.3 MiB 0.09 0.00 4.09738 -127.458 -4.09738 4.09738 0.68 0.000658623 0.000612148 0.0434439 0.0404106 40 2413 31 6.99608e+06 206020 706193. 2443.58 2.92 0.187396 0.163172 26914 176310 -1 1992 23 1736 2478 191462 45425 3.87526 3.87526 -134.613 -3.87526 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0292804 0.0255236 79 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 8.20 vpr 63.30 MiB -1 -1 0.25 18312 1 0.03 -1 -1 30224 -1 -1 18 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 24.3 MiB 1.62 781 11233 4679 5976 578 63.3 MiB 0.10 0.00 3.78147 -113.144 -3.78147 3.78147 0.68 0.000650158 0.000603902 0.045699 0.0424699 44 2558 43 6.99608e+06 264882 787024. 2723.27 3.59 0.256778 0.221376 27778 195446 -1 1831 23 1313 1886 138551 30777 3.28551 3.28551 -106.486 -3.28551 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0288708 0.0251159 88 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 20.23 vpr 63.49 MiB -1 -1 0.24 18352 1 0.03 -1 -1 30472 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 393 312 1 234 80 17 17 289 -1 unnamed_device 24.6 MiB 0.62 1091 9196 3199 4253 1744 63.5 MiB 0.10 0.00 5.35159 -170.536 -5.35159 5.35159 0.68 0.000760631 0.000706576 0.043288 0.0401652 38 3606 29 6.99608e+06 235451 678818. 2348.85 16.58 0.340262 0.292921 26626 170182 -1 2963 22 2472 3677 328041 64783 5.08154 5.08154 -176.159 -5.08154 0 0 902133. 3121.57 0.25 0.13 0.15 -1 -1 0.25 0.0363162 0.0319266 105 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 7.98 vpr 62.37 MiB -1 -1 0.22 17744 1 0.03 -1 -1 30144 -1 -1 13 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 23.8 MiB 1.61 501 10476 4309 5764 403 62.4 MiB 0.08 0.00 3.34663 -90.271 -3.34663 3.34663 0.68 0.000528059 0.000491448 0.0367849 0.0342828 42 1777 25 6.99608e+06 191304 744469. 2576.02 3.47 0.215135 0.185054 27202 183097 -1 1367 22 1037 1615 111926 27569 3.00097 3.00097 -97.4931 -3.00097 0 0 949917. 3286.91 0.25 0.06 0.18 -1 -1 0.25 0.022873 0.0198644 54 4 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 17.86 vpr 63.66 MiB -1 -1 0.26 18096 1 0.03 -1 -1 30240 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65192 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 24.7 MiB 1.49 1108 15273 5294 7598 2381 63.7 MiB 0.15 0.00 4.76553 -162.292 -4.76553 4.76553 0.68 0.000774035 0.000718168 0.0702038 0.0650351 44 3594 30 6.99608e+06 294314 787024. 2723.27 13.30 0.34887 0.302507 27778 195446 -1 2463 21 2299 2874 212343 45589 4.8872 4.8872 -169.312 -4.8872 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.032705 0.0286895 116 90 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 8.22 vpr 63.46 MiB -1 -1 0.24 18416 1 0.04 -1 -1 30140 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64988 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 24.6 MiB 0.83 1251 14700 5946 7371 1383 63.5 MiB 0.13 0.00 4.39022 -162.789 -4.39022 4.39022 0.68 0.000710934 0.000659548 0.0633445 0.0588333 46 3165 23 6.99608e+06 235451 828058. 2865.25 4.34 0.281305 0.244623 28066 200906 -1 2578 20 2819 3499 286015 57172 4.20235 4.20235 -164.081 -4.20235 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0253136 0.0223992 110 96 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 6.61 vpr 63.58 MiB -1 -1 0.19 18244 1 0.04 -1 -1 30376 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65104 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 24.6 MiB 1.28 938 11571 4789 6322 460 63.6 MiB 0.11 0.00 3.68917 -121.181 -3.68917 3.68917 0.68 0.000716612 0.000665905 0.0512778 0.0476124 44 2997 38 6.99608e+06 220735 787024. 2723.27 2.41 0.213972 0.186545 27778 195446 -1 2021 22 1573 2077 140143 33620 3.32751 3.32751 -120.003 -3.32751 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0306508 0.0267657 94 60 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 9.29 vpr 63.55 MiB -1 -1 0.25 18152 1 0.03 -1 -1 30352 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65076 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 24.7 MiB 0.83 990 12078 4723 5862 1493 63.6 MiB 0.12 0.00 5.88882 -169.671 -5.88882 5.88882 0.68 0.000778059 0.000723208 0.0584115 0.0542753 46 3428 29 6.99608e+06 220735 828058. 2865.25 5.40 0.224816 0.196993 28066 200906 -1 2131 22 1989 2876 203116 44964 5.2634 5.2634 -163.518 -5.2634 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0335882 0.0294317 98 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 7.75 vpr 62.52 MiB -1 -1 0.17 18176 1 0.03 -1 -1 30148 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64016 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 24.0 MiB 0.60 491 10769 4564 5875 330 62.5 MiB 0.08 0.00 2.5351 -91.4253 -2.5351 2.5351 0.68 0.000499208 0.000464224 0.0367825 0.0342559 38 1623 24 6.99608e+06 176588 678818. 2348.85 4.30 0.206452 0.177476 26626 170182 -1 1243 20 866 1091 98351 21996 2.47467 2.47467 -92.1644 -2.47467 0 0 902133. 3121.57 0.23 0.05 0.15 -1 -1 0.23 0.0198918 0.0172938 53 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 8.14 vpr 62.83 MiB -1 -1 0.23 18148 1 0.02 -1 -1 30444 -1 -1 14 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 24.3 MiB 3.12 632 10636 4449 5807 380 62.8 MiB 0.09 0.00 3.79502 -118.311 -3.79502 3.79502 0.71 0.000597636 0.000555722 0.0415653 0.0386466 38 1959 24 6.99608e+06 206020 678818. 2348.85 2.16 0.161454 0.140447 26626 170182 -1 1438 22 1176 1825 151610 32402 3.30746 3.30746 -120.098 -3.30746 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0257568 0.022347 68 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 5.46 vpr 62.91 MiB -1 -1 0.18 17896 1 0.02 -1 -1 30244 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 24.3 MiB 0.64 759 10756 3879 5476 1401 62.9 MiB 0.09 0.00 3.9181 -124.027 -3.9181 3.9181 0.68 0.000617146 0.000573688 0.0402216 0.0374136 44 2500 22 6.99608e+06 250167 787024. 2723.27 1.98 0.137472 0.12019 27778 195446 -1 1893 21 1463 2309 206036 42705 3.68966 3.68966 -131.837 -3.68966 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0259138 0.0225344 78 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 6.68 vpr 62.46 MiB -1 -1 0.16 17868 1 0.03 -1 -1 30204 -1 -1 16 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63956 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 23.8 MiB 0.78 474 9649 4023 4847 779 62.5 MiB 0.07 0.00 3.40263 -78.2884 -3.40263 3.40263 0.68 0.000474866 0.000442114 0.0317539 0.0295654 42 1483 48 6.99608e+06 235451 744469. 2576.02 3.14 0.191496 0.164254 27202 183097 -1 1174 20 926 1251 89668 21860 2.99582 2.99582 -81.2561 -2.99582 0 0 949917. 3286.91 0.24 0.05 0.14 -1 -1 0.24 0.0191883 0.0166881 59 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 10.98 vpr 63.37 MiB -1 -1 0.25 18204 1 0.03 -1 -1 30484 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 24.5 MiB 2.90 1081 13206 5184 6272 1750 63.4 MiB 0.13 0.00 3.9338 -132.793 -3.9338 3.9338 0.68 0.000730385 0.00067751 0.0571743 0.053116 40 3653 23 6.99608e+06 250167 706193. 2443.58 5.09 0.204687 0.17896 26914 176310 -1 3103 24 2274 3382 383840 79750 4.68512 4.68512 -148.279 -4.68512 0 0 926341. 3205.33 0.24 0.12 0.15 -1 -1 0.24 0.0339707 0.0295575 103 72 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 9.84 vpr 63.73 MiB -1 -1 0.26 18232 1 0.03 -1 -1 30236 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 24.8 MiB 2.09 1014 9872 4028 5433 411 63.7 MiB 0.10 0.00 4.45145 -145.194 -4.45145 4.45145 0.68 0.000765408 0.000710734 0.0454601 0.0422168 46 3229 45 6.99608e+06 279598 828058. 2865.25 4.74 0.313165 0.270312 28066 200906 -1 2235 22 1873 2532 179334 42457 4.32971 4.32971 -151.097 -4.32971 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0331657 0.0290011 117 90 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_001.v common 9.83 vpr 62.91 MiB -1 -1 0.35 18560 14 0.25 -1 -1 32752 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 277 309 1 206 82 17 17 289 -1 unnamed_device 23.9 MiB 1.55 1186 12542 3264 7587 1691 62.9 MiB 0.13 0.00 8.71839 -177.395 -8.71839 8.71839 0.68 0.000902155 0.000836517 0.067312 0.0624662 38 3483 48 6.79088e+06 242496 678818. 2348.85 4.96 0.285392 0.248338 25966 169698 -1 2756 15 1242 3582 189198 42544 7.79745 7.79745 -167.082 -7.79745 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0305612 0.0270076 129 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_002.v common 8.20 vpr 63.02 MiB -1 -1 0.38 18428 14 0.28 -1 -1 32696 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64536 30 32 272 304 1 199 82 17 17 289 -1 unnamed_device 24.1 MiB 1.97 1105 6490 1416 4592 482 63.0 MiB 0.07 0.00 7.86897 -158.546 -7.86897 7.86897 0.67 0.000885688 0.000820619 0.0358813 0.0332967 36 3118 40 6.79088e+06 269440 648988. 2245.63 2.93 0.240351 0.207618 25390 158009 -1 2591 18 1263 3297 200863 45222 7.24659 7.24659 -159.324 -7.24659 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0341861 0.0300535 125 184 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_003.v common 10.00 vpr 62.88 MiB -1 -1 0.33 18212 11 0.22 -1 -1 32564 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 280 312 1 199 84 17 17 289 -1 unnamed_device 23.9 MiB 1.96 1230 6489 1446 4360 683 62.9 MiB 0.07 0.00 7.04868 -149.017 -7.04868 7.04868 0.67 0.000895013 0.000828805 0.0353562 0.0327888 36 3170 20 6.79088e+06 269440 648988. 2245.63 4.90 0.308224 0.264978 25390 158009 -1 2767 17 1179 3648 200212 45111 6.09953 6.09953 -144.627 -6.09953 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0331084 0.0291334 131 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_004.v common 6.33 vpr 63.10 MiB -1 -1 0.34 18372 12 0.33 -1 -1 32720 -1 -1 23 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 29 32 275 307 1 201 84 17 17 289 -1 unnamed_device 24.1 MiB 1.10 1098 14175 4215 7544 2416 63.1 MiB 0.14 0.00 7.26911 -142.27 -7.26911 7.26911 0.69 0.000784527 0.000725935 0.0725285 0.0671312 38 3090 27 6.79088e+06 309856 678818. 2348.85 1.89 0.213594 0.187805 25966 169698 -1 2378 18 1247 3554 182390 41617 6.58078 6.58078 -137.462 -6.58078 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0346809 0.0304977 137 190 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_005.v common 10.11 vpr 63.11 MiB -1 -1 0.37 18556 13 0.27 -1 -1 32756 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 302 334 1 233 86 17 17 289 -1 unnamed_device 24.3 MiB 1.25 1390 8591 1959 5860 772 63.1 MiB 0.11 0.00 7.78026 -168.052 -7.78026 7.78026 0.67 0.000985004 0.000908867 0.050319 0.0464829 38 4161 45 6.79088e+06 296384 678818. 2348.85 5.50 0.294349 0.256731 25966 169698 -1 3297 19 1624 4586 266966 57831 6.63466 6.63466 -162.239 -6.63466 0 0 902133. 3121.57 0.23 0.10 0.14 -1 -1 0.23 0.0390722 0.034418 149 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_006.v common 10.42 vpr 63.16 MiB -1 -1 0.36 18680 13 0.27 -1 -1 32752 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 292 324 1 217 84 17 17 289 -1 unnamed_device 24.2 MiB 1.37 1328 6672 1413 4852 407 63.2 MiB 0.08 0.00 7.49919 -157.909 -7.49919 7.49919 0.68 0.000931827 0.000862426 0.0377631 0.0349832 46 3288 17 6.79088e+06 269440 828058. 2865.25 5.70 0.32446 0.280025 27406 200422 -1 2768 17 1320 3932 204231 45167 6.38057 6.38057 -147.675 -6.38057 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0346482 0.0305224 137 198 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_007.v common 9.06 vpr 62.34 MiB -1 -1 0.32 18024 12 0.20 -1 -1 32560 -1 -1 21 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 27 32 229 261 1 171 80 17 17 289 -1 unnamed_device 23.8 MiB 1.36 838 8336 2337 5127 872 62.3 MiB 0.08 0.00 6.93882 -125.075 -6.93882 6.93882 0.68 0.000739335 0.000685185 0.0386659 0.0358644 28 2811 29 6.79088e+06 282912 531479. 1839.03 4.70 0.221089 0.190969 23950 126010 -1 2189 19 1390 3147 183913 43797 6.16912 6.16912 -123.368 -6.16912 0 0 648988. 2245.63 0.18 0.08 0.11 -1 -1 0.18 0.0293794 0.0257267 105 150 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_008.v common 8.70 vpr 62.33 MiB -1 -1 0.32 18000 12 0.19 -1 -1 32744 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63828 31 32 229 261 1 184 80 17 17 289 -1 unnamed_device 23.8 MiB 1.96 959 11432 3848 5561 2023 62.3 MiB 0.10 0.00 6.08275 -133.062 -6.08275 6.08275 0.71 0.000728749 0.000674089 0.0515168 0.0476935 46 2414 21 6.79088e+06 229024 828058. 2865.25 3.49 0.250423 0.21682 27406 200422 -1 1944 14 950 2584 124538 28780 5.30961 5.30961 -124.482 -5.30961 0 0 1.01997e+06 3529.29 0.26 0.06 0.17 -1 -1 0.26 0.0239083 0.021181 104 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_009.v common 8.96 vpr 62.36 MiB -1 -1 0.35 18244 12 0.16 -1 -1 32660 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 31 32 235 267 1 195 83 17 17 289 -1 unnamed_device 23.8 MiB 3.10 1109 11783 3162 6398 2223 62.4 MiB 0.11 0.00 7.00732 -147.482 -7.00732 7.00732 0.68 0.000759137 0.000702974 0.0516151 0.0477848 38 2960 20 6.79088e+06 269440 678818. 2348.85 2.71 0.177733 0.15595 25966 169698 -1 2417 17 1175 2973 165242 36496 6.1825 6.1825 -143.761 -6.1825 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0276696 0.0243924 113 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_010.v common 8.73 vpr 62.47 MiB -1 -1 0.34 17852 13 0.19 -1 -1 32632 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 32 32 250 282 1 180 80 17 17 289 -1 unnamed_device 23.9 MiB 1.93 887 9196 2678 4545 1973 62.5 MiB 0.09 0.00 7.40889 -158.515 -7.40889 7.40889 0.68 0.000808633 0.000749498 0.0465039 0.0431074 44 2266 30 6.79088e+06 215552 787024. 2723.27 3.52 0.280405 0.241921 27118 194962 -1 1869 17 903 2328 121876 29786 6.74533 6.74533 -150.155 -6.74533 0 0 997811. 3452.63 0.26 0.07 0.18 -1 -1 0.26 0.0302382 0.0266543 107 156 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_011.v common 8.51 vpr 62.33 MiB -1 -1 0.31 17980 12 0.19 -1 -1 32524 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63828 30 32 216 248 1 160 81 17 17 289 -1 unnamed_device 23.6 MiB 1.38 683 10756 3090 5343 2323 62.3 MiB 0.09 0.00 7.23574 -141.324 -7.23574 7.23574 0.78 0.000706493 0.000654479 0.0462039 0.042787 36 2333 41 6.79088e+06 255968 648988. 2245.63 3.83 0.267836 0.231596 25390 158009 -1 1748 15 917 2127 113478 29299 6.44778 6.44778 -140.479 -6.44778 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0239673 0.0211876 97 128 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_012.v common 10.35 vpr 62.49 MiB -1 -1 0.29 17940 12 0.15 -1 -1 32728 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63992 32 32 236 268 1 170 80 17 17 289 -1 unnamed_device 24.0 MiB 1.96 1001 7820 2636 3784 1400 62.5 MiB 0.08 0.00 6.03241 -146.623 -6.03241 6.03241 0.68 0.000732438 0.000678477 0.0362 0.0335658 36 3109 40 6.79088e+06 215552 648988. 2245.63 5.35 0.210193 0.182085 25390 158009 -1 2423 16 1077 2911 172059 37799 5.26271 5.26271 -143.485 -5.26271 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0261089 0.0230252 100 142 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_013.v common 9.44 vpr 63.25 MiB -1 -1 0.37 18644 13 0.27 -1 -1 32756 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64768 32 32 283 315 1 219 82 17 17 289 -1 unnamed_device 24.3 MiB 1.80 1233 12720 4130 6639 1951 63.2 MiB 0.14 0.00 7.97631 -171.858 -7.97631 7.97631 0.71 0.000912204 0.000845179 0.0728533 0.0674482 38 3289 21 6.79088e+06 242496 678818. 2348.85 4.28 0.367197 0.31771 25966 169698 -1 2546 18 1306 3376 186303 42354 6.66272 6.66272 -157.742 -6.66272 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0349663 0.0307801 132 189 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_014.v common 8.20 vpr 63.18 MiB -1 -1 0.26 18556 14 0.32 -1 -1 32756 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 303 335 1 229 86 17 17 289 -1 unnamed_device 24.3 MiB 1.40 1316 6701 1480 4957 264 63.2 MiB 0.08 0.00 8.93186 -185.128 -8.93186 8.93186 0.68 0.000965431 0.000893012 0.0386777 0.0358164 40 3047 17 6.79088e+06 296384 706193. 2443.58 3.48 0.327552 0.281403 26254 175826 -1 3015 19 1367 3486 219715 48573 7.95051 7.95051 -180.852 -7.95051 0 0 926341. 3205.33 0.25 0.09 0.16 -1 -1 0.25 0.0361497 0.032441 151 209 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_015.v common 7.88 vpr 62.41 MiB -1 -1 0.30 18032 11 0.17 -1 -1 32720 -1 -1 21 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 29 32 225 257 1 177 82 17 17 289 -1 unnamed_device 23.9 MiB 2.14 908 8626 2180 6066 380 62.4 MiB 0.08 0.00 6.88418 -136.715 -6.88418 6.88418 0.72 0.000724108 0.000669933 0.0379614 0.0351332 34 3042 48 6.79088e+06 282912 618332. 2139.56 2.61 0.212511 0.183897 25102 150614 -1 2376 26 1191 2748 267336 97173 5.91503 5.91503 -133.401 -5.91503 0 0 787024. 2723.27 0.21 0.11 0.14 -1 -1 0.21 0.0363391 0.0316751 105 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_016.v common 7.96 vpr 63.04 MiB -1 -1 0.38 18472 12 0.27 -1 -1 32884 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 24.2 MiB 1.20 1369 10813 2694 6226 1893 63.0 MiB 0.11 0.00 7.38162 -160.306 -7.38162 7.38162 0.68 0.000976169 0.000903908 0.0580793 0.0538549 38 3708 26 6.79088e+06 323328 678818. 2348.85 3.41 0.265094 0.231212 25966 169698 -1 2967 17 1375 4182 225540 49634 6.53388 6.53388 -153.856 -6.53388 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0365009 0.0322732 145 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_017.v common 7.95 vpr 62.96 MiB -1 -1 0.36 18324 14 0.25 -1 -1 32764 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 23.9 MiB 1.79 1236 11613 2985 6550 2078 63.0 MiB 0.12 0.00 8.17676 -170.064 -8.17676 8.17676 0.68 0.000895154 0.000828634 0.0602686 0.0558603 38 3415 19 6.79088e+06 269440 678818. 2348.85 2.86 0.236385 0.206141 25966 169698 -1 2691 18 1293 3341 180323 40261 6.8496 6.8496 -161.568 -6.8496 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0341714 0.0300408 126 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_018.v common 9.18 vpr 62.26 MiB -1 -1 0.28 18284 12 0.20 -1 -1 32452 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63752 32 32 227 259 1 172 81 17 17 289 -1 unnamed_device 23.8 MiB 1.71 883 11281 4156 5456 1669 62.3 MiB 0.10 0.00 7.10207 -150.267 -7.10207 7.10207 0.67 0.000749718 0.000694254 0.0514526 0.0475921 38 2409 30 6.79088e+06 229024 678818. 2348.85 4.30 0.322196 0.278203 25966 169698 -1 1894 31 962 2582 283428 126209 5.93857 5.93857 -140.954 -5.93857 0 0 902133. 3121.57 0.23 0.13 0.15 -1 -1 0.23 0.0427003 0.0370227 104 133 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_019.v common 6.39 vpr 61.92 MiB -1 -1 0.23 17736 10 0.12 -1 -1 32336 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63408 30 32 175 207 1 131 74 17 17 289 -1 unnamed_device 23.4 MiB 1.68 693 4724 1073 3462 189 61.9 MiB 0.05 0.00 5.04691 -118.984 -5.04691 5.04691 0.67 0.000563675 0.000523981 0.0191994 0.0178743 34 2177 27 6.79088e+06 161664 618332. 2139.56 1.88 0.111431 0.0963873 25102 150614 -1 1767 16 696 1667 107608 23786 4.59685 4.59685 -120.776 -4.59685 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0196663 0.0172295 64 87 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_020.v common 8.37 vpr 62.29 MiB -1 -1 0.34 18060 13 0.19 -1 -1 32640 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 31 32 231 263 1 185 81 17 17 289 -1 unnamed_device 23.7 MiB 1.83 1078 7081 1598 4291 1192 62.3 MiB 0.07 0.00 7.44012 -155.367 -7.44012 7.44012 0.68 0.000753367 0.000693114 0.0332091 0.0307679 38 2549 23 6.79088e+06 242496 678818. 2348.85 3.46 0.243032 0.209129 25966 169698 -1 2114 18 1002 2395 111954 26863 6.19723 6.19723 -141.823 -6.19723 0 0 902133. 3121.57 0.24 0.06 0.15 -1 -1 0.24 0.0225209 0.0203014 107 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_021.v common 7.76 vpr 63.07 MiB -1 -1 0.30 18572 13 0.28 -1 -1 32776 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64588 32 32 304 336 1 225 85 17 17 289 -1 unnamed_device 24.2 MiB 1.84 1376 8083 2272 5247 564 63.1 MiB 0.09 0.00 7.87531 -169.049 -7.87531 7.87531 0.67 0.000940563 0.000868883 0.0454848 0.042111 40 3383 30 6.79088e+06 282912 706193. 2443.58 2.64 0.248911 0.215851 26254 175826 -1 3149 18 1544 4193 282548 62973 7.01948 7.01948 -163.981 -7.01948 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0368439 0.0324505 142 210 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_022.v common 9.22 vpr 62.96 MiB -1 -1 0.38 18352 13 0.29 -1 -1 32464 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64476 32 32 288 320 1 217 85 17 17 289 -1 unnamed_device 24.3 MiB 1.99 1366 6595 1403 4488 704 63.0 MiB 0.08 0.00 7.64506 -164.428 -7.64506 7.64506 0.68 0.000938184 0.000864485 0.0379158 0.035124 38 3755 26 6.79088e+06 282912 678818. 2348.85 3.87 0.23603 0.204444 25966 169698 -1 3109 17 1444 4235 254551 55709 6.63122 6.63122 -156.188 -6.63122 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.0350236 0.0308965 141 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_023.v common 6.52 vpr 61.90 MiB -1 -1 0.23 17688 9 0.11 -1 -1 32532 -1 -1 18 26 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63384 26 32 152 184 1 121 76 17 17 289 -1 unnamed_device 23.3 MiB 1.06 706 10316 3839 4776 1701 61.9 MiB 0.07 0.00 5.04309 -98.1528 -5.04309 5.04309 0.69 0.000514701 0.000478902 0.0351508 0.0326858 34 1633 17 6.79088e+06 242496 618332. 2139.56 2.61 0.16855 0.145202 25102 150614 -1 1485 15 582 1299 84732 19396 4.11565 4.11565 -91.5069 -4.11565 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.0170704 0.0149702 67 76 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_024.v common 7.28 vpr 62.98 MiB -1 -1 0.33 18280 13 0.28 -1 -1 32808 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 287 319 1 211 83 17 17 289 -1 unnamed_device 24.0 MiB 1.30 1125 5843 1079 4624 140 63.0 MiB 0.07 0.00 8.08076 -161.905 -8.08076 8.08076 0.87 0.000921051 0.000853489 0.0336045 0.0311646 38 3541 37 6.79088e+06 255968 678818. 2348.85 2.55 0.202712 0.17527 25966 169698 -1 2774 19 1484 4002 217994 49808 7.04987 7.04987 -155.269 -7.04987 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0367639 0.0322963 130 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_025.v common 5.94 vpr 61.84 MiB -1 -1 0.23 17568 8 0.08 -1 -1 32204 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63328 32 32 154 186 1 126 81 17 17 289 -1 unnamed_device 23.3 MiB 1.62 620 6381 1458 4287 636 61.8 MiB 0.06 0.00 3.97346 -91.5032 -3.97346 3.97346 0.69 0.00051107 0.000472799 0.0227777 0.0211477 34 1854 23 6.79088e+06 229024 618332. 2139.56 1.53 0.121409 0.104734 25102 150614 -1 1546 20 734 1509 107953 25155 4.08086 4.08086 -100.889 -4.08086 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.020428 0.017779 63 60 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_026.v common 9.02 vpr 62.89 MiB -1 -1 0.32 18316 15 0.29 -1 -1 32756 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 254 286 1 202 83 17 17 289 -1 unnamed_device 24.1 MiB 1.78 1221 6203 1498 4397 308 62.9 MiB 0.07 0.00 8.46989 -175.396 -8.46989 8.46989 0.68 0.0008469 0.000784802 0.0331709 0.0307728 38 3232 21 6.79088e+06 255968 678818. 2348.85 4.06 0.295361 0.25314 25966 169698 -1 2773 18 1360 3837 210322 46659 7.41463 7.41463 -167.004 -7.41463 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0322498 0.0282783 122 160 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_027.v common 8.07 vpr 62.70 MiB -1 -1 0.30 18304 13 0.22 -1 -1 32924 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 260 292 1 193 82 17 17 289 -1 unnamed_device 23.8 MiB 1.64 1121 7558 1845 4695 1018 62.7 MiB 0.08 0.00 6.82492 -146.441 -6.82492 6.82492 0.68 0.000850726 0.000789392 0.0393734 0.0365309 40 2852 25 6.79088e+06 242496 706193. 2443.58 3.20 0.223747 0.194248 26254 175826 -1 2698 20 1308 3901 252106 54121 6.0649 6.0649 -143.158 -6.0649 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0351348 0.0307725 117 166 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_028.v common 6.95 vpr 63.06 MiB -1 -1 0.34 18316 13 0.33 -1 -1 32672 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 279 311 1 202 83 17 17 289 -1 unnamed_device 24.1 MiB 1.65 1252 5663 1219 3717 727 63.1 MiB 0.07 0.00 8.11176 -171.626 -8.11176 8.11176 0.67 0.000915592 0.000849441 0.0323924 0.0300846 38 3328 22 6.79088e+06 255968 678818. 2348.85 1.99 0.172875 0.150283 25966 169698 -1 2770 19 1361 4207 221978 49045 7.12472 7.12472 -161.614 -7.12472 0 0 902133. 3121.57 0.23 0.09 0.17 -1 -1 0.23 0.0360087 0.0315879 136 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_029.v common 6.93 vpr 62.38 MiB -1 -1 0.31 18028 12 0.20 -1 -1 32612 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63880 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 23.8 MiB 1.82 909 9196 2899 4953 1344 62.4 MiB 0.09 0.00 6.83474 -151.755 -6.83474 6.83474 0.67 0.000752286 0.00069668 0.0432803 0.0400788 40 2458 21 6.79088e+06 215552 706193. 2443.58 1.97 0.190995 0.166078 26254 175826 -1 2162 18 1093 2601 156654 36987 6.27979 6.27979 -148.637 -6.27979 0 0 926341. 3205.33 0.24 0.07 0.16 -1 -1 0.24 0.0288585 0.0253988 103 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_030.v common 6.56 vpr 62.17 MiB -1 -1 0.28 17996 11 0.18 -1 -1 32648 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63664 30 32 213 245 1 162 81 17 17 289 -1 unnamed_device 23.7 MiB 1.84 874 9531 2423 5364 1744 62.2 MiB 0.08 0.00 6.09984 -129.865 -6.09984 6.09984 0.68 0.000680234 0.000630489 0.0398047 0.0369001 36 2648 21 6.79088e+06 255968 648988. 2245.63 1.70 0.144395 0.126241 25390 158009 -1 2057 18 979 2242 129108 29960 5.36338 5.36338 -123.968 -5.36338 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0260797 0.0229117 96 125 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_031.v common 6.98 vpr 62.39 MiB -1 -1 0.32 18060 11 0.17 -1 -1 32764 -1 -1 21 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 28 32 227 259 1 173 81 17 17 289 -1 unnamed_device 23.8 MiB 1.13 945 9706 2749 5392 1565 62.4 MiB 0.09 0.00 6.65573 -132.254 -6.65573 6.65573 0.67 0.000738501 0.00068436 0.0437189 0.0404976 36 2852 44 6.79088e+06 282912 648988. 2245.63 2.80 0.213937 0.185354 25390 158009 -1 2253 17 1028 2705 156034 35206 5.82893 5.82893 -129.747 -5.82893 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0272512 0.0239809 109 145 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_032.v common 9.05 vpr 62.93 MiB -1 -1 0.30 18004 12 0.20 -1 -1 32696 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 274 306 1 208 81 17 17 289 -1 unnamed_device 24.0 MiB 2.02 1298 10581 2710 6410 1461 62.9 MiB 0.11 0.00 7.32069 -168.079 -7.32069 7.32069 0.68 0.000866047 0.000802328 0.0559467 0.051879 46 2887 19 6.79088e+06 229024 828058. 2865.25 3.71 0.293435 0.254094 27406 200422 -1 2463 17 1210 2743 152797 34378 6.36943 6.36943 -157.522 -6.36943 0 0 1.01997e+06 3529.29 0.32 0.08 0.17 -1 -1 0.32 0.031697 0.0279496 117 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_033.v common 8.85 vpr 62.24 MiB -1 -1 0.28 18116 12 0.16 -1 -1 32604 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63736 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 23.7 MiB 1.90 906 12464 4448 5883 2133 62.2 MiB 0.11 0.00 6.76776 -137.818 -6.76776 6.76776 0.67 0.000744043 0.000689224 0.0566499 0.0524031 36 3090 39 6.79088e+06 229024 648988. 2245.63 3.86 0.228964 0.199614 25390 158009 -1 2201 20 1328 3715 233391 52318 5.95423 5.95423 -138.769 -5.95423 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0309692 0.0271106 101 146 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_034.v common 8.08 vpr 62.29 MiB -1 -1 0.33 18004 10 0.14 -1 -1 32772 -1 -1 17 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 29 32 220 252 1 167 78 17 17 289 -1 unnamed_device 23.8 MiB 0.92 921 7382 1707 5211 464 62.3 MiB 0.07 0.00 5.94728 -131.013 -5.94728 5.94728 0.68 0.000727236 0.000673656 0.0352613 0.0326909 38 2468 29 6.79088e+06 229024 678818. 2348.85 4.06 0.260045 0.224244 25966 169698 -1 2070 17 911 2517 145509 32044 5.07353 5.07353 -123.658 -5.07353 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0268763 0.0237209 101 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_035.v common 9.62 vpr 63.20 MiB -1 -1 0.38 18772 13 0.29 -1 -1 32816 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 315 347 1 228 85 17 17 289 -1 unnamed_device 24.4 MiB 1.46 1377 7339 1645 5038 656 63.2 MiB 0.09 0.00 8.22902 -172.723 -8.22902 8.22902 0.68 0.000992821 0.000918066 0.0432912 0.0400641 44 3400 35 6.79088e+06 282912 787024. 2723.27 4.63 0.348934 0.300869 27118 194962 -1 2777 18 1312 3813 206485 45286 7.09671 7.09671 -164.732 -7.09671 0 0 997811. 3452.63 0.30 0.09 0.19 -1 -1 0.30 0.0386834 0.0340599 147 221 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_036.v common 9.16 vpr 62.88 MiB -1 -1 0.38 18768 14 0.31 -1 -1 33332 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 32 32 282 314 1 224 83 17 17 289 -1 unnamed_device 23.9 MiB 1.52 1265 11423 3369 5757 2297 62.9 MiB 0.12 0.00 7.78618 -171.47 -7.78618 7.78618 0.67 0.000925089 0.000857163 0.0636694 0.0589629 46 3400 17 6.79088e+06 255968 828058. 2865.25 4.15 0.337266 0.292242 27406 200422 -1 2758 20 1410 3910 205662 45475 6.87069 6.87069 -163.476 -6.87069 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0386459 0.0339829 137 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_037.v common 7.27 vpr 62.26 MiB -1 -1 0.31 17960 12 0.15 -1 -1 32456 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63756 31 32 241 273 1 170 80 17 17 289 -1 unnamed_device 23.8 MiB 1.94 1020 5756 1178 4150 428 62.3 MiB 0.06 0.00 7.06821 -153.603 -7.06821 7.06821 0.68 0.000744932 0.000690059 0.0278447 0.0258204 34 2769 38 6.79088e+06 229024 618332. 2139.56 2.29 0.159895 0.138624 25102 150614 -1 2395 18 1022 2760 176300 38852 6.74523 6.74523 -154.445 -6.74523 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0285209 0.0250456 103 150 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_038.v common 7.74 vpr 63.12 MiB -1 -1 0.35 18548 12 0.28 -1 -1 32808 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64636 31 32 307 339 1 223 87 17 17 289 -1 unnamed_device 24.3 MiB 2.37 1316 9879 2556 6613 710 63.1 MiB 0.11 0.00 7.54626 -159.356 -7.54626 7.54626 0.68 0.000978871 0.000906047 0.0542455 0.050229 38 3535 31 6.79088e+06 323328 678818. 2348.85 1.98 0.222686 0.194709 25966 169698 -1 2947 17 1380 3992 211528 47162 6.49016 6.49016 -151.667 -6.49016 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0363897 0.0321084 146 216 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_039.v common 7.17 vpr 63.06 MiB -1 -1 0.36 18708 14 0.34 -1 -1 32824 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 31 32 293 325 1 208 86 17 17 289 -1 unnamed_device 24.3 MiB 1.22 1251 5189 1031 3752 406 63.1 MiB 0.06 0.00 8.43595 -166.985 -8.43595 8.43595 0.67 0.000941568 0.00087218 0.0296329 0.0274785 34 3867 46 6.79088e+06 309856 618332. 2139.56 2.65 0.226229 0.195172 25102 150614 -1 3016 22 1734 4891 301159 66213 7.40657 7.40657 -161.983 -7.40657 0 0 787024. 2723.27 0.21 0.11 0.13 -1 -1 0.21 0.0423609 0.0370859 142 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_040.v common 10.12 vpr 62.92 MiB -1 -1 0.41 18564 13 0.26 -1 -1 32820 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 31 32 276 308 1 214 84 17 17 289 -1 unnamed_device 23.9 MiB 1.89 1271 13626 4763 6275 2588 62.9 MiB 0.14 0.00 8.48106 -170.153 -8.48106 8.48106 0.72 0.000896877 0.000830493 0.0711171 0.0659487 38 3853 46 6.79088e+06 282912 678818. 2348.85 4.70 0.288367 0.25131 25966 169698 -1 2921 25 1426 3817 344015 115253 7.3508 7.3508 -160.521 -7.3508 0 0 902133. 3121.57 0.23 0.13 0.15 -1 -1 0.23 0.0442758 0.0387124 131 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_041.v common 21.08 vpr 62.95 MiB -1 -1 0.36 18384 13 0.25 -1 -1 32768 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 31 32 269 301 1 203 83 17 17 289 -1 unnamed_device 23.9 MiB 1.29 1222 7823 1713 5702 408 63.0 MiB 0.09 0.00 7.81091 -159.172 -7.81091 7.81091 0.67 0.000879657 0.000814345 0.0416921 0.0386357 38 3516 39 6.79088e+06 269440 678818. 2348.85 16.51 0.44 0.377587 25966 169698 -1 2802 17 1267 3682 219549 47592 6.72962 6.72962 -149.438 -6.72962 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0330507 0.0291561 124 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_042.v common 6.55 vpr 62.66 MiB -1 -1 0.32 18032 12 0.23 -1 -1 32812 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64160 32 32 264 296 1 184 79 17 17 289 -1 unnamed_device 23.8 MiB 1.36 1065 5487 1235 3857 395 62.7 MiB 0.06 0.00 6.67703 -143.122 -6.67703 6.67703 0.68 0.000835448 0.000773745 0.031151 0.0288794 34 2811 41 6.79088e+06 202080 618332. 2139.56 2.00 0.180944 0.156556 25102 150614 -1 2268 14 988 2481 146427 33391 5.86813 5.86813 -136.449 -5.86813 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0266972 0.023561 110 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_043.v common 8.45 vpr 63.23 MiB -1 -1 0.44 19196 14 0.41 -1 -1 32816 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 324 356 1 243 85 17 17 289 -1 unnamed_device 24.4 MiB 1.08 1554 7897 2063 5110 724 63.2 MiB 0.10 0.00 8.5032 -181.474 -8.5032 8.5032 0.68 0.00103731 0.000959188 0.0489008 0.0452455 40 3897 28 6.79088e+06 282912 706193. 2443.58 3.75 0.279066 0.242753 26254 175826 -1 3723 19 1704 5197 378542 93252 7.3039 7.3039 -174.442 -7.3039 0 0 926341. 3205.33 0.24 0.13 0.15 -1 -1 0.24 0.0423379 0.0372923 159 230 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_044.v common 12.90 vpr 62.73 MiB -1 -1 0.29 17980 11 0.21 -1 -1 32356 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 31 32 249 281 1 188 79 17 17 289 -1 unnamed_device 23.9 MiB 1.76 1138 3966 751 3109 106 62.7 MiB 0.05 0.00 6.36587 -138.564 -6.36587 6.36587 0.67 0.000803751 0.000745093 0.0231677 0.0214797 36 3745 42 6.79088e+06 215552 648988. 2245.63 8.02 0.313628 0.269084 25390 158009 -1 2890 20 1493 4258 294609 62197 5.61398 5.61398 -139.411 -5.61398 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0334021 0.0292252 112 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_045.v common 9.88 vpr 63.06 MiB -1 -1 0.39 18636 13 0.23 -1 -1 33296 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 31 32 284 316 1 191 84 17 17 289 -1 unnamed_device 24.0 MiB 1.09 1227 8868 2138 5562 1168 63.1 MiB 0.10 0.00 8.05648 -168.256 -8.05648 8.05648 0.75 0.000904846 0.000837372 0.0487614 0.04519 36 3070 37 6.79088e+06 282912 648988. 2245.63 5.40 0.369678 0.318053 25390 158009 -1 2589 19 1196 3731 211584 47344 6.96022 6.96022 -156.818 -6.96022 0 0 828058. 2865.25 0.22 0.09 0.13 -1 -1 0.22 0.0366455 0.0320949 137 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_046.v common 6.75 vpr 63.07 MiB -1 -1 0.36 18444 12 0.25 -1 -1 32688 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 32 32 303 335 1 210 85 17 17 289 -1 unnamed_device 24.0 MiB 1.41 1298 12361 2924 7866 1571 63.1 MiB 0.13 0.00 6.98572 -155.809 -6.98572 6.98572 0.68 0.000960348 0.00088747 0.0678562 0.0627557 38 3592 19 6.79088e+06 282912 678818. 2348.85 1.96 0.217595 0.190633 25966 169698 -1 2849 20 1609 4984 262433 57372 5.91508 5.91508 -148.327 -5.91508 0 0 902133. 3121.57 0.23 0.11 0.14 -1 -1 0.23 0.0401753 0.0352171 145 209 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_047.v common 6.59 vpr 62.89 MiB -1 -1 0.33 18236 13 0.24 -1 -1 32712 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 272 304 1 195 84 17 17 289 -1 unnamed_device 24.0 MiB 1.21 1155 7770 1729 5200 841 62.9 MiB 0.08 0.00 7.69291 -164.646 -7.69291 7.69291 0.67 0.000890894 0.000825103 0.0413775 0.0383659 36 2952 19 6.79088e+06 269440 648988. 2245.63 2.21 0.214129 0.185943 25390 158009 -1 2586 17 1154 3000 174478 39827 6.83149 6.83149 -160.017 -6.83149 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0327208 0.0287642 128 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_048.v common 10.08 vpr 62.82 MiB -1 -1 0.27 18556 13 0.21 -1 -1 33228 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 271 303 1 213 82 17 17 289 -1 unnamed_device 23.9 MiB 2.13 1245 11296 3823 5504 1969 62.8 MiB 0.11 0.00 7.62172 -162.859 -7.62172 7.62172 0.67 0.000868727 0.000805283 0.058691 0.0543905 44 3263 36 6.79088e+06 242496 787024. 2723.27 4.84 0.330926 0.28597 27118 194962 -1 2597 17 1206 3178 182003 39765 6.63466 6.63466 -152.703 -6.63466 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0353558 0.0314772 123 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_049.v common 9.53 vpr 63.12 MiB -1 -1 0.37 18532 12 0.25 -1 -1 32880 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 288 320 1 213 86 17 17 289 -1 unnamed_device 24.4 MiB 1.72 1309 8402 2054 5716 632 63.1 MiB 0.09 0.00 7.46308 -161.108 -7.46308 7.46308 0.67 0.000929497 0.000860364 0.0451429 0.0417947 44 3484 26 6.79088e+06 296384 787024. 2723.27 4.49 0.321641 0.276818 27118 194962 -1 2825 18 1239 3984 221614 48189 6.67037 6.67037 -152.367 -6.67037 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.03696 0.0325814 141 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_050.v common 9.26 vpr 63.20 MiB -1 -1 0.38 18908 13 0.30 -1 -1 33320 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 306 338 1 225 85 17 17 289 -1 unnamed_device 24.4 MiB 1.21 1275 4735 898 3382 455 63.2 MiB 0.06 0.00 8.09732 -172.599 -8.09732 8.09732 0.70 0.000986659 0.000913785 0.0303704 0.0281843 40 3115 20 6.79088e+06 282912 706193. 2443.58 4.65 0.349691 0.300318 26254 175826 -1 2900 20 1373 3870 305211 93998 6.90978 6.90978 -160.239 -6.90978 0 0 926341. 3205.33 0.24 0.12 0.15 -1 -1 0.24 0.0409193 0.0359345 146 212 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_051.v common 8.73 vpr 63.00 MiB -1 -1 0.34 18180 14 0.27 -1 -1 32768 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 32 32 262 294 1 194 83 17 17 289 -1 unnamed_device 24.0 MiB 1.29 1332 6383 1390 4359 634 63.0 MiB 0.07 0.00 8.35004 -171.056 -8.35004 8.35004 0.67 0.00086328 0.0008003 0.0340564 0.0315964 46 2894 25 6.79088e+06 255968 828058. 2865.25 4.18 0.328645 0.282301 27406 200422 -1 2584 19 1154 3294 165810 37107 7.17517 7.17517 -156.302 -7.17517 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0341166 0.0299677 125 168 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_052.v common 9.12 vpr 63.04 MiB -1 -1 0.34 18288 13 0.24 -1 -1 32780 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 291 323 1 212 84 17 17 289 -1 unnamed_device 24.0 MiB 1.59 1280 6306 1448 4128 730 63.0 MiB 0.07 0.00 8.18011 -164.079 -8.18011 8.18011 0.67 0.000934987 0.000866248 0.0359194 0.0333388 44 3254 31 6.79088e+06 269440 787024. 2723.27 4.24 0.30938 0.26632 27118 194962 -1 2770 17 1302 3567 195331 44666 7.38995 7.38995 -161.099 -7.38995 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0339991 0.0299436 136 197 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_053.v common 19.68 vpr 63.10 MiB -1 -1 0.41 18428 13 0.27 -1 -1 32684 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 31 32 302 334 1 224 85 17 17 289 -1 unnamed_device 24.3 MiB 1.55 1301 8083 1880 5114 1089 63.1 MiB 0.09 0.00 7.82203 -169.793 -7.82203 7.82203 0.68 0.000957904 0.000887264 0.0456349 0.0423038 38 3364 33 6.79088e+06 296384 678818. 2348.85 14.63 0.422867 0.363407 25966 169698 -1 2875 19 1442 4033 203579 45890 7.16392 7.16392 -162.446 -7.16392 0 0 902133. 3121.57 0.30 0.09 0.16 -1 -1 0.30 0.0382525 0.0336106 144 211 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_054.v common 6.48 vpr 63.01 MiB -1 -1 0.39 18496 12 0.31 -1 -1 32884 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 24.2 MiB 1.19 1349 6967 1481 4942 544 63.0 MiB 0.08 0.00 7.58336 -160.336 -7.58336 7.58336 0.68 0.000988356 0.000916482 0.0402369 0.0372616 38 3461 22 6.79088e+06 282912 678818. 2348.85 1.93 0.202868 0.176476 25966 169698 -1 2825 17 1341 3714 193952 43570 6.65918 6.65918 -153.457 -6.65918 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0358625 0.0316352 147 214 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_055.v common 8.44 vpr 62.20 MiB -1 -1 0.23 18144 11 0.13 -1 -1 32620 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63688 32 32 216 248 1 161 78 17 17 289 -1 unnamed_device 23.5 MiB 1.16 854 6552 1491 4896 165 62.2 MiB 0.07 0.00 6.10408 -131.471 -6.10408 6.10408 0.68 0.000692639 0.000641916 0.029647 0.0274593 36 2444 29 6.79088e+06 188608 648988. 2245.63 4.40 0.259656 0.222814 25390 158009 -1 1945 16 889 2176 140210 32931 5.23808 5.23808 -129.554 -5.23808 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.024101 0.0212212 91 122 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_056.v common 8.30 vpr 62.78 MiB -1 -1 0.34 18172 13 0.21 -1 -1 32776 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 254 286 1 196 83 17 17 289 -1 unnamed_device 24.2 MiB 1.54 1125 4583 881 3537 165 62.8 MiB 0.05 0.00 7.79846 -167.848 -7.79846 7.79846 0.68 0.000824744 0.000763847 0.0241521 0.0223916 36 3266 28 6.79088e+06 255968 648988. 2245.63 3.58 0.201277 0.173577 25390 158009 -1 2548 15 1146 2804 171576 37989 6.91332 6.91332 -163.48 -6.91332 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0280936 0.0247287 117 160 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_057.v common 10.67 vpr 63.46 MiB -1 -1 0.39 19068 14 0.48 -1 -1 33080 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64980 32 32 338 370 1 252 88 17 17 289 -1 unnamed_device 24.5 MiB 1.05 1553 10618 2680 6617 1321 63.5 MiB 0.12 0.00 9.27313 -184.831 -9.27313 9.27313 0.67 0.00108656 0.00100472 0.0634725 0.0587754 44 4343 46 6.79088e+06 323328 787024. 2723.27 5.94 0.449202 0.388097 27118 194962 -1 3334 17 1642 4998 271773 59529 8.0278 8.0278 -171.471 -8.0278 0 0 997811. 3452.63 0.26 0.11 0.18 -1 -1 0.26 0.0404821 0.0357887 171 244 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_058.v common 7.12 vpr 62.95 MiB -1 -1 0.35 18224 13 0.37 -1 -1 32736 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 271 303 1 215 83 17 17 289 -1 unnamed_device 23.9 MiB 1.29 1263 10343 2759 5468 2116 62.9 MiB 0.11 0.00 7.95077 -174.752 -7.95077 7.95077 0.70 0.000892807 0.000826735 0.0552015 0.051037 38 3631 26 6.79088e+06 255968 678818. 2348.85 2.39 0.204615 0.179511 25966 169698 -1 2958 16 1335 3587 203647 44404 6.89761 6.89761 -163.806 -6.89761 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0316113 0.0278909 131 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_059.v common 7.08 vpr 62.42 MiB -1 -1 0.33 18000 11 0.19 -1 -1 32636 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 30 32 224 256 1 162 79 17 17 289 -1 unnamed_device 23.6 MiB 0.46 883 7853 1940 5339 574 62.4 MiB 0.07 0.00 6.27294 -133.979 -6.27294 6.27294 0.68 0.000727704 0.000673504 0.0365258 0.0338473 38 2297 16 6.79088e+06 229024 678818. 2348.85 3.53 0.247846 0.213462 25966 169698 -1 1918 13 859 2398 122973 27825 5.57484 5.57484 -132.391 -5.57484 0 0 902133. 3121.57 0.23 0.06 0.15 -1 -1 0.23 0.0230238 0.020539 100 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_060.v common 9.59 vpr 63.27 MiB -1 -1 0.44 19360 15 0.57 -1 -1 32972 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64788 32 32 351 383 1 260 89 17 17 289 -1 unnamed_device 24.3 MiB 1.03 1559 7217 1529 4884 804 63.3 MiB 0.09 0.00 9.47559 -189.1 -9.47559 9.47559 0.67 0.00111852 0.00103046 0.0453943 0.0419644 44 4250 22 6.79088e+06 336800 787024. 2723.27 4.74 0.378344 0.326392 27118 194962 -1 3350 21 1776 5388 286227 64424 8.2046 8.2046 -181.247 -8.2046 0 0 997811. 3452.63 0.26 0.12 0.17 -1 -1 0.26 0.0485633 0.0426738 180 257 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_061.v common 11.02 vpr 63.11 MiB -1 -1 0.36 18304 13 0.31 -1 -1 32752 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 32 32 297 329 1 215 84 17 17 289 -1 unnamed_device 24.3 MiB 1.07 1327 11613 3037 7153 1423 63.1 MiB 0.12 0.00 8.35567 -179.275 -8.35567 8.35567 0.68 0.000949374 0.000878156 0.0639538 0.0591726 36 3892 45 6.79088e+06 269440 648988. 2245.63 6.60 0.297212 0.258786 25390 158009 -1 2951 20 1522 4208 254330 56298 7.26121 7.26121 -171.101 -7.26121 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0397923 0.0349071 139 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_062.v common 7.75 vpr 62.41 MiB -1 -1 0.28 17768 11 0.13 -1 -1 32692 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 32 32 231 263 1 166 78 17 17 289 -1 unnamed_device 23.9 MiB 1.60 913 8544 1751 6687 106 62.4 MiB 0.08 0.00 6.71833 -138.755 -6.71833 6.71833 0.68 0.000728941 0.000675234 0.0403431 0.0374041 36 2680 22 6.79088e+06 188608 648988. 2245.63 3.14 0.249328 0.214559 25390 158009 -1 2048 22 1004 2482 144860 33236 5.57057 5.57057 -137.043 -5.57057 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0321826 0.0281707 95 137 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_063.v common 6.72 vpr 63.19 MiB -1 -1 0.37 18448 12 0.29 -1 -1 32896 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 305 337 1 211 84 17 17 289 -1 unnamed_device 24.4 MiB 0.99 1275 5757 1099 4374 284 63.2 MiB 0.07 0.00 8.05812 -164.83 -8.05812 8.05812 0.69 0.000955372 0.000882946 0.0340212 0.0315068 40 3130 19 6.79088e+06 269440 706193. 2443.58 2.32 0.224241 0.193688 26254 175826 -1 2958 18 1330 4151 264505 58696 7.08896 7.08896 -157.183 -7.08896 0 0 926341. 3205.33 0.26 0.10 0.15 -1 -1 0.26 0.0376882 0.0332003 145 211 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_064.v common 7.24 vpr 62.54 MiB -1 -1 0.31 17980 12 0.19 -1 -1 32736 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 243 275 1 185 80 17 17 289 -1 unnamed_device 23.9 MiB 1.24 1063 10572 3521 4821 2230 62.5 MiB 0.10 0.00 7.07212 -150.92 -7.07212 7.07212 0.73 0.000793655 0.000735032 0.0513003 0.0475203 36 3409 40 6.79088e+06 215552 648988. 2245.63 2.80 0.198691 0.173648 25390 158009 -1 2673 17 1278 3195 206345 45647 6.29098 6.29098 -150.366 -6.29098 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0290259 0.0255668 111 149 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_065.v common 7.60 vpr 62.26 MiB -1 -1 0.33 17972 12 0.18 -1 -1 32624 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63756 30 32 228 260 1 165 80 17 17 289 -1 unnamed_device 23.8 MiB 1.05 1004 11776 3311 6854 1611 62.3 MiB 0.10 0.00 7.78962 -153.98 -7.78962 7.78962 0.68 0.000744951 0.000690219 0.0539214 0.0499133 36 2647 28 6.79088e+06 242496 648988. 2245.63 3.43 0.215088 0.187833 25390 158009 -1 2204 16 865 2541 152000 33758 6.54507 6.54507 -146.067 -6.54507 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0261438 0.0230483 105 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_066.v common 14.54 vpr 62.89 MiB -1 -1 0.38 18488 12 0.26 -1 -1 33312 -1 -1 23 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 29 32 275 307 1 200 84 17 17 289 -1 unnamed_device 23.9 MiB 1.73 1221 7770 1855 5075 840 62.9 MiB 0.09 0.00 7.43187 -140.251 -7.43187 7.43187 0.69 0.000903114 0.00083569 0.0448755 0.0414659 34 3578 29 6.79088e+06 309856 618332. 2139.56 9.56 0.373779 0.322294 25102 150614 -1 3006 15 1375 3970 281069 58660 6.41972 6.41972 -135.251 -6.41972 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0311527 0.0275071 136 190 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_067.v common 9.01 vpr 63.16 MiB -1 -1 0.38 18456 13 0.35 -1 -1 32788 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 330 362 1 254 87 17 17 289 -1 unnamed_device 24.3 MiB 0.88 1359 13335 4246 7124 1965 63.2 MiB 0.14 0.00 8.15621 -168.312 -8.15621 8.15621 0.67 0.00103322 0.000956564 0.0760791 0.0704473 46 3494 23 6.79088e+06 309856 828058. 2865.25 4.66 0.424573 0.367411 27406 200422 -1 2798 17 1555 4022 186401 43603 7.04638 7.04638 -158.022 -7.04638 0 0 1.01997e+06 3529.29 0.27 0.05 0.14 -1 -1 0.27 0.0237393 0.0215035 159 236 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_068.v common 9.55 vpr 62.98 MiB -1 -1 0.36 18536 12 0.26 -1 -1 33072 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 290 322 1 219 83 17 17 289 -1 unnamed_device 24.0 MiB 0.92 1355 8543 2261 5601 681 63.0 MiB 0.10 0.00 8.04027 -168.911 -8.04027 8.04027 0.68 0.000930193 0.000860916 0.0479064 0.044353 46 3186 27 6.79088e+06 255968 828058. 2865.25 5.25 0.370947 0.319107 27406 200422 -1 2643 19 1391 4028 208150 46578 6.74888 6.74888 -158.158 -6.74888 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0376875 0.0332084 138 196 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_069.v common 7.50 vpr 62.34 MiB -1 -1 0.34 18032 12 0.17 -1 -1 32800 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63840 32 32 214 246 1 159 80 17 17 289 -1 unnamed_device 23.6 MiB 1.95 863 11260 4224 5242 1794 62.3 MiB 0.10 0.00 7.26107 -147.208 -7.26107 7.26107 0.67 0.000695689 0.000644343 0.0483857 0.0448192 36 2331 19 6.79088e+06 215552 648988. 2245.63 2.59 0.166567 0.146014 25390 158009 -1 1967 15 845 2356 149699 33404 6.41977 6.41977 -139.921 -6.41977 0 0 828058. 2865.25 0.21 0.04 0.13 -1 -1 0.21 0.0139778 0.01267 93 120 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_070.v common 7.34 vpr 62.97 MiB -1 -1 0.35 18252 12 0.24 -1 -1 32420 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 244 276 1 178 83 17 17 289 -1 unnamed_device 24.1 MiB 1.35 1108 3503 656 2559 288 63.0 MiB 0.04 0.00 7.09757 -147.836 -7.09757 7.09757 0.68 0.000793319 0.00072531 0.0183313 0.0170293 34 3269 40 6.79088e+06 269440 618332. 2139.56 2.82 0.179614 0.154729 25102 150614 -1 2705 20 1281 3569 221120 48983 6.56158 6.56158 -148.823 -6.56158 0 0 787024. 2723.27 0.21 0.11 0.13 -1 -1 0.21 0.038187 0.0333375 112 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_071.v common 6.57 vpr 63.21 MiB -1 -1 0.35 18408 11 0.18 -1 -1 32764 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 30 32 276 308 1 190 83 17 17 289 -1 unnamed_device 24.3 MiB 1.31 1054 9263 2245 5843 1175 63.2 MiB 0.09 0.00 6.88762 -135.169 -6.88762 6.88762 0.68 0.000868925 0.000804561 0.0482891 0.0447476 38 2945 19 6.79088e+06 282912 678818. 2348.85 2.14 0.216464 0.187615 25966 169698 -1 2413 18 1115 3680 189750 43063 5.99343 5.99343 -130.249 -5.99343 0 0 902133. 3121.57 0.23 0.08 0.10 -1 -1 0.23 0.0341129 0.0299552 126 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_072.v common 7.59 vpr 62.53 MiB -1 -1 0.28 18052 11 0.19 -1 -1 32796 -1 -1 19 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 28 32 253 285 1 177 79 17 17 289 -1 unnamed_device 23.9 MiB 0.80 995 10050 2718 6209 1123 62.5 MiB 0.10 0.00 6.45019 -124.228 -6.45019 6.45019 0.69 0.000808933 0.00075033 0.0512864 0.0474612 38 2647 20 6.79088e+06 255968 678818. 2348.85 3.70 0.274965 0.236967 25966 169698 -1 2249 19 1131 3466 185142 40463 5.64548 5.64548 -120.405 -5.64548 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0332407 0.0291584 116 171 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_073.v common 8.66 vpr 62.68 MiB -1 -1 0.34 18192 13 0.21 -1 -1 32432 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 30 32 235 267 1 171 79 17 17 289 -1 unnamed_device 23.9 MiB 1.89 969 10557 2812 6852 893 62.7 MiB 0.10 0.00 7.0265 -142.766 -7.0265 7.0265 0.68 0.00075801 0.00070191 0.0508551 0.0470898 38 2499 22 6.79088e+06 229024 678818. 2348.85 3.55 0.300496 0.259386 25966 169698 -1 2100 19 973 2722 134749 31327 6.40165 6.40165 -139.95 -6.40165 0 0 902133. 3121.57 0.26 0.06 0.15 -1 -1 0.26 0.0289263 0.0257078 108 147 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_074.v common 9.47 vpr 62.91 MiB -1 -1 0.29 18148 12 0.21 -1 -1 32504 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 264 296 1 201 82 17 17 289 -1 unnamed_device 24.0 MiB 2.05 1167 9872 2780 5471 1621 62.9 MiB 0.10 0.00 7.31132 -167.014 -7.31132 7.31132 0.71 0.000843107 0.000779086 0.0511345 0.0471891 44 3012 17 6.79088e+06 242496 787024. 2723.27 4.07 0.29351 0.253789 27118 194962 -1 2549 15 1091 2747 160257 35526 6.38052 6.38052 -155.753 -6.38052 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0280855 0.024901 119 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_075.v common 8.51 vpr 62.91 MiB -1 -1 0.36 18260 13 0.28 -1 -1 32812 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 23.9 MiB 1.07 988 9783 2758 5943 1082 62.9 MiB 0.10 0.00 8.18266 -152.572 -8.18266 8.18266 0.67 0.000902188 0.000832789 0.0517359 0.0477848 36 3345 28 6.79088e+06 282912 648988. 2245.63 4.11 0.336479 0.289584 25390 158009 -1 2527 19 1403 4134 243095 57317 7.38646 7.38646 -147.553 -7.38646 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0363732 0.0319708 136 187 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_076.v common 6.93 vpr 63.04 MiB -1 -1 0.39 18488 14 0.25 -1 -1 32804 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 290 322 1 211 84 17 17 289 -1 unnamed_device 24.0 MiB 1.12 1245 13992 4430 7427 2135 63.0 MiB 0.16 0.00 8.45277 -175.285 -8.45277 8.45277 0.67 0.000936131 0.000862844 0.0806802 0.0744656 46 3019 19 6.79088e+06 269440 828058. 2865.25 2.39 0.264003 0.230755 27406 200422 -1 2515 18 1193 3569 171019 38649 7.28928 7.28928 -161.175 -7.28928 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0356605 0.0314153 132 196 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_077.v common 10.39 vpr 62.88 MiB -1 -1 0.32 18876 14 0.30 -1 -1 32844 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 23.9 MiB 1.93 1219 5506 1194 3684 628 62.9 MiB 0.07 0.00 8.08149 -162.851 -8.08149 8.08149 0.68 0.000876103 0.00081255 0.0319223 0.0296174 36 3582 35 6.79088e+06 229024 648988. 2245.63 5.17 0.230053 0.198592 25390 158009 -1 2752 19 1307 3808 241835 52748 6.88531 6.88531 -154.809 -6.88531 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0356616 0.0313141 119 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_078.v common 7.13 vpr 63.08 MiB -1 -1 0.40 18796 13 0.33 -1 -1 33152 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 296 328 1 224 85 17 17 289 -1 unnamed_device 24.3 MiB 1.31 1337 14779 4197 8584 1998 63.1 MiB 0.16 0.00 8.4678 -172.702 -8.4678 8.4678 0.67 0.000951092 0.000879265 0.0809981 0.074778 44 3481 24 6.79088e+06 282912 787024. 2723.27 2.20 0.232409 0.204428 27118 194962 -1 2871 17 1274 3846 210355 46091 7.55101 7.55101 -163.887 -7.55101 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0354974 0.0313181 145 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_079.v common 11.96 vpr 62.36 MiB -1 -1 0.28 17928 13 0.18 -1 -1 32580 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 30 32 234 266 1 174 79 17 17 289 -1 unnamed_device 23.8 MiB 1.61 971 11402 3221 6944 1237 62.4 MiB 0.10 0.00 7.37867 -152.623 -7.37867 7.37867 0.68 0.00074852 0.000692962 0.0531787 0.0492395 30 3089 46 6.79088e+06 229024 556674. 1926.21 7.31 0.318511 0.27464 24526 138013 -1 2347 17 1030 2656 140863 32234 6.66267 6.66267 -147.632 -6.66267 0 0 706193. 2443.58 0.19 0.07 0.13 -1 -1 0.19 0.0277579 0.024406 104 146 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_080.v common 7.36 vpr 63.15 MiB -1 -1 0.39 18756 13 0.41 -1 -1 32724 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 30 32 291 323 1 223 83 17 17 289 -1 unnamed_device 24.1 MiB 1.21 1226 6203 1393 4036 774 63.1 MiB 0.08 0.00 8.37399 -164.454 -8.37399 8.37399 0.70 0.00097633 0.000904932 0.0374934 0.034792 38 3383 21 6.79088e+06 282912 678818. 2348.85 2.48 0.229942 0.19914 25966 169698 -1 2692 19 1392 3870 198202 44973 7.30385 7.30385 -157.208 -7.30385 0 0 902133. 3121.57 0.31 0.09 0.14 -1 -1 0.31 0.0394093 0.0347043 144 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_081.v common 18.55 vpr 62.98 MiB -1 -1 0.38 18468 14 0.30 -1 -1 32768 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 274 306 1 201 81 17 17 289 -1 unnamed_device 24.0 MiB 1.51 1220 8831 2339 5185 1307 63.0 MiB 0.10 0.00 8.43664 -177.857 -8.43664 8.43664 0.69 0.000893236 0.000827289 0.0489186 0.0452914 38 3412 29 6.79088e+06 229024 678818. 2348.85 13.53 0.396528 0.341393 25966 169698 -1 2715 23 1368 4033 233965 50066 7.75127 7.75127 -174.096 -7.75127 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.0412516 0.0360161 127 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_082.v common 9.22 vpr 62.82 MiB -1 -1 0.37 18316 13 0.22 -1 -1 32836 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64328 31 32 266 298 1 194 80 17 17 289 -1 unnamed_device 23.9 MiB 1.30 1018 10056 2882 5099 2075 62.8 MiB 0.10 0.00 7.45028 -151.18 -7.45028 7.45028 0.68 0.0008737 0.000809735 0.054141 0.0501753 36 3259 28 6.79088e+06 229024 648988. 2245.63 4.64 0.242382 0.210943 25390 158009 -1 2643 18 1429 3975 253181 55848 6.74528 6.74528 -150.387 -6.74528 0 0 828058. 2865.25 0.22 0.09 0.12 -1 -1 0.22 0.0328096 0.0288072 122 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_083.v common 9.70 vpr 62.88 MiB -1 -1 0.32 18644 13 0.21 -1 -1 32872 -1 -1 22 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 30 32 266 298 1 200 84 17 17 289 -1 unnamed_device 23.9 MiB 1.60 1131 8319 2355 4583 1381 62.9 MiB 0.08 0.00 7.49592 -149.558 -7.49592 7.49592 0.68 0.000872501 0.000809089 0.0422323 0.039149 36 3396 30 6.79088e+06 296384 648988. 2245.63 4.92 0.228686 0.198391 25390 158009 -1 2724 15 1255 3390 217318 47668 6.64352 6.64352 -144.455 -6.64352 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.02935 0.0259356 123 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_084.v common 8.22 vpr 63.32 MiB -1 -1 0.37 18620 14 0.35 -1 -1 32788 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 310 342 1 229 85 17 17 289 -1 unnamed_device 24.5 MiB 1.21 1332 11803 3711 6311 1781 63.3 MiB 0.13 0.00 8.47332 -174.325 -8.47332 8.47332 0.69 0.00100783 0.00093412 0.0681564 0.0631053 40 3627 36 6.79088e+06 282912 706193. 2443.58 3.47 0.267185 0.234025 26254 175826 -1 3319 19 1685 5093 354961 76925 7.38651 7.38651 -167.314 -7.38651 0 0 926341. 3205.33 0.23 0.12 0.15 -1 -1 0.23 0.0399986 0.0351667 152 216 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_085.v common 13.43 vpr 62.83 MiB -1 -1 0.39 18404 11 0.27 -1 -1 32748 -1 -1 22 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 29 32 262 294 1 201 83 17 17 289 -1 unnamed_device 23.9 MiB 1.59 1187 9803 3077 5789 937 62.8 MiB 0.10 0.00 7.32112 -142.904 -7.32112 7.32112 0.69 0.000868369 0.000805298 0.0510584 0.0472973 30 3094 33 6.79088e+06 296384 556674. 1926.21 8.56 0.309381 0.267882 24526 138013 -1 2563 15 1165 3347 160722 37461 6.46667 6.46667 -139.078 -6.46667 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.029914 0.0263897 134 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_086.v common 10.75 vpr 62.15 MiB -1 -1 0.26 17748 13 0.19 -1 -1 32644 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63644 32 32 222 254 1 182 79 17 17 289 -1 unnamed_device 23.4 MiB 2.86 1035 5318 1067 4048 203 62.2 MiB 0.06 0.00 6.99248 -161.236 -6.99248 6.99248 0.69 0.000724213 0.000671297 0.0253672 0.0235032 34 3444 42 6.79088e+06 202080 618332. 2139.56 4.84 0.247574 0.212704 25102 150614 -1 2604 22 1228 2959 273887 81898 6.40514 6.40514 -163.936 -6.40514 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0315901 0.0276073 99 128 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_087.v common 7.93 vpr 63.04 MiB -1 -1 0.38 18648 14 0.24 -1 -1 32832 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 267 299 1 198 81 17 17 289 -1 unnamed_device 24.1 MiB 1.52 1250 4456 885 3313 258 63.0 MiB 0.06 0.00 8.38045 -174.115 -8.38045 8.38045 0.67 0.000866941 0.000803233 0.0263696 0.0244428 36 3265 43 6.79088e+06 229024 648988. 2245.63 3.21 0.23051 0.198214 25390 158009 -1 2720 18 1249 3337 202574 44403 7.34737 7.34737 -167.601 -7.34737 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0334618 0.0293757 122 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_088.v common 22.67 vpr 63.20 MiB -1 -1 0.41 18920 15 0.40 -1 -1 32924 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 334 366 1 250 88 17 17 289 -1 unnamed_device 24.3 MiB 1.53 1484 9253 2259 6050 944 63.2 MiB 0.11 0.00 8.87836 -189.569 -8.87836 8.87836 0.68 0.00107256 0.000992434 0.0550725 0.0508708 38 3870 29 6.79088e+06 323328 678818. 2348.85 17.57 0.494413 0.426471 25966 169698 -1 3149 20 1729 4589 229265 52252 7.67991 7.67991 -179.191 -7.67991 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.044371 0.0390148 164 240 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_089.v common 6.22 vpr 62.25 MiB -1 -1 0.17 17960 11 0.17 -1 -1 32692 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 220 252 1 168 80 17 17 289 -1 unnamed_device 23.6 MiB 1.50 863 10916 3769 4696 2451 62.3 MiB 0.10 0.00 6.70603 -139.827 -6.70603 6.70603 0.69 0.000702462 0.000650561 0.0477911 0.0442937 36 2507 19 6.79088e+06 215552 648988. 2245.63 1.68 0.157591 0.137927 25390 158009 -1 2032 20 956 2486 140727 33215 5.82893 5.82893 -135.434 -5.82893 0 0 828058. 2865.25 0.23 0.07 0.13 -1 -1 0.23 0.0294142 0.0258142 97 126 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_090.v common 9.30 vpr 62.45 MiB -1 -1 0.25 17916 12 0.17 -1 -1 33048 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63944 31 32 244 276 1 191 80 17 17 289 -1 unnamed_device 23.8 MiB 1.43 1084 6788 1723 4832 233 62.4 MiB 0.07 0.00 6.66627 -147.96 -6.66627 6.66627 0.72 0.000749264 0.000691069 0.0339295 0.0314496 44 3079 27 6.79088e+06 229024 787024. 2723.27 4.75 0.271755 0.233703 27118 194962 -1 2449 17 1212 3111 172440 38596 5.99337 5.99337 -141.516 -5.99337 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0287666 0.0252843 110 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_091.v common 8.66 vpr 63.22 MiB -1 -1 0.35 18540 12 0.29 -1 -1 32728 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 300 332 1 218 83 17 17 289 -1 unnamed_device 24.5 MiB 1.11 1207 11783 4120 5343 2320 63.2 MiB 0.12 0.00 7.30286 -159.953 -7.30286 7.30286 0.68 0.000974644 0.000901968 0.0676891 0.0625909 44 3080 18 6.79088e+06 255968 787024. 2723.27 4.10 0.339212 0.293867 27118 194962 -1 2475 16 1292 3634 177016 41926 6.49812 6.49812 -147.002 -6.49812 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0351594 0.0311127 143 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_092.v common 9.59 vpr 63.03 MiB -1 -1 0.36 18340 12 0.24 -1 -1 32952 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 271 303 1 210 83 17 17 289 -1 unnamed_device 24.1 MiB 1.70 1287 12503 3462 6480 2561 63.0 MiB 0.13 0.00 7.56098 -155.748 -7.56098 7.56098 0.71 0.000884868 0.000817455 0.0650373 0.0602118 40 3696 38 6.79088e+06 255968 706193. 2443.58 4.39 0.2684 0.233886 26254 175826 -1 3296 33 1534 4492 706599 301301 6.38062 6.38062 -154.578 -6.38062 0 0 926341. 3205.33 0.23 0.23 0.15 -1 -1 0.23 0.0538244 0.0466791 129 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_093.v common 10.13 vpr 63.40 MiB -1 -1 0.37 18792 14 0.43 -1 -1 32780 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 327 359 1 236 86 17 17 289 -1 unnamed_device 24.5 MiB 1.73 1355 14639 3834 9114 1691 63.4 MiB 0.16 0.00 8.8746 -178.899 -8.8746 8.8746 0.68 0.00106567 0.000984752 0.0872965 0.0806905 44 3437 21 6.79088e+06 296384 787024. 2723.27 4.70 0.430967 0.374812 27118 194962 -1 2971 17 1549 4664 242467 55768 7.78601 7.78601 -168.081 -7.78601 0 0 997811. 3452.63 0.26 0.10 0.17 -1 -1 0.26 0.0395381 0.0349635 167 233 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_094.v common 9.14 vpr 62.80 MiB -1 -1 0.36 18268 12 0.20 -1 -1 32904 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 30 32 246 278 1 190 81 17 17 289 -1 unnamed_device 23.9 MiB 1.03 1159 7956 2272 5164 520 62.8 MiB 0.09 0.00 7.18863 -142.1 -7.18863 7.18863 0.68 0.000828464 0.000767607 0.0426387 0.0394984 46 2786 16 6.79088e+06 255968 828058. 2865.25 4.82 0.31521 0.271054 27406 200422 -1 2411 17 1025 3107 160837 35887 6.20488 6.20488 -133.311 -6.20488 0 0 1.01997e+06 3529.29 0.27 0.07 0.18 -1 -1 0.27 0.0312049 0.0275459 120 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_095.v common 6.13 vpr 62.51 MiB -1 -1 0.31 17852 11 0.18 -1 -1 32716 -1 -1 19 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 27 32 219 251 1 164 78 17 17 289 -1 unnamed_device 24.0 MiB 1.50 723 8378 2042 5918 418 62.5 MiB 0.08 0.00 7.21752 -126.98 -7.21752 7.21752 0.68 0.000711293 0.000659356 0.038772 0.0358874 30 2453 31 6.79088e+06 255968 556674. 1926.21 1.63 0.137714 0.120577 24526 138013 -1 1858 17 1043 2825 131913 33470 6.28323 6.28323 -126.905 -6.28323 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0264567 0.0233113 103 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_096.v common 9.83 vpr 63.55 MiB -1 -1 0.36 19040 13 0.41 -1 -1 32828 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 380 412 1 275 90 17 17 289 -1 unnamed_device 24.8 MiB 1.70 1657 9537 2520 6357 660 63.5 MiB 0.12 0.00 8.12297 -168.527 -8.12297 8.12297 0.68 0.00116687 0.00107932 0.0608747 0.0562964 40 4417 48 6.79088e+06 350272 706193. 2443.58 4.47 0.348248 0.30231 26254 175826 -1 4056 20 2002 5949 375778 80918 7.01061 7.01061 -160.57 -7.01061 0 0 926341. 3205.33 0.24 0.14 0.12 -1 -1 0.24 0.0525469 0.046617 189 286 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_097.v common 6.79 vpr 62.89 MiB -1 -1 0.39 18516 14 0.23 -1 -1 32696 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64396 31 32 277 309 1 196 84 17 17 289 -1 unnamed_device 23.9 MiB 1.45 1072 7770 1789 5369 612 62.9 MiB 0.08 0.00 8.3779 -165.706 -8.3779 8.3779 0.68 0.000887898 0.000822729 0.0413719 0.0383606 36 3014 34 6.79088e+06 282912 648988. 2245.63 2.08 0.194858 0.169602 25390 158009 -1 2529 17 1112 2992 170582 39422 7.4761 7.4761 -162.537 -7.4761 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0329737 0.0290441 129 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_098.v common 8.27 vpr 62.63 MiB -1 -1 0.34 18204 12 0.20 -1 -1 32416 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 229 261 1 176 82 17 17 289 -1 unnamed_device 24.1 MiB 1.27 1078 7914 1805 5400 709 62.6 MiB 0.08 0.00 7.28787 -159.969 -7.28787 7.28787 0.68 0.000749901 0.00069403 0.0361053 0.0334449 36 2782 20 6.79088e+06 242496 648988. 2245.63 3.85 0.190687 0.16584 25390 158009 -1 2255 16 1008 2402 136904 31819 6.14227 6.14227 -150.778 -6.14227 0 0 828058. 2865.25 0.27 0.07 0.14 -1 -1 0.27 0.0263751 0.0234359 107 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_099.v common 10.42 vpr 62.93 MiB -1 -1 0.36 18204 13 0.27 -1 -1 32912 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 263 295 1 196 84 17 17 289 -1 unnamed_device 24.0 MiB 1.42 1065 10698 4067 5787 844 62.9 MiB 0.11 0.00 7.98061 -163.524 -7.98061 7.98061 0.67 0.000878292 0.000813821 0.054992 0.0509551 36 3909 46 6.79088e+06 269440 648988. 2245.63 5.74 0.359317 0.310019 25390 158009 -1 2692 17 1384 3771 259060 67340 6.79921 6.79921 -153.949 -6.79921 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0323235 0.0284632 128 169 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_100.v common 8.61 vpr 63.26 MiB -1 -1 0.29 18840 13 0.34 -1 -1 32840 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 31 32 321 353 1 242 86 17 17 289 -1 unnamed_device 24.3 MiB 1.45 1396 6890 1500 5037 353 63.3 MiB 0.09 0.00 7.43872 -154.496 -7.43872 7.43872 0.68 0.000799407 0.000732586 0.0359659 0.0331326 40 3737 36 6.79088e+06 309856 706193. 2443.58 3.66 0.265057 0.229115 26254 175826 -1 3682 27 2058 6214 669400 215172 6.83487 6.83487 -156.489 -6.83487 0 0 926341. 3205.33 0.24 0.21 0.15 -1 -1 0.24 0.0545296 0.047757 156 230 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_101.v common 8.78 vpr 62.99 MiB -1 -1 0.36 18188 11 0.26 -1 -1 32852 -1 -1 22 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 30 32 287 319 1 199 84 17 17 289 -1 unnamed_device 23.9 MiB 1.30 1110 11613 3419 5918 2276 63.0 MiB 0.12 0.00 7.42892 -141.349 -7.42892 7.42892 0.67 0.000912719 0.000845129 0.0617361 0.0571347 44 2946 38 6.79088e+06 296384 787024. 2723.27 4.13 0.344898 0.298093 27118 194962 -1 2453 17 1258 3801 205331 47706 6.37282 6.37282 -135.511 -6.37282 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0337246 0.0296877 139 199 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_102.v common 7.64 vpr 63.09 MiB -1 -1 0.37 18484 15 0.34 -1 -1 32688 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64600 32 32 296 328 1 217 83 17 17 289 -1 unnamed_device 24.0 MiB 1.23 1158 4223 686 3480 57 63.1 MiB 0.06 0.00 8.41622 -176.296 -8.41622 8.41622 0.68 0.000956927 0.000885483 0.0264028 0.0244557 38 3611 49 6.79088e+06 255968 678818. 2348.85 3.02 0.223794 0.193012 25966 169698 -1 2680 20 1426 4396 232365 53103 7.21437 7.21437 -162.943 -7.21437 0 0 902133. 3121.57 0.24 0.10 0.15 -1 -1 0.24 0.0398023 0.034929 145 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_103.v common 6.74 vpr 63.02 MiB -1 -1 0.40 18816 13 0.30 -1 -1 32748 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 285 317 1 216 84 17 17 289 -1 unnamed_device 24.0 MiB 1.27 1276 7221 1624 4993 604 63.0 MiB 0.08 0.00 7.85531 -170.15 -7.85531 7.85531 0.68 0.000934689 0.000865442 0.040693 0.0376911 38 3322 23 6.79088e+06 269440 678818. 2348.85 2.05 0.228425 0.197718 25966 169698 -1 2775 19 1297 3768 192177 43619 6.67391 6.67391 -156.024 -6.67391 0 0 902133. 3121.57 0.32 0.09 0.12 -1 -1 0.32 0.0376145 0.0330725 141 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_104.v common 7.06 vpr 62.51 MiB -1 -1 0.17 17820 12 0.19 -1 -1 32588 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 29 32 239 271 1 187 80 17 17 289 -1 unnamed_device 23.9 MiB 1.61 941 12292 3647 6240 2405 62.5 MiB 0.12 0.00 7.84567 -154.348 -7.84567 7.84567 0.69 0.000923716 0.000856755 0.060279 0.0558787 36 3159 47 6.79088e+06 255968 648988. 2245.63 2.41 0.221159 0.193206 25390 158009 -1 2472 21 1302 3079 197616 45139 6.84606 6.84606 -149.622 -6.84606 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.032902 0.0288239 112 154 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_105.v common 14.06 vpr 62.61 MiB -1 -1 0.28 18172 11 0.15 -1 -1 32736 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 235 267 1 177 79 17 17 289 -1 unnamed_device 23.9 MiB 2.10 1083 3966 758 3081 127 62.6 MiB 0.05 0.00 6.83947 -148.082 -6.83947 6.83947 0.68 0.000724541 0.000677514 0.0198614 0.0183931 34 3143 44 6.79088e+06 202080 618332. 2139.56 8.97 0.28189 0.241437 25102 150614 -1 2742 18 1192 2985 213870 46281 6.10302 6.10302 -148.662 -6.10302 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0280154 0.0245803 99 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_106.v common 9.29 vpr 63.05 MiB -1 -1 0.24 18300 13 0.31 -1 -1 32724 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 31 32 294 326 1 213 84 17 17 289 -1 unnamed_device 24.3 MiB 1.21 1276 7221 1604 4833 784 63.0 MiB 0.08 0.00 8.37916 -162.744 -8.37916 8.37916 0.68 0.000942165 0.000873074 0.040943 0.0379423 38 3408 30 6.79088e+06 282912 678818. 2348.85 4.84 0.383237 0.328874 25966 169698 -1 2832 17 1371 4127 228456 50332 7.06981 7.06981 -151.734 -7.06981 0 0 902133. 3121.57 0.24 0.09 0.14 -1 -1 0.24 0.0357775 0.0316305 144 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_107.v common 5.79 vpr 62.23 MiB -1 -1 0.32 18048 10 0.15 -1 -1 33196 -1 -1 17 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63724 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 23.5 MiB 1.19 808 5722 1225 4266 231 62.2 MiB 0.06 0.00 6.21616 -120.606 -6.21616 6.21616 0.68 0.000709259 0.00065679 0.0272924 0.0253162 30 2732 29 6.79088e+06 229024 556674. 1926.21 1.70 0.123063 0.1073 24526 138013 -1 2028 15 966 2271 122606 29724 5.32762 5.32762 -121.477 -5.32762 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0237293 0.0209417 98 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_108.v common 8.88 vpr 62.46 MiB -1 -1 0.24 18060 14 0.18 -1 -1 32584 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63964 32 32 239 271 1 183 82 17 17 289 -1 unnamed_device 23.8 MiB 2.52 1099 12720 3439 7948 1333 62.5 MiB 0.11 0.00 7.66942 -163.822 -7.66942 7.66942 0.77 0.000763469 0.000707274 0.0578429 0.0535539 36 3025 27 6.79088e+06 242496 648988. 2245.63 3.26 0.223663 0.195439 25390 158009 -1 2555 19 1122 2802 177721 38329 6.67042 6.67042 -157.002 -6.67042 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0306809 0.0269799 109 145 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_109.v common 7.07 vpr 63.04 MiB -1 -1 0.39 18544 13 0.26 -1 -1 32740 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 31 32 266 298 1 209 82 17 17 289 -1 unnamed_device 24.0 MiB 1.83 1233 13432 4516 6489 2427 63.0 MiB 0.13 0.00 7.95965 -167.858 -7.95965 7.95965 0.68 0.000877397 0.000814943 0.0700861 0.0650749 44 3075 18 6.79088e+06 255968 787024. 2723.27 1.85 0.196213 0.173199 27118 194962 -1 2559 15 1227 3270 177857 39469 6.87761 6.87761 -158.31 -6.87761 0 0 997811. 3452.63 0.26 0.08 0.13 -1 -1 0.26 0.0293798 0.0259877 124 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_110.v common 9.30 vpr 62.17 MiB -1 -1 0.32 18012 12 0.19 -1 -1 32624 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63664 31 32 225 257 1 171 80 17 17 289 -1 unnamed_device 23.7 MiB 2.94 973 6100 1428 4438 234 62.2 MiB 0.06 0.00 7.06748 -154.36 -7.06748 7.06748 0.67 0.000714426 0.000662013 0.028182 0.0261311 36 2757 20 6.79088e+06 229024 648988. 2245.63 3.32 0.17688 0.153381 25390 158009 -1 2293 14 959 2284 150234 32953 6.25178 6.25178 -149.108 -6.25178 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0232935 0.0206304 96 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_111.v common 8.55 vpr 62.92 MiB -1 -1 0.36 18284 12 0.20 -1 -1 32772 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 288 320 1 202 82 17 17 289 -1 unnamed_device 23.9 MiB 1.78 1283 13432 3933 7023 2476 62.9 MiB 0.13 0.00 6.994 -152.251 -6.994 6.994 0.76 0.000898033 0.000830041 0.071764 0.0662867 38 3258 45 6.79088e+06 242496 678818. 2348.85 3.42 0.289564 0.251778 25966 169698 -1 2792 20 1289 3786 376231 129036 6.19713 6.19713 -147.635 -6.19713 0 0 902133. 3121.57 0.23 0.13 0.15 -1 -1 0.23 0.0373475 0.0326753 130 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_112.v common 15.86 vpr 62.95 MiB -1 -1 0.41 18444 13 0.28 -1 -1 32708 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 31 32 282 314 1 210 83 17 17 289 -1 unnamed_device 24.2 MiB 1.00 1255 7103 1784 4908 411 62.9 MiB 0.08 0.00 7.93183 -164.51 -7.93183 7.93183 0.67 0.000919918 0.000852041 0.0402385 0.0372687 34 4320 48 6.79088e+06 269440 618332. 2139.56 11.50 0.412838 0.354288 25102 150614 -1 3155 18 1371 3899 244448 54181 6.88526 6.88526 -161.632 -6.88526 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0356676 0.0313562 143 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_113.v common 8.05 vpr 62.39 MiB -1 -1 0.32 18108 11 0.20 -1 -1 32624 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 32 32 233 265 1 182 79 17 17 289 -1 unnamed_device 23.9 MiB 1.80 990 7515 1854 5471 190 62.4 MiB 0.08 0.00 6.41871 -149.746 -6.41871 6.41871 0.67 0.000753199 0.000697435 0.0362124 0.0335677 38 3026 47 6.79088e+06 202080 678818. 2348.85 3.11 0.219364 0.189956 25966 169698 -1 2413 21 1194 3250 178371 39313 5.48535 5.48535 -142.68 -5.48535 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0319412 0.0279772 105 139 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_114.v common 10.76 vpr 62.61 MiB -1 -1 0.30 17920 13 0.26 -1 -1 32700 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 23.7 MiB 2.02 917 4473 833 3541 99 62.6 MiB 0.06 0.00 7.87829 -165.569 -7.87829 7.87829 0.70 0.000817958 0.000754792 0.0251284 0.0233088 38 3450 43 6.79088e+06 202080 678818. 2348.85 5.59 0.23063 0.199179 25966 169698 -1 2306 16 1127 3059 160954 38761 7.08558 7.08558 -157.83 -7.08558 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0294855 0.0260119 111 160 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_115.v common 13.85 vpr 63.14 MiB -1 -1 0.27 18116 13 0.30 -1 -1 32844 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64652 32 32 285 317 1 216 82 17 17 289 -1 unnamed_device 24.1 MiB 1.15 1260 5600 1161 4083 356 63.1 MiB 0.08 0.00 7.71882 -168.307 -7.71882 7.71882 0.68 0.00091035 0.000843408 0.0335899 0.0311784 38 3737 30 6.79088e+06 242496 678818. 2348.85 9.39 0.37592 0.322918 25966 169698 -1 2953 18 1578 4251 227933 50692 6.83143 6.83143 -163.944 -6.83143 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0352763 0.0309991 135 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_116.v common 8.72 vpr 62.73 MiB -1 -1 0.37 18324 11 0.22 -1 -1 33224 -1 -1 20 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 29 32 243 275 1 190 81 17 17 289 -1 unnamed_device 23.9 MiB 1.23 1127 10581 2985 5703 1893 62.7 MiB 0.10 0.00 6.61008 -134.136 -6.61008 6.61008 0.70 0.000801594 0.000742725 0.051665 0.0477378 36 3306 47 6.79088e+06 269440 648988. 2245.63 4.27 0.311399 0.268005 25390 158009 -1 2514 16 1106 3134 199443 43558 5.42613 5.42613 -127.322 -5.42613 0 0 828058. 2865.25 0.22 0.08 0.10 -1 -1 0.22 0.0285216 0.0251113 115 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_117.v common 9.96 vpr 63.53 MiB -1 -1 0.40 18752 14 0.35 -1 -1 33324 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65052 32 32 318 350 1 240 87 17 17 289 -1 unnamed_device 24.7 MiB 1.09 1488 8535 2146 5424 965 63.5 MiB 0.10 0.00 8.76875 -186.498 -8.76875 8.76875 0.68 0.00102027 0.000943358 0.0496393 0.045958 38 3684 27 6.79088e+06 309856 678818. 2348.85 5.48 0.401839 0.346238 25966 169698 -1 2955 19 1551 4202 207936 47522 7.68406 7.68406 -173.86 -7.68406 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.0411742 0.0362727 159 224 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_118.v common 7.61 vpr 62.24 MiB -1 -1 0.24 17756 12 0.16 -1 -1 32628 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63736 31 32 222 254 1 185 81 17 17 289 -1 unnamed_device 23.8 MiB 2.67 1096 6031 1363 3831 837 62.2 MiB 0.06 0.00 6.47142 -144.358 -6.47142 6.47142 0.68 0.00071128 0.000659464 0.0272798 0.0253111 34 2909 32 6.79088e+06 242496 618332. 2139.56 2.03 0.161286 0.140029 25102 150614 -1 2421 17 1034 2357 151779 34030 5.9596 5.9596 -144.961 -5.9596 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0262176 0.0230909 105 131 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_119.v common 10.03 vpr 63.04 MiB -1 -1 0.38 18852 13 0.29 -1 -1 32924 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 282 314 1 207 83 17 17 289 -1 unnamed_device 24.1 MiB 1.23 1347 4043 780 2904 359 63.0 MiB 0.05 0.00 8.02094 -165.56 -8.02094 8.02094 0.68 0.000908565 0.000841013 0.024074 0.022345 36 3935 48 6.79088e+06 255968 648988. 2245.63 5.55 0.246355 0.211949 25390 158009 -1 3170 18 1474 4112 257378 55889 6.75652 6.75652 -156.97 -6.75652 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0352885 0.0309366 134 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_120.v common 7.87 vpr 62.43 MiB -1 -1 0.26 18180 13 0.18 -1 -1 32576 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63924 32 32 238 270 1 179 82 17 17 289 -1 unnamed_device 23.9 MiB 1.37 1085 7914 1906 5077 931 62.4 MiB 0.08 0.00 7.51507 -164.29 -7.51507 7.51507 0.67 0.000757917 0.000698763 0.0365758 0.0338048 36 2804 28 6.79088e+06 242496 648988. 2245.63 3.50 0.232558 0.200617 25390 158009 -1 2373 16 961 2488 145746 32856 6.54507 6.54507 -157.043 -6.54507 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0265495 0.0234344 105 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_121.v common 9.88 vpr 62.92 MiB -1 -1 0.37 18524 12 0.22 -1 -1 32784 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 269 301 1 191 84 17 17 289 -1 unnamed_device 24.0 MiB 1.44 1205 12711 3448 7705 1558 62.9 MiB 0.12 0.00 7.30358 -162.225 -7.30358 7.30358 0.67 0.000882298 0.000815892 0.0649846 0.060116 36 3744 48 6.79088e+06 269440 648988. 2245.63 5.14 0.372466 0.321206 25390 158009 -1 2886 17 1210 3824 230778 49498 6.19718 6.19718 -153.421 -6.19718 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0331 0.0291055 128 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_122.v common 10.13 vpr 63.36 MiB -1 -1 0.43 19236 15 0.47 -1 -1 33216 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64880 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 24.4 MiB 1.05 1525 10583 2684 6530 1369 63.4 MiB 0.13 0.00 9.41018 -195.78 -9.41018 9.41018 0.68 0.00114823 0.00105001 0.0660174 0.0607827 44 4431 22 6.79088e+06 336800 787024. 2723.27 5.25 0.419565 0.363013 27118 194962 -1 3549 28 2405 7622 591122 195980 8.89715 8.89715 -187.599 -8.89715 0 0 997811. 3452.63 0.26 0.20 0.18 -1 -1 0.26 0.0610228 0.0532678 183 256 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_123.v common 8.41 vpr 62.07 MiB -1 -1 0.29 17644 10 0.09 -1 -1 32424 -1 -1 11 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63560 30 32 174 206 1 132 73 17 17 289 -1 unnamed_device 23.5 MiB 1.74 569 10257 4278 5714 265 62.1 MiB 0.08 0.00 4.82946 -112.742 -4.82946 4.82946 0.67 0.000571717 0.000530949 0.0405131 0.0376692 36 2039 50 6.79088e+06 148192 648988. 2245.63 3.77 0.214035 0.184895 25390 158009 -1 1387 19 709 1580 96839 23573 4.50726 4.50726 -111.085 -4.50726 0 0 828058. 2865.25 0.22 0.05 0.14 -1 -1 0.22 0.0221828 0.0194057 64 86 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_124.v common 7.03 vpr 62.45 MiB -1 -1 0.27 18012 13 0.18 -1 -1 32640 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63944 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 23.9 MiB 1.35 1029 5825 1231 4146 448 62.4 MiB 0.06 0.00 7.87321 -160.437 -7.87321 7.87321 0.67 0.000746252 0.000692635 0.028647 0.0265927 34 2956 35 6.79088e+06 229024 618332. 2139.56 2.63 0.161169 0.139928 25102 150614 -1 2528 20 1164 2881 175744 40261 7.08552 7.08552 -160.21 -7.08552 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0308143 0.027062 103 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_125.v common 10.42 vpr 62.80 MiB -1 -1 0.24 18056 12 0.19 -1 -1 32756 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 264 296 1 198 81 17 17 289 -1 unnamed_device 24.0 MiB 1.95 1009 12506 4599 6333 1574 62.8 MiB 0.12 0.00 7.16042 -155.076 -7.16042 7.16042 0.67 0.000846834 0.000784213 0.0636979 0.059008 38 3077 27 6.79088e+06 229024 678818. 2348.85 5.39 0.341043 0.29473 25966 169698 -1 2467 16 1204 3071 181392 41122 6.24752 6.24752 -151.183 -6.24752 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0296557 0.0261222 115 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_126.v common 5.34 vpr 62.00 MiB -1 -1 0.27 17720 9 0.13 -1 -1 32592 -1 -1 19 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63488 25 32 183 215 1 134 76 17 17 289 -1 unnamed_device 23.3 MiB 0.91 748 10796 2964 6480 1352 62.0 MiB 0.08 0.00 4.9582 -97.454 -4.9582 4.9582 0.68 0.000606661 0.000563493 0.0433642 0.0402688 28 2171 21 6.79088e+06 255968 531479. 1839.03 1.58 0.118158 0.104091 23950 126010 -1 1961 17 814 2175 142079 32307 4.5107 4.5107 -100.849 -4.5107 0 0 648988. 2245.63 0.18 0.06 0.11 -1 -1 0.18 0.0221851 0.0194401 86 110 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_127.v common 7.35 vpr 62.95 MiB -1 -1 0.39 18488 12 0.28 -1 -1 32740 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 300 332 1 227 85 17 17 289 -1 unnamed_device 24.1 MiB 1.24 1301 7897 1769 4878 1250 62.9 MiB 0.09 0.00 7.57033 -160.892 -7.57033 7.57033 0.68 0.000951625 0.000881362 0.0442211 0.0410298 44 3563 24 6.79088e+06 282912 787024. 2723.27 2.68 0.203837 0.177605 27118 194962 -1 2921 15 1380 3916 214785 48155 6.67037 6.67037 -154.996 -6.67037 0 0 997811. 3452.63 0.26 0.10 0.17 -1 -1 0.26 0.0363073 0.0324272 140 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_128.v common 8.95 vpr 63.18 MiB -1 -1 0.41 18900 13 0.34 -1 -1 32676 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 31 32 290 322 1 215 87 17 17 289 -1 unnamed_device 24.1 MiB 1.51 1277 8535 2081 5648 806 63.2 MiB 0.10 0.00 8.4853 -176.747 -8.4853 8.4853 0.67 0.000948394 0.000878927 0.0463948 0.0428911 34 4014 42 6.79088e+06 323328 618332. 2139.56 3.96 0.270514 0.235223 25102 150614 -1 3168 17 1357 3943 256389 56599 7.3039 7.3039 -168.531 -7.3039 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.0353564 0.0311352 146 199 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 7.22 vpr 63.13 MiB -1 -1 0.21 18220 1 0.03 -1 -1 30192 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 24.2 MiB 3.17 992 16773 5017 8446 3310 63.1 MiB 0.16 0.00 5.50182 -160.116 -5.50182 5.50182 0.67 0.000704382 0.000654708 0.0611061 0.0568403 30 2790 25 6.87369e+06 363320 556674. 1926.21 1.09 0.147763 0.130886 25186 138497 -1 2050 21 1426 2321 167960 54826 4.58385 4.58385 -149.725 -4.58385 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0284216 0.0247111 142 50 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 8.93 vpr 63.14 MiB -1 -1 0.20 18156 1 0.03 -1 -1 30476 -1 -1 24 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 30 32 363 293 1 200 86 17 17 289 -1 unnamed_device 24.2 MiB 2.69 985 11804 3116 7588 1100 63.1 MiB 0.12 0.00 4.6679 -136.949 -4.6679 4.6679 0.67 0.000698711 0.000649229 0.0461198 0.0428568 38 2075 19 6.87369e+06 335372 678818. 2348.85 3.34 0.272743 0.235149 26626 170182 -1 1843 21 1475 2215 137639 32758 3.98296 3.98296 -132.597 -3.98296 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0283609 0.0246534 141 63 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 7.30 vpr 62.76 MiB -1 -1 0.12 18148 1 0.03 -1 -1 30280 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 24.2 MiB 3.08 979 10873 2754 7440 679 62.8 MiB 0.12 0.00 4.36457 -122.364 -4.36457 4.36457 0.71 0.000627398 0.000583509 0.0422022 0.0390559 34 2557 26 6.87369e+06 293451 618332. 2139.56 1.44 0.169366 0.14725 25762 151098 -1 2008 23 1430 1899 131183 31865 3.84576 3.84576 -123.257 -3.84576 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0268597 0.023239 124 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 5.41 vpr 62.70 MiB -1 -1 0.22 18240 1 0.03 -1 -1 30276 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 24.1 MiB 1.11 974 13557 4041 7216 2300 62.7 MiB 0.12 0.00 4.63038 -128.348 -4.63038 4.63038 0.68 0.000639486 0.000594448 0.0447665 0.0416077 34 2407 26 6.87369e+06 405241 618332. 2139.56 1.47 0.171579 0.149198 25762 151098 -1 1961 22 1401 2565 182639 41805 3.8767 3.8767 -124.544 -3.8767 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0264709 0.022935 124 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 6.07 vpr 63.13 MiB -1 -1 0.23 18436 1 0.03 -1 -1 30416 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 24.2 MiB 1.55 1051 17023 5465 9028 2530 63.1 MiB 0.16 0.00 4.52512 -133.724 -4.52512 4.52512 0.67 0.000684116 0.000635964 0.059303 0.0550331 34 2741 27 6.87369e+06 377294 618332. 2139.56 1.60 0.196473 0.171819 25762 151098 -1 2360 24 1773 3437 275466 61389 3.9127 3.9127 -134.692 -3.9127 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0301255 0.0260697 131 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 6.90 vpr 63.29 MiB -1 -1 0.22 18268 1 0.03 -1 -1 30236 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 24.3 MiB 1.36 1058 17134 5267 9607 2260 63.3 MiB 0.15 0.00 3.34527 -120.073 -3.34527 3.34527 0.70 0.000714989 0.000663366 0.0597775 0.0554787 32 2826 21 6.87369e+06 419215 586450. 2029.24 2.61 0.229859 0.200213 25474 144626 -1 2263 21 1465 2393 192469 43839 3.15781 3.15781 -124.682 -3.15781 0 0 744469. 2576.02 0.20 0.09 0.13 -1 -1 0.20 0.0304034 0.0262988 136 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 6.19 vpr 62.47 MiB -1 -1 0.17 17948 1 0.03 -1 -1 30712 -1 -1 19 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63972 27 32 259 221 1 141 78 17 17 289 -1 unnamed_device 23.9 MiB 2.08 666 11532 3128 7372 1032 62.5 MiB 0.09 0.00 3.87934 -105.571 -3.87934 3.87934 0.68 0.000556649 0.000518523 0.0404582 0.0376762 34 1687 23 6.87369e+06 265503 618332. 2139.56 1.34 0.152608 0.132608 25762 151098 -1 1454 23 1227 2083 146465 34887 2.92996 2.92996 -102.338 -2.92996 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0238248 0.020563 97 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 6.09 vpr 62.74 MiB -1 -1 0.22 17776 1 0.03 -1 -1 30120 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 24.0 MiB 0.87 977 15431 4363 8928 2140 62.7 MiB 0.13 0.00 3.48795 -106.181 -3.48795 3.48795 0.68 0.000700939 0.000646079 0.0450429 0.0418435 30 2176 24 6.87369e+06 447163 556674. 1926.21 2.43 0.18545 0.161224 25186 138497 -1 1868 21 942 1689 101117 22863 2.58436 2.58436 -98.3935 -2.58436 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0237115 0.0205265 119 4 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 6.66 vpr 62.88 MiB -1 -1 0.21 18360 1 0.02 -1 -1 30100 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 24.1 MiB 2.44 888 12980 4535 6374 2071 62.9 MiB 0.12 0.00 3.31297 -114.045 -3.31297 3.31297 0.68 0.000635324 0.000590703 0.0500618 0.0465036 34 2335 21 6.87369e+06 237555 618332. 2139.56 1.40 0.172464 0.150318 25762 151098 -1 2046 18 1239 1803 154821 34852 3.09961 3.09961 -119.68 -3.09961 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0230106 0.0199396 113 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 7.75 vpr 62.80 MiB -1 -1 0.22 17976 1 0.03 -1 -1 30144 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 24.1 MiB 3.56 870 10400 2388 6951 1061 62.8 MiB 0.10 0.00 3.96554 -131.116 -3.96554 3.96554 0.68 0.000624265 0.000579266 0.0394648 0.0367205 34 2168 22 6.87369e+06 223581 618332. 2139.56 1.37 0.155099 0.134941 25762 151098 -1 1797 23 1331 2222 162159 37386 3.08026 3.08026 -125.632 -3.08026 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0269283 0.0233443 107 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 6.99 vpr 62.73 MiB -1 -1 0.24 18428 1 0.03 -1 -1 30380 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 23.8 MiB 2.89 661 6718 1392 5000 326 62.7 MiB 0.07 0.00 3.87398 -111.275 -3.87398 3.87398 0.67 0.000615578 0.000572582 0.0267068 0.0248695 34 1788 24 6.87369e+06 223581 618332. 2139.56 1.31 0.146631 0.126577 25762 151098 -1 1485 22 1074 1734 115497 27750 2.96596 2.96596 -108.426 -2.96596 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0254329 0.022018 98 63 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 6.62 vpr 62.50 MiB -1 -1 0.23 17956 1 0.03 -1 -1 30072 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64004 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 23.8 MiB 2.41 808 7606 1773 5149 684 62.5 MiB 0.08 0.00 3.6704 -113.65 -3.6704 3.6704 0.76 0.000591743 0.000550841 0.0281174 0.0262217 34 2163 24 6.87369e+06 237555 618332. 2139.56 1.33 0.143986 0.124431 25762 151098 -1 1798 17 1055 1503 107396 25939 3.04261 3.04261 -113.8 -3.04261 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0203656 0.0177686 107 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 9.12 vpr 63.17 MiB -1 -1 0.20 18128 1 0.03 -1 -1 30320 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 24.2 MiB 3.56 843 12183 3137 7426 1620 63.2 MiB 0.13 0.00 4.18499 -131.201 -4.18499 4.18499 0.73 0.000696814 0.000648352 0.0453251 0.0420708 36 2671 41 6.87369e+06 321398 648988. 2245.63 2.65 0.202951 0.176481 26050 158493 -1 2062 22 1974 3012 214596 52850 3.52851 3.52851 -128.635 -3.52851 0 0 828058. 2865.25 0.23 0.09 0.14 -1 -1 0.23 0.0289563 0.0251813 142 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 5.80 vpr 63.20 MiB -1 -1 0.24 18208 1 0.03 -1 -1 30348 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 24.3 MiB 2.18 910 14567 3971 8883 1713 63.2 MiB 0.08 0.00 4.81568 -140.871 -4.81568 4.81568 0.71 0.00031632 0.000290659 0.0229807 0.0211161 30 2435 22 6.87369e+06 433189 556674. 1926.21 0.80 0.094068 0.0818193 25186 138497 -1 1932 21 1346 2179 134417 31060 3.80436 3.80436 -134.289 -3.80436 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0281507 0.0243815 133 61 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 5.40 vpr 62.39 MiB -1 -1 0.21 18004 1 0.02 -1 -1 30380 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63884 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 23.8 MiB 1.85 780 9368 2426 5947 995 62.4 MiB 0.08 0.00 3.03342 -94.7718 -3.03342 3.03342 0.68 0.000548571 0.000510279 0.0311932 0.029013 32 2012 24 6.87369e+06 265503 586450. 2029.24 0.85 0.0922037 0.0809222 25474 144626 -1 1689 24 1222 1996 155355 35631 2.89726 2.89726 -98.8151 -2.89726 0 0 744469. 2576.02 0.20 0.07 0.13 -1 -1 0.20 0.0262359 0.0227835 94 27 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 7.83 vpr 63.33 MiB -1 -1 0.25 18320 1 0.03 -1 -1 30452 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 24.4 MiB 2.03 1098 16273 6888 8626 759 63.3 MiB 0.15 0.00 3.7276 -123.933 -3.7276 3.7276 0.68 0.000719386 0.000667704 0.0584609 0.0539238 34 2949 21 6.87369e+06 335372 618332. 2139.56 2.88 0.232186 0.201385 25762 151098 -1 2326 21 1772 3071 217549 51302 3.27511 3.27511 -125.274 -3.27511 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0289735 0.0251131 135 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 7.98 vpr 63.13 MiB -1 -1 0.25 18336 1 0.03 -1 -1 30156 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 24.1 MiB 3.67 1093 10315 2797 6648 870 63.1 MiB 0.11 0.00 4.18499 -137.545 -4.18499 4.18499 0.68 0.00066441 0.000614832 0.0401547 0.037318 34 2792 22 6.87369e+06 293451 618332. 2139.56 1.44 0.173376 0.150855 25762 151098 -1 2280 21 1588 2312 178533 39644 3.21661 3.21661 -126.358 -3.21661 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0266242 0.0231615 140 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 7.17 vpr 62.88 MiB -1 -1 0.20 18296 1 0.03 -1 -1 30444 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 24.1 MiB 2.28 867 16445 5131 9259 2055 62.9 MiB 0.13 0.00 2.85191 -106.24 -2.85191 2.85191 0.68 0.000644247 0.000597256 0.0530554 0.0491716 30 1915 21 6.87369e+06 391268 556674. 1926.21 2.04 0.211713 0.184099 25186 138497 -1 1643 20 1156 1984 111966 26084 1.93252 1.93252 -95.358 -1.93252 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0248324 0.0215173 109 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 4.21 vpr 62.34 MiB -1 -1 0.21 18004 1 0.03 -1 -1 30128 -1 -1 14 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63840 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 23.6 MiB 0.76 548 9196 3125 4759 1312 62.3 MiB 0.07 0.00 2.38778 -80.5436 -2.38778 2.38778 0.67 0.000495633 0.000461375 0.030218 0.0281211 30 1363 23 6.87369e+06 195634 556674. 1926.21 0.78 0.0904064 0.078897 25186 138497 -1 1117 18 558 803 49612 11779 2.06882 2.06882 -84.1472 -2.06882 0 0 706193. 2443.58 0.19 0.04 0.12 -1 -1 0.19 0.0175915 0.0152437 71 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 8.49 vpr 62.54 MiB -1 -1 0.22 18172 1 0.03 -1 -1 30576 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 24.0 MiB 3.64 940 10406 3145 6506 755 62.5 MiB 0.10 0.00 5.00887 -149.776 -5.00887 5.00887 0.69 0.000617366 0.000574457 0.0379418 0.0352539 30 2234 22 6.87369e+06 265503 556674. 1926.21 2.05 0.186554 0.161147 25186 138497 -1 1813 18 871 1255 70103 17136 3.44261 3.44261 -132.101 -3.44261 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0231751 0.0201729 116 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 5.03 vpr 63.13 MiB -1 -1 0.22 18220 1 0.03 -1 -1 30372 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 24.2 MiB 1.24 1070 16515 4276 10581 1658 63.1 MiB 0.13 0.00 4.18253 -136.483 -4.18253 4.18253 0.68 0.000655978 0.000603576 0.0521776 0.0483573 32 2544 27 6.87369e+06 489084 586450. 2029.24 0.95 0.138962 0.12251 25474 144626 -1 2155 19 1439 2152 176436 39627 3.6371 3.6371 -132.704 -3.6371 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0255905 0.0222301 137 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 7.50 vpr 63.23 MiB -1 -1 0.26 18172 1 0.03 -1 -1 30320 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 24.3 MiB 3.12 1162 10481 3111 6377 993 63.2 MiB 0.11 0.00 4.31025 -134.645 -4.31025 4.31025 0.68 0.000725445 0.000672474 0.042461 0.0393572 34 2905 21 6.87369e+06 307425 618332. 2139.56 1.47 0.183818 0.159778 25762 151098 -1 2438 21 1694 2671 225483 49755 3.71046 3.71046 -133.687 -3.71046 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0290667 0.0252763 142 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 5.41 vpr 62.30 MiB -1 -1 0.20 18052 1 0.02 -1 -1 30608 -1 -1 17 26 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63792 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 23.8 MiB 1.82 352 9555 3939 4800 816 62.3 MiB 0.06 0.00 2.60613 -72.4296 -2.60613 2.60613 0.67 0.000427364 0.00039694 0.0271197 0.0252037 30 1310 31 6.87369e+06 237555 556674. 1926.21 0.86 0.0841033 0.0735524 25186 138497 -1 893 26 691 1039 62560 16373 2.27547 2.27547 -71.0198 -2.27547 0 0 706193. 2443.58 0.19 0.05 0.12 -1 -1 0.19 0.0204564 0.0176048 67 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 5.45 vpr 62.67 MiB -1 -1 0.22 17716 1 0.03 -1 -1 30272 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 23.8 MiB 1.27 1029 10263 2694 6379 1190 62.7 MiB 0.10 0.00 4.63338 -131.361 -4.63338 4.63338 0.67 0.000616075 0.000572916 0.0349541 0.0324691 34 2410 23 6.87369e+06 321398 618332. 2139.56 1.36 0.156571 0.13564 25762 151098 -1 2071 24 1472 2681 184281 41722 3.7964 3.7964 -126.792 -3.7964 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0274713 0.0237485 119 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 5.81 vpr 62.06 MiB -1 -1 0.20 17408 1 0.02 -1 -1 29992 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63552 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 23.4 MiB 0.63 415 9836 3792 4975 1069 62.1 MiB 0.06 0.00 2.58823 -76.4648 -2.58823 2.58823 0.68 0.000419602 0.000388928 0.0270038 0.0250465 34 1145 25 6.87369e+06 167686 618332. 2139.56 2.49 0.145717 0.125304 25762 151098 -1 885 16 568 649 42105 11703 1.91852 1.91852 -73.9266 -1.91852 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.0139942 0.0122172 65 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 4.86 vpr 62.70 MiB -1 -1 0.18 17884 1 0.03 -1 -1 30008 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 24.1 MiB 1.00 1004 15430 3940 9856 1634 62.7 MiB 0.13 0.00 4.64012 -131.611 -4.64012 4.64012 0.68 0.000636394 0.000591511 0.0479135 0.0445233 32 2393 20 6.87369e+06 419215 586450. 2029.24 0.91 0.131351 0.116122 25474 144626 -1 1946 21 1053 1702 124165 28883 3.7541 3.7541 -122.23 -3.7541 0 0 744469. 2576.02 0.20 0.07 0.13 -1 -1 0.20 0.0256998 0.0223166 120 24 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 5.13 vpr 62.88 MiB -1 -1 0.18 17764 1 0.03 -1 -1 30468 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 24.2 MiB 0.92 1073 17591 5429 9856 2306 62.9 MiB 0.15 0.00 3.58631 -114.754 -3.58631 3.58631 0.68 0.000633839 0.000589456 0.0534782 0.0496494 34 2373 20 6.87369e+06 433189 618332. 2139.56 1.34 0.172547 0.151042 25762 151098 -1 2028 19 1130 2110 126575 29957 2.92126 2.92126 -109.204 -2.92126 0 0 787024. 2723.27 0.21 0.07 0.15 -1 -1 0.21 0.0238248 0.0208172 130 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 6.16 vpr 63.07 MiB -1 -1 0.18 18360 1 0.03 -1 -1 30424 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 24.1 MiB 1.66 1004 15824 5333 7131 3360 63.1 MiB 0.13 0.00 4.74578 -132.154 -4.74578 4.74578 0.68 0.000679159 0.000630318 0.0540281 0.0501897 34 2495 24 6.87369e+06 391268 618332. 2139.56 1.64 0.180509 0.157849 25762 151098 -1 2006 23 1429 2568 184000 43320 3.81646 3.81646 -126.442 -3.81646 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0291877 0.0252525 131 50 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 5.18 vpr 62.45 MiB -1 -1 0.23 17944 1 0.03 -1 -1 30112 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 23.8 MiB 1.08 894 11776 3852 5929 1995 62.4 MiB 0.10 0.00 3.01142 -109.398 -3.01142 3.01142 0.68 0.000599953 0.000557996 0.0430425 0.0400158 34 1983 21 6.87369e+06 223581 618332. 2139.56 1.31 0.158586 0.13806 25762 151098 -1 1738 19 935 1554 112505 25755 2.78496 2.78496 -110.254 -2.78496 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0240186 0.020922 99 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 6.53 vpr 62.51 MiB -1 -1 0.21 17960 1 0.03 -1 -1 30184 -1 -1 26 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 23.9 MiB 1.19 686 13738 3515 8195 2028 62.5 MiB 0.11 0.00 3.22907 -99.998 -3.22907 3.22907 0.68 0.000565102 0.000526 0.0422447 0.0392769 32 1791 21 6.87369e+06 363320 586450. 2029.24 2.53 0.181196 0.156751 25474 144626 -1 1519 21 966 1551 138665 31664 3.03361 3.03361 -102.154 -3.03361 0 0 744469. 2576.02 0.20 0.06 0.13 -1 -1 0.20 0.0224106 0.0193687 97 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 4.78 vpr 62.54 MiB -1 -1 0.18 17948 1 0.03 -1 -1 30120 -1 -1 18 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 23.8 MiB 1.16 760 11698 3432 6949 1317 62.5 MiB 0.10 0.00 3.46101 -100.103 -3.46101 3.46101 0.68 0.000554332 0.000515978 0.0406475 0.0378532 32 2253 27 6.87369e+06 251529 586450. 2029.24 0.93 0.110831 0.0973545 25474 144626 -1 1755 23 1204 2187 187934 42549 3.07756 3.07756 -104.944 -3.07756 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0241065 0.0207758 95 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 6.76 vpr 62.34 MiB -1 -1 0.20 17652 1 0.03 -1 -1 30264 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63840 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 23.7 MiB 1.35 766 11106 2788 6396 1922 62.3 MiB 0.09 0.00 3.84524 -116.411 -3.84524 3.84524 0.68 0.000563594 0.000524364 0.0375314 0.0348968 34 1889 24 6.87369e+06 237555 618332. 2139.56 2.63 0.174361 0.150832 25762 151098 -1 1686 21 1144 1880 136805 31506 2.90826 2.90826 -111.82 -2.90826 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0230891 0.0200567 101 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 5.97 vpr 62.57 MiB -1 -1 0.23 17872 1 0.03 -1 -1 30156 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 23.9 MiB 0.92 707 5831 1162 4318 351 62.6 MiB 0.06 0.00 3.52097 -104.958 -3.52097 3.52097 0.73 0.000588057 0.00054797 0.0188054 0.0174813 26 2268 25 6.87369e+06 363320 503264. 1741.40 2.24 0.158031 0.135507 24322 120374 -1 1908 24 1432 2460 211794 50111 3.34816 3.34816 -113.514 -3.34816 0 0 618332. 2139.56 0.17 0.08 0.11 -1 -1 0.17 0.0264176 0.0228381 102 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 8.10 vpr 62.78 MiB -1 -1 0.23 17972 1 0.03 -1 -1 30388 -1 -1 25 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 23.9 MiB 2.72 703 8591 2001 5849 741 62.8 MiB 0.08 0.00 3.08002 -96.8082 -3.08002 3.08002 0.68 0.000601655 0.000559454 0.0288173 0.0267798 32 2079 29 6.87369e+06 349346 586450. 2029.24 2.59 0.176386 0.151656 25474 144626 -1 1673 21 1230 1792 142577 34533 2.40547 2.40547 -97.8315 -2.40547 0 0 744469. 2576.02 0.20 0.07 0.13 -1 -1 0.20 0.0238204 0.0205642 106 54 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 7.13 vpr 63.22 MiB -1 -1 0.23 18244 1 0.03 -1 -1 30560 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 24.2 MiB 3.18 1195 18160 4666 11113 2381 63.2 MiB 0.16 0.00 4.16289 -124.14 -4.16289 4.16289 0.71 0.000746007 0.000694158 0.0570407 0.0529152 32 3261 23 6.87369e+06 558954 586450. 2029.24 0.98 0.150215 0.132827 25474 144626 -1 2610 22 1638 3229 246794 56458 4.1243 4.1243 -129.916 -4.1243 0 0 744469. 2576.02 0.20 0.10 0.14 -1 -1 0.20 0.0310284 0.0270493 156 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 7.28 vpr 63.30 MiB -1 -1 0.20 18304 1 0.03 -1 -1 30276 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 24.3 MiB 2.83 1033 17476 4934 10272 2270 63.3 MiB 0.16 0.00 3.9888 -134.401 -3.9888 3.9888 0.68 0.000756573 0.000703205 0.0576117 0.0534326 34 2352 21 6.87369e+06 531006 618332. 2139.56 1.41 0.201459 0.17592 25762 151098 -1 2021 19 1552 2502 154132 36441 3.07746 3.07746 -120.734 -3.07746 0 0 787024. 2723.27 0.30 0.07 0.16 -1 -1 0.30 0.0247457 0.0218959 148 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 7.20 vpr 62.62 MiB -1 -1 0.22 18252 1 0.03 -1 -1 30100 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 23.9 MiB 2.97 827 12506 3647 6930 1929 62.6 MiB 0.11 0.00 4.12999 -122.522 -4.12999 4.12999 0.68 0.000590156 0.000549401 0.0441175 0.0410609 34 2129 21 6.87369e+06 251529 618332. 2139.56 1.44 0.158351 0.137893 25762 151098 -1 1834 20 1281 1931 143544 34065 3.45621 3.45621 -119.844 -3.45621 0 0 787024. 2723.27 0.21 0.07 0.15 -1 -1 0.21 0.0228831 0.0198592 109 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 6.95 vpr 63.20 MiB -1 -1 0.21 18204 1 0.03 -1 -1 30396 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 24.3 MiB 2.47 986 12959 4044 6276 2639 63.2 MiB 0.13 0.00 3.77586 -121.787 -3.77586 3.77586 0.68 0.000724787 0.0006733 0.0496512 0.046134 34 2740 27 6.87369e+06 363320 618332. 2139.56 1.62 0.197711 0.172343 25762 151098 -1 2242 22 1647 2835 204711 47759 3.12956 3.12956 -121.716 -3.12956 0 0 787024. 2723.27 0.22 0.09 0.13 -1 -1 0.22 0.0300106 0.0260471 136 61 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 9.26 vpr 63.44 MiB -1 -1 0.26 18300 1 0.04 -1 -1 30308 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 24.6 MiB 4.23 1219 10033 2675 6590 768 63.4 MiB 0.11 0.00 5.67608 -170.361 -5.67608 5.67608 0.68 0.000722478 0.000670848 0.0395092 0.036644 34 3445 48 6.87369e+06 349346 618332. 2139.56 2.04 0.202387 0.175197 25762 151098 -1 2683 23 2323 3428 293108 64897 4.86379 4.86379 -170.23 -4.86379 0 0 787024. 2723.27 0.23 0.10 0.13 -1 -1 0.23 0.0313154 0.0271942 159 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 8.57 vpr 63.38 MiB -1 -1 0.21 18120 1 0.03 -1 -1 30336 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64904 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 24.4 MiB 4.15 920 11145 2994 7135 1016 63.4 MiB 0.12 0.00 5.24874 -155.932 -5.24874 5.24874 0.68 0.000735526 0.000680931 0.0431513 0.0400527 34 2724 30 6.87369e+06 377294 618332. 2139.56 1.48 0.161389 0.140879 25762 151098 -1 2074 21 1789 2709 186218 47251 4.63715 4.63715 -156.683 -4.63715 0 0 787024. 2723.27 0.22 0.08 0.15 -1 -1 0.22 0.0295929 0.025709 152 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 6.61 vpr 63.31 MiB -1 -1 0.26 18148 1 0.03 -1 -1 30396 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64828 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 24.4 MiB 2.75 890 9058 2302 6004 752 63.3 MiB 0.10 0.00 4.13563 -126.898 -4.13563 4.13563 0.67 0.000702066 0.000653405 0.0345729 0.0321418 32 3034 27 6.87369e+06 349346 586450. 2029.24 0.98 0.122263 0.10712 25474 144626 -1 2241 19 1631 2733 219947 53339 3.29421 3.29421 -122.325 -3.29421 0 0 744469. 2576.02 0.20 0.09 0.13 -1 -1 0.20 0.0259918 0.0226546 131 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 7.11 vpr 62.74 MiB -1 -1 0.20 18328 1 0.03 -1 -1 30352 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64244 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 24.2 MiB 2.72 1007 14907 5613 7321 1973 62.7 MiB 0.13 0.00 4.35225 -119.373 -4.35225 4.35225 0.68 0.000622218 0.000578949 0.0530697 0.0492775 34 2610 26 6.87369e+06 279477 618332. 2139.56 1.47 0.174865 0.152682 25762 151098 -1 2183 24 1390 2007 154868 35799 3.95806 3.95806 -125.287 -3.95806 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0276729 0.0239482 119 27 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 8.88 vpr 63.41 MiB -1 -1 0.28 18524 1 0.03 -1 -1 30376 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 24.5 MiB 2.89 1243 16762 4798 10410 1554 63.4 MiB 0.17 0.00 4.91341 -161.214 -4.91341 4.91341 0.68 0.000978414 0.000917071 0.0647767 0.0601687 32 3317 36 6.87369e+06 531006 586450. 2029.24 2.97 0.331074 0.286072 25474 144626 -1 2723 16 1683 2742 221851 50536 4.03776 4.03776 -154.055 -4.03776 0 0 744469. 2576.02 0.20 0.09 0.13 -1 -1 0.20 0.0280091 0.0244342 173 87 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 5.62 vpr 62.68 MiB -1 -1 0.22 18060 1 0.03 -1 -1 30152 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 24.1 MiB 1.97 672 7339 1576 4955 808 62.7 MiB 0.07 0.00 3.55895 -103.04 -3.55895 3.55895 0.68 0.000574282 0.000527795 0.024652 0.0228603 32 1962 22 6.87369e+06 307425 586450. 2029.24 0.88 0.0923815 0.0804406 25474 144626 -1 1649 22 1252 2135 162207 38995 2.88796 2.88796 -104.481 -2.88796 0 0 744469. 2576.02 0.20 0.07 0.13 -1 -1 0.20 0.0236273 0.0203868 96 28 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 6.65 vpr 63.18 MiB -1 -1 0.24 18316 1 0.03 -1 -1 30164 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 24.2 MiB 2.80 1158 13127 3358 8192 1577 63.2 MiB 0.13 0.00 4.80948 -147.413 -4.80948 4.80948 0.68 0.000696787 0.000646086 0.0504144 0.0466302 30 3059 23 6.87369e+06 321398 556674. 1926.21 0.98 0.121277 0.107209 25186 138497 -1 2479 20 1353 2038 146343 31929 3.92376 3.92376 -138.461 -3.92376 0 0 706193. 2443.58 0.20 0.07 0.12 -1 -1 0.20 0.0263198 0.0228793 140 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 7.93 vpr 62.96 MiB -1 -1 0.22 18352 1 0.03 -1 -1 30296 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 24.0 MiB 1.79 1064 11703 2949 7949 805 63.0 MiB 0.11 0.00 3.7235 -118.87 -3.7235 3.7235 0.68 0.000689282 0.00064066 0.039135 0.0363276 28 2710 26 6.87369e+06 447163 531479. 1839.03 3.33 0.203477 0.176117 24610 126494 -1 2453 23 1578 2751 231219 51613 3.38641 3.38641 -125.641 -3.38641 0 0 648988. 2245.63 0.18 0.09 0.11 -1 -1 0.18 0.0295038 0.0255373 132 53 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 5.24 vpr 62.71 MiB -1 -1 0.16 17732 1 0.03 -1 -1 30092 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 24.1 MiB 1.02 984 6120 1199 4615 306 62.7 MiB 0.07 0.00 4.14049 -128.002 -4.14049 4.14049 0.67 0.000627342 0.000583804 0.0216244 0.0200746 32 2790 25 6.87369e+06 363320 586450. 2029.24 1.31 0.118435 0.102609 25474 144626 -1 2197 22 1532 2815 214696 50708 3.5868 3.5868 -125.637 -3.5868 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0260472 0.0225608 123 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 7.56 vpr 63.14 MiB -1 -1 0.23 18204 1 0.03 -1 -1 30360 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 24.2 MiB 3.06 1135 13883 3973 8209 1701 63.1 MiB 0.14 0.00 4.95345 -149.04 -4.95345 4.95345 0.70 0.000692527 0.000642226 0.0532851 0.0494736 34 2680 19 6.87369e+06 307425 618332. 2139.56 1.59 0.185467 0.162048 25762 151098 -1 2300 18 1333 1762 130570 29977 3.8404 3.8404 -137.578 -3.8404 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0248861 0.0217367 136 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 9.07 vpr 63.19 MiB -1 -1 0.22 18312 1 0.03 -1 -1 30328 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 24.3 MiB 2.70 887 17835 5720 8884 3231 63.2 MiB 0.15 0.00 3.78934 -120.114 -3.78934 3.78934 0.68 0.000710885 0.000661064 0.0601625 0.0557891 36 2335 23 6.87369e+06 447163 648988. 2245.63 3.48 0.262018 0.227582 26050 158493 -1 1838 16 1140 2130 129087 32042 3.31711 3.31711 -116.549 -3.31711 0 0 828058. 2865.25 0.22 0.06 0.11 -1 -1 0.22 0.0230091 0.0200932 136 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 7.42 vpr 63.25 MiB -1 -1 0.24 18248 1 0.04 -1 -1 30364 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 24.3 MiB 2.72 937 16971 4971 8753 3247 63.3 MiB 0.16 0.00 4.12873 -132.442 -4.12873 4.12873 0.68 0.000737514 0.000683883 0.0568908 0.0527661 34 2718 26 6.87369e+06 489084 618332. 2139.56 1.72 0.206077 0.179821 25762 151098 -1 2066 22 1668 2690 198901 47188 3.31716 3.31716 -120.864 -3.31716 0 0 787024. 2723.27 0.25 0.09 0.13 -1 -1 0.25 0.0305059 0.0264305 144 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 6.25 vpr 62.97 MiB -1 -1 0.20 18160 1 0.03 -1 -1 30260 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 24.1 MiB 0.89 950 11863 2938 8144 781 63.0 MiB 0.10 0.00 4.28779 -126.336 -4.28779 4.28779 0.68 0.000620441 0.000573592 0.0361995 0.0335706 32 2445 24 6.87369e+06 461137 586450. 2029.24 2.58 0.226615 0.195306 25474 144626 -1 2085 21 1314 2365 183655 42268 3.6921 3.6921 -124.78 -3.6921 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0256517 0.0222615 124 24 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 7.11 vpr 63.33 MiB -1 -1 0.23 18216 1 0.03 -1 -1 30072 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 24.4 MiB 2.69 982 14072 3725 8207 2140 63.3 MiB 0.14 0.00 4.76758 -137.763 -4.76758 4.76758 0.71 0.000655318 0.00060949 0.0512595 0.0476823 34 2626 24 6.87369e+06 307425 618332. 2139.56 1.44 0.181268 0.15819 25762 151098 -1 2196 25 1842 2696 197778 45492 3.8247 3.8247 -129.883 -3.8247 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0304702 0.0263237 135 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 8.09 vpr 63.29 MiB -1 -1 0.25 18208 1 0.03 -1 -1 30316 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 24.4 MiB 2.63 1107 16267 4807 9259 2201 63.3 MiB 0.16 0.00 4.75448 -144.408 -4.75448 4.75448 0.68 0.000741007 0.000688477 0.0651869 0.0604959 34 3196 22 6.87369e+06 307425 618332. 2139.56 2.50 0.20833 0.182507 25762 151098 -1 2511 24 1945 3198 270338 61028 4.16936 4.16936 -144.077 -4.16936 0 0 787024. 2723.27 0.21 0.10 0.16 -1 -1 0.21 0.0321353 0.0278372 141 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 7.17 vpr 63.37 MiB -1 -1 0.25 18188 1 0.03 -1 -1 30264 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 24.4 MiB 2.75 1063 9385 2579 6271 535 63.4 MiB 0.10 0.00 4.4085 -135.318 -4.4085 4.4085 0.68 0.000746669 0.000693582 0.03993 0.0370947 34 3018 23 6.87369e+06 293451 618332. 2139.56 1.54 0.184496 0.160327 25762 151098 -1 2545 21 1704 3056 247319 56220 3.8237 3.8237 -136.367 -3.8237 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0296867 0.0257365 135 77 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 7.59 vpr 62.48 MiB -1 -1 0.22 17932 1 0.03 -1 -1 30288 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 23.8 MiB 0.90 618 7457 1687 5261 509 62.5 MiB 0.06 0.00 3.47695 -100.633 -3.47695 3.47695 0.73 0.000416283 0.000381758 0.0181156 0.0166174 28 1979 29 6.87369e+06 307425 531479. 1839.03 3.95 0.173146 0.147954 24610 126494 -1 1725 19 1119 1757 142622 35883 2.81396 2.81396 -104.891 -2.81396 0 0 648988. 2245.63 0.18 0.06 0.11 -1 -1 0.18 0.0208845 0.0180036 93 23 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 6.53 vpr 62.92 MiB -1 -1 0.24 18216 1 0.03 -1 -1 30112 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 24.1 MiB 2.02 945 13432 4185 7036 2211 62.9 MiB 0.13 0.00 3.78256 -132.968 -3.78256 3.78256 0.69 0.000673854 0.000621018 0.0528005 0.04901 34 2610 20 6.87369e+06 251529 618332. 2139.56 1.60 0.181555 0.158454 25762 151098 -1 2258 24 1858 2665 241814 53754 3.4618 3.4618 -134.64 -3.4618 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0298908 0.0258763 124 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 8.40 vpr 63.50 MiB -1 -1 0.21 18208 1 0.03 -1 -1 30384 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 24.6 MiB 3.19 1267 11983 3302 6304 2377 63.5 MiB 0.14 0.00 5.48208 -158.647 -5.48208 5.48208 0.68 0.000761176 0.000706949 0.0494481 0.0459916 34 3774 46 6.87369e+06 335372 618332. 2139.56 2.32 0.194918 0.17014 25762 151098 -1 2816 20 2121 3257 267636 63434 4.8824 4.8824 -161.854 -4.8824 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0296652 0.025876 166 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 6.52 vpr 63.14 MiB -1 -1 0.20 18284 1 0.03 -1 -1 30376 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 24.2 MiB 2.73 1044 14048 3802 8919 1327 63.1 MiB 0.13 0.00 4.31147 -138.674 -4.31147 4.31147 0.69 0.000694144 0.000645666 0.0450878 0.0418235 28 2441 22 6.87369e+06 475111 531479. 1839.03 0.93 0.127557 0.112442 24610 126494 -1 2295 23 1620 2678 202128 45280 3.09026 3.09026 -127.972 -3.09026 0 0 648988. 2245.63 0.18 0.09 0.11 -1 -1 0.18 0.0297182 0.0257321 137 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 5.06 vpr 62.56 MiB -1 -1 0.17 18088 1 0.03 -1 -1 30348 -1 -1 25 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 23.9 MiB 0.76 638 14295 3167 9759 1369 62.6 MiB 0.11 0.00 3.573 -107.747 -3.573 3.573 0.72 0.000563598 0.000513999 0.0458283 0.0424914 28 2093 49 6.87369e+06 349346 531479. 1839.03 1.50 0.139318 0.121894 24610 126494 -1 1708 23 1291 2042 156044 38519 3.09756 3.09756 -114.089 -3.09756 0 0 648988. 2245.63 0.18 0.07 0.11 -1 -1 0.18 0.0252833 0.0217777 104 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 10.60 vpr 63.54 MiB -1 -1 0.26 18588 1 0.03 -1 -1 30356 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65068 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 24.7 MiB 5.23 1345 13553 3739 8295 1519 63.5 MiB 0.15 0.00 5.88501 -174.993 -5.88501 5.88501 0.68 0.00085638 0.000798453 0.061175 0.0570393 36 3244 24 6.87369e+06 349346 648988. 2245.63 2.34 0.232528 0.204278 26050 158493 -1 2821 22 2283 3476 317566 69187 4.6476 4.6476 -163.711 -4.6476 0 0 828058. 2865.25 0.22 0.11 0.14 -1 -1 0.22 0.0342328 0.0296948 171 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 6.61 vpr 63.13 MiB -1 -1 0.23 18420 1 0.03 -1 -1 30444 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 24.2 MiB 2.78 991 19023 5843 10714 2466 63.1 MiB 0.16 0.00 4.60102 -140.95 -4.60102 4.60102 0.70 0.000681381 0.000633124 0.0587824 0.054399 28 2347 24 6.87369e+06 489084 531479. 1839.03 0.92 0.141682 0.125268 24610 126494 -1 2160 21 1572 2552 174583 41140 3.7901 3.7901 -135.578 -3.7901 0 0 648988. 2245.63 0.18 0.08 0.11 -1 -1 0.18 0.0281868 0.0246058 135 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 6.35 vpr 62.54 MiB -1 -1 0.16 17792 1 0.02 -1 -1 30484 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 24.0 MiB 0.83 773 11398 3057 7257 1084 62.5 MiB 0.10 0.00 3.5954 -103.22 -3.5954 3.5954 0.68 0.000543986 0.000505651 0.033707 0.0313759 34 1951 23 6.87369e+06 335372 618332. 2139.56 2.78 0.216464 0.186333 25762 151098 -1 1568 17 903 1512 100341 24273 2.92426 2.92426 -99.3986 -2.92426 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0181227 0.0157398 94 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 7.26 vpr 63.22 MiB -1 -1 0.23 18420 1 0.03 -1 -1 30224 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 24.3 MiB 1.99 1100 15611 4394 9181 2036 63.2 MiB 0.13 0.00 5.24422 -137.452 -5.24422 5.24422 0.68 0.000698116 0.000646806 0.0485642 0.0449604 30 2517 25 6.87369e+06 517032 556674. 1926.21 2.35 0.207577 0.180399 25186 138497 -1 2066 19 1062 2224 129406 29709 4.11965 4.11965 -128.758 -4.11965 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0258582 0.0225143 145 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 6.19 vpr 62.48 MiB -1 -1 0.14 17764 1 0.03 -1 -1 30096 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 23.9 MiB 1.06 806 14303 4874 7080 2349 62.5 MiB 0.11 0.00 3.43775 -108.88 -3.43775 3.43775 0.68 0.000553673 0.000515194 0.0458059 0.0425873 30 1962 20 6.87369e+06 265503 556674. 1926.21 2.39 0.174122 0.151251 25186 138497 -1 1661 19 1041 1865 115410 26078 2.85796 2.85796 -108.295 -2.85796 0 0 706193. 2443.58 0.26 0.05 0.12 -1 -1 0.26 0.019971 0.0176693 98 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 5.81 vpr 62.80 MiB -1 -1 0.23 17884 1 0.03 -1 -1 30384 -1 -1 34 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 24.1 MiB 2.12 844 16959 4603 10486 1870 62.8 MiB 0.13 0.00 3.87934 -115.346 -3.87934 3.87934 0.67 0.000600714 0.00055189 0.0483101 0.0447585 28 1981 18 6.87369e+06 475111 531479. 1839.03 0.86 0.116378 0.10291 24610 126494 -1 1929 24 1355 2462 170836 39582 3.10226 3.10226 -115.695 -3.10226 0 0 648988. 2245.63 0.18 0.08 0.11 -1 -1 0.18 0.0260062 0.0223703 109 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 8.26 vpr 63.27 MiB -1 -1 0.23 18236 1 0.03 -1 -1 30280 -1 -1 24 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64788 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 24.3 MiB 3.83 1009 14221 4548 7033 2640 63.3 MiB 0.14 0.00 4.12353 -122.981 -4.12353 4.12353 0.68 0.000683781 0.000634246 0.0551157 0.0511588 34 2595 24 6.87369e+06 335372 618332. 2139.56 1.50 0.191664 0.167208 25762 151098 -1 2283 23 1888 2879 220409 50981 3.35291 3.35291 -119.962 -3.35291 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0298703 0.0258741 138 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 6.57 vpr 63.20 MiB -1 -1 0.20 18156 1 0.03 -1 -1 30304 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 24.3 MiB 2.21 979 14964 4132 9262 1570 63.2 MiB 0.14 0.00 4.41935 -144.511 -4.41935 4.41935 0.68 0.000706729 0.000655872 0.0543983 0.0504752 34 2262 22 6.87369e+06 363320 618332. 2139.56 1.43 0.191052 0.166856 25762 151098 -1 1874 21 1397 2097 141545 33476 3.96296 3.96296 -136.55 -3.96296 0 0 787024. 2723.27 0.22 0.07 0.13 -1 -1 0.22 0.0284126 0.0247064 132 54 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 6.14 vpr 63.09 MiB -1 -1 0.19 18188 1 0.03 -1 -1 30300 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 24.2 MiB 2.27 1060 12943 3369 8335 1239 63.1 MiB 0.12 0.00 4.82683 -144.882 -4.82683 4.82683 0.68 0.000702655 0.000653332 0.0467404 0.0434579 32 2771 40 6.87369e+06 377294 586450. 2029.24 1.02 0.137942 0.121375 25474 144626 -1 2341 21 1610 2888 258610 57275 3.91576 3.91576 -141.496 -3.91576 0 0 744469. 2576.02 0.20 0.09 0.13 -1 -1 0.20 0.0281934 0.0244633 133 51 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 7.62 vpr 62.55 MiB -1 -1 0.19 17828 1 0.03 -1 -1 30164 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 23.8 MiB 3.45 898 11233 2898 7220 1115 62.6 MiB 0.11 0.00 4.78272 -135.094 -4.78272 4.78272 0.69 0.000594035 0.000551682 0.0422344 0.0392441 34 2238 25 6.87369e+06 209608 618332. 2139.56 1.40 0.156663 0.13652 25762 151098 -1 1856 19 949 1318 98854 22515 3.2292 3.2292 -118.065 -3.2292 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0219241 0.0190591 103 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 7.09 vpr 63.03 MiB -1 -1 0.25 18196 1 0.03 -1 -1 30416 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 24.2 MiB 2.65 852 9712 2603 6178 931 63.0 MiB 0.10 0.00 3.7214 -119.25 -3.7214 3.7214 0.68 0.000632907 0.000587674 0.0379732 0.0353089 34 2440 41 6.87369e+06 237555 618332. 2139.56 1.58 0.174949 0.151409 25762 151098 -1 1987 23 1447 2180 181291 41758 3.2835 3.2835 -120.806 -3.2835 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.027652 0.0238713 114 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 7.76 vpr 63.09 MiB -1 -1 0.24 18328 1 0.03 -1 -1 30540 -1 -1 34 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 24.1 MiB 2.20 924 12798 3409 8384 1005 63.1 MiB 0.11 0.00 3.48905 -102.127 -3.48905 3.48905 0.68 0.000664528 0.000612011 0.0402141 0.0372691 28 2301 21 6.87369e+06 475111 531479. 1839.03 2.69 0.204275 0.176341 24610 126494 -1 2051 21 1207 2406 163683 38026 2.93926 2.93926 -104.1 -2.93926 0 0 648988. 2245.63 0.18 0.07 0.11 -1 -1 0.18 0.0260724 0.0225632 124 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 7.13 vpr 62.73 MiB -1 -1 0.24 17980 1 0.03 -1 -1 30352 -1 -1 35 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 24.0 MiB 1.60 881 17159 5393 9230 2536 62.7 MiB 0.13 0.00 4.16979 -108.643 -4.16979 4.16979 0.68 0.00058376 0.000542967 0.0480838 0.0445905 26 2324 34 6.87369e+06 489084 503264. 1741.40 2.61 0.195101 0.168923 24322 120374 -1 2062 24 1373 2548 261583 55392 3.966 3.966 -116.28 -3.966 0 0 618332. 2139.56 0.18 0.13 0.11 -1 -1 0.18 0.0354222 0.0303985 117 27 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 8.66 vpr 62.83 MiB -1 -1 0.20 18244 1 0.03 -1 -1 30312 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 30 32 317 269 1 156 79 17 17 289 -1 unnamed_device 23.9 MiB 3.08 809 13092 4770 6917 1405 62.8 MiB 0.12 0.00 3.85608 -118.614 -3.85608 3.85608 0.69 0.000634158 0.000590002 0.0509338 0.0473378 34 2175 21 6.87369e+06 237555 618332. 2139.56 2.79 0.233375 0.201417 25762 151098 -1 1788 21 1434 2513 188244 43098 3.10226 3.10226 -117.833 -3.10226 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0253672 0.021971 105 63 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 7.29 vpr 63.05 MiB -1 -1 0.24 18216 1 0.03 -1 -1 30068 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 24.2 MiB 2.84 1036 10756 3215 6482 1059 63.1 MiB 0.11 0.00 3.6884 -127.691 -3.6884 3.6884 0.70 0.00066583 0.000618837 0.04257 0.0395456 34 2701 19 6.87369e+06 237555 618332. 2139.56 1.52 0.168557 0.146568 25762 151098 -1 2296 20 1527 2272 197567 44265 3.28591 3.28591 -130.033 -3.28591 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0257007 0.0223275 122 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 6.82 vpr 62.82 MiB -1 -1 0.23 17696 1 0.03 -1 -1 30352 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 24.2 MiB 1.00 1012 10744 2561 7474 709 62.8 MiB 0.10 0.00 4.55512 -132.128 -4.55512 4.55512 0.69 0.000629233 0.00058506 0.0344327 0.0318623 30 2480 24 6.87369e+06 433189 556674. 1926.21 2.94 0.222734 0.191578 25186 138497 -1 2052 22 1079 2002 143467 30775 3.3592 3.3592 -119.088 -3.3592 0 0 706193. 2443.58 0.23 0.07 0.13 -1 -1 0.23 0.0259427 0.0224646 129 4 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 8.85 vpr 63.18 MiB -1 -1 0.19 18132 1 0.03 -1 -1 30480 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 24.2 MiB 3.51 991 16023 4565 8930 2528 63.2 MiB 0.16 0.00 4.82048 -149.465 -4.82048 4.82048 0.73 0.00070126 0.000651225 0.0607351 0.0564352 34 3392 28 6.87369e+06 321398 618332. 2139.56 2.37 0.210672 0.184507 25762 151098 -1 2503 23 2181 3291 278560 65633 4.13006 4.13006 -148.675 -4.13006 0 0 787024. 2723.27 0.21 0.10 0.15 -1 -1 0.21 0.0302059 0.0262055 147 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 8.03 vpr 63.21 MiB -1 -1 0.25 18316 1 0.03 -1 -1 30448 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 24.3 MiB 3.86 978 12164 2681 7945 1538 63.2 MiB 0.10 0.00 5.314 -155.075 -5.314 5.314 0.68 0.000742831 0.000688045 0.0412832 0.0382202 30 2902 25 6.87369e+06 503058 556674. 1926.21 1.31 0.135055 0.11854 25186 138497 -1 2004 20 1329 2376 136001 33949 4.02235 4.02235 -142.136 -4.02235 0 0 706193. 2443.58 0.20 0.08 0.12 -1 -1 0.20 0.0284559 0.0247495 147 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 11.76 vpr 63.22 MiB -1 -1 0.23 18248 1 0.03 -1 -1 30380 -1 -1 41 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 24.2 MiB 2.79 1071 14431 4037 9367 1027 63.2 MiB 0.13 0.00 4.54908 -143.401 -4.54908 4.54908 0.68 0.000750495 0.000694561 0.0459664 0.0425483 26 3450 43 6.87369e+06 572927 503264. 1741.40 5.95 0.252996 0.218881 24322 120374 -1 2750 24 2085 3776 389607 85971 4.2086 4.2086 -148.799 -4.2086 0 0 618332. 2139.56 0.17 0.12 0.11 -1 -1 0.17 0.0330358 0.0285818 148 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 6.72 vpr 62.63 MiB -1 -1 0.21 18104 1 0.03 -1 -1 30228 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 23.9 MiB 2.38 839 13261 4339 6686 2236 62.6 MiB 0.12 0.00 3.89188 -120.186 -3.89188 3.89188 0.73 0.000587206 0.000546836 0.047605 0.0442736 34 2030 23 6.87369e+06 237555 618332. 2139.56 1.32 0.161395 0.140898 25762 151098 -1 1732 20 1092 1954 136878 32517 2.84696 2.84696 -109.404 -2.84696 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0223645 0.0193902 99 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 7.84 vpr 63.06 MiB -1 -1 0.26 18236 1 0.03 -1 -1 30572 -1 -1 22 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 24.2 MiB 3.47 1044 13260 3550 8119 1591 63.1 MiB 0.13 0.00 4.61482 -143.823 -4.61482 4.61482 0.68 0.000684435 0.000626984 0.0546954 0.0508043 34 2567 22 6.87369e+06 307425 618332. 2139.56 1.48 0.193877 0.169212 25762 151098 -1 2198 21 1641 2564 203753 44634 3.8886 3.8886 -139.378 -3.8886 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0289228 0.0251167 136 63 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 6.82 vpr 63.19 MiB -1 -1 0.24 18252 1 0.03 -1 -1 30384 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 24.2 MiB 2.37 1037 9111 2097 6458 556 63.2 MiB 0.10 0.00 5.22106 -152.651 -5.22106 5.22106 0.68 0.000688829 0.000640009 0.0344685 0.032026 34 2776 30 6.87369e+06 321398 618332. 2139.56 1.58 0.175514 0.152151 25762 151098 -1 2362 23 1709 2786 230735 51614 4.07176 4.07176 -144.258 -4.07176 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0290968 0.0252376 140 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 7.72 vpr 63.17 MiB -1 -1 0.27 18244 1 0.03 -1 -1 30152 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 24.2 MiB 2.84 1053 16207 5040 8570 2597 63.2 MiB 0.15 0.00 5.4124 -149.797 -5.4124 5.4124 0.68 0.000677248 0.000628475 0.0563039 0.0523153 34 2846 23 6.87369e+06 391268 618332. 2139.56 1.82 0.192 0.167989 25762 151098 -1 2223 21 1638 2564 188756 44603 4.66515 4.66515 -146.332 -4.66515 0 0 787024. 2723.27 0.28 0.08 0.16 -1 -1 0.28 0.0273165 0.023715 141 47 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 7.21 vpr 63.32 MiB -1 -1 0.27 18160 1 0.03 -1 -1 30116 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 30 32 377 310 1 181 93 17 17 289 -1 unnamed_device 24.4 MiB 3.13 925 12903 3392 7693 1818 63.3 MiB 0.13 0.00 4.69758 -137.96 -4.69758 4.69758 0.68 0.000721015 0.000669541 0.0465402 0.043175 28 2649 21 6.87369e+06 433189 531479. 1839.03 1.14 0.131352 0.115644 24610 126494 -1 2191 19 1414 2329 179999 42937 3.46156 3.46156 -129.767 -3.46156 0 0 648988. 2245.63 0.22 0.08 0.11 -1 -1 0.22 0.0264394 0.0231716 136 83 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 6.77 vpr 63.14 MiB -1 -1 0.25 18208 1 0.03 -1 -1 30212 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 24.3 MiB 2.33 1052 9943 2760 6470 713 63.1 MiB 0.11 0.00 4.73658 -142.26 -4.73658 4.73658 0.68 0.000713465 0.000663409 0.039867 0.0370309 34 2918 23 6.87369e+06 293451 618332. 2139.56 1.56 0.179407 0.155779 25762 151098 -1 2375 24 1836 3219 237418 55210 4.11106 4.11106 -143.911 -4.11106 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.032063 0.0277727 132 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 7.58 vpr 63.22 MiB -1 -1 0.25 18164 1 0.03 -1 -1 30300 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 24.3 MiB 2.31 985 14361 3761 8676 1924 63.2 MiB 0.13 0.00 4.09163 -124.793 -4.09163 4.09163 0.68 0.000709716 0.00065878 0.0532011 0.0493953 30 2131 23 6.87369e+06 405241 556674. 1926.21 2.37 0.22016 0.191287 25186 138497 -1 1690 18 1078 1813 98061 23508 2.93501 2.93501 -111.204 -2.93501 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0251997 0.021913 132 85 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 6.48 vpr 62.25 MiB -1 -1 0.18 17764 1 0.03 -1 -1 30444 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 23.7 MiB 1.16 780 9356 2513 5902 941 62.2 MiB 0.09 0.00 3.99928 -120.309 -3.99928 3.99928 0.68 0.000553544 0.00051528 0.031255 0.0290981 34 1813 21 6.87369e+06 237555 618332. 2139.56 2.60 0.186308 0.160406 25762 151098 -1 1604 20 854 1316 101333 23397 2.87996 2.87996 -108.612 -2.87996 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0213742 0.0185258 96 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 10.16 vpr 63.17 MiB -1 -1 0.23 18124 1 0.03 -1 -1 30452 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 24.2 MiB 4.09 1081 10898 2607 7262 1029 63.2 MiB 0.11 0.00 4.62608 -141.152 -4.62608 4.62608 0.69 0.000718102 0.000665773 0.0373017 0.0344662 28 2708 23 6.87369e+06 475111 531479. 1839.03 3.20 0.209986 0.181448 24610 126494 -1 2458 22 1693 2867 224205 50600 3.8954 3.8954 -141.192 -3.8954 0 0 648988. 2245.63 0.22 0.09 0.11 -1 -1 0.22 0.0297305 0.0257572 137 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 8.99 vpr 63.24 MiB -1 -1 0.24 18204 1 0.03 -1 -1 30256 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 24.4 MiB 4.15 999 9013 2093 6314 606 63.2 MiB 0.11 0.00 4.56982 -152.894 -4.56982 4.56982 0.74 0.000756423 0.000700366 0.0394179 0.0366564 34 2775 24 6.87369e+06 293451 618332. 2139.56 1.83 0.190139 0.165048 25762 151098 -1 2295 20 1844 3015 218749 51049 3.7934 3.7934 -148.97 -3.7934 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0291613 0.0253648 142 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 6.82 vpr 62.55 MiB -1 -1 0.23 17952 1 0.03 -1 -1 30404 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 23.9 MiB 2.65 750 8508 2024 5759 725 62.6 MiB 0.08 0.00 4.48134 -122.374 -4.48134 4.48134 0.67 0.000580881 0.000540449 0.030513 0.0283995 34 2152 23 6.87369e+06 223581 618332. 2139.56 1.38 0.145589 0.12615 25762 151098 -1 1715 18 1028 1348 88426 23124 3.3655 3.3655 -115.562 -3.3655 0 0 787024. 2723.27 0.21 0.05 0.14 -1 -1 0.21 0.0209141 0.0181967 106 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 6.37 vpr 62.38 MiB -1 -1 0.21 17760 1 0.03 -1 -1 30384 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63880 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 23.8 MiB 1.09 827 12143 3533 6628 1982 62.4 MiB 0.10 0.00 3.95118 -117.571 -3.95118 3.95118 0.69 0.000549377 0.000510809 0.0387672 0.0360585 30 2035 24 6.87369e+06 279477 556674. 1926.21 2.51 0.177022 0.153266 25186 138497 -1 1786 21 1044 1832 114076 25448 2.88196 2.88196 -110.159 -2.88196 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0222564 0.0192789 99 4 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 7.78 vpr 63.27 MiB -1 -1 0.23 18172 1 0.03 -1 -1 30492 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 24.3 MiB 3.13 991 14871 5387 7142 2342 63.3 MiB 0.14 0.00 4.73658 -148.901 -4.73658 4.73658 0.68 0.000700503 0.000651466 0.0566351 0.0526074 34 3440 28 6.87369e+06 321398 618332. 2139.56 1.73 0.172067 0.150917 25762 151098 -1 2472 23 2154 2974 246206 55991 4.48946 4.48946 -149.449 -4.48946 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.030061 0.0260471 145 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 7.46 vpr 63.26 MiB -1 -1 0.24 18248 1 0.03 -1 -1 30272 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 24.3 MiB 2.89 1154 11923 3090 8152 681 63.3 MiB 0.12 0.00 5.18474 -149.968 -5.18474 5.18474 0.68 0.000704281 0.000654355 0.0433649 0.0402673 34 3034 41 6.87369e+06 377294 618332. 2139.56 1.71 0.195493 0.169657 25762 151098 -1 2254 22 1523 2265 155197 40705 4.52365 4.52365 -151.721 -4.52365 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0298115 0.0259289 142 56 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 7.19 vpr 63.38 MiB -1 -1 0.24 18024 1 0.03 -1 -1 30216 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64904 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.4 MiB 0.87 1048 20284 6297 10335 3652 63.4 MiB 0.17 0.00 5.33542 -146.763 -5.33542 5.33542 0.68 0.000715214 0.000665313 0.0650109 0.0603753 34 3116 28 6.87369e+06 503058 618332. 2139.56 3.42 0.292975 0.254563 25762 151098 -1 2452 22 1878 3312 278955 63395 4.70785 4.70785 -145.786 -4.70785 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0298897 0.0259579 157 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 7.55 vpr 63.16 MiB -1 -1 0.24 18124 1 0.03 -1 -1 30424 -1 -1 34 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 24.3 MiB 2.18 934 17397 5220 9797 2380 63.2 MiB 0.14 0.00 3.59195 -107.694 -3.59195 3.59195 0.67 0.000638872 0.000594107 0.0528954 0.0490932 30 2081 23 6.87369e+06 475111 556674. 1926.21 2.54 0.218371 0.189874 25186 138497 -1 1768 19 973 1696 95345 22746 2.80666 2.80666 -101.502 -2.80666 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0234817 0.020346 119 52 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 5.01 vpr 62.46 MiB -1 -1 0.19 18020 1 0.03 -1 -1 30472 -1 -1 21 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63956 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 23.9 MiB 0.96 647 12980 4064 8068 848 62.5 MiB 0.10 0.00 3.48275 -97.807 -3.48275 3.48275 0.69 0.000558891 0.000513841 0.0431362 0.0400553 34 1699 22 6.87369e+06 293451 618332. 2139.56 1.29 0.14936 0.129868 25762 151098 -1 1429 20 1057 1601 114649 26035 2.72966 2.72966 -93.4311 -2.72966 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0211418 0.0182592 96 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 8.57 vpr 63.51 MiB -1 -1 0.21 18484 1 0.03 -1 -1 30384 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 24.6 MiB 3.89 1306 7108 1644 4961 503 63.5 MiB 0.09 0.00 4.4536 -142.144 -4.4536 4.4536 0.68 0.000800999 0.000743875 0.0317303 0.0294991 34 3921 24 6.87369e+06 335372 618332. 2139.56 1.78 0.191537 0.165746 25762 151098 -1 3133 21 2077 3410 276995 63575 4.57546 4.57546 -154.017 -4.57546 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0325163 0.028297 165 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 11.25 vpr 63.18 MiB -1 -1 0.25 18252 1 0.03 -1 -1 30280 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 31 32 365 296 1 202 85 17 17 289 -1 unnamed_device 24.3 MiB 4.85 1071 15151 5059 7758 2334 63.2 MiB 0.14 0.00 5.62787 -168.296 -5.62787 5.62787 0.69 0.000712746 0.000660951 0.0599967 0.0556867 36 2526 36 6.87369e+06 307425 648988. 2245.63 3.41 0.273236 0.237138 26050 158493 -1 2113 21 1551 2426 157015 37447 4.59085 4.59085 -154.24 -4.59085 0 0 828058. 2865.25 0.23 0.08 0.14 -1 -1 0.23 0.0288573 0.0253487 139 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 9.25 vpr 63.08 MiB -1 -1 0.22 18208 1 0.03 -1 -1 30360 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 331 280 1 185 81 17 17 289 -1 unnamed_device 24.2 MiB 5.01 884 8831 2130 6252 449 63.1 MiB 0.09 0.00 4.48255 -144.515 -4.48255 4.48255 0.68 0.000655917 0.000609636 0.0351412 0.0326518 34 2511 25 6.87369e+06 237555 618332. 2139.56 1.39 0.165822 0.143645 25762 151098 -1 2085 20 1422 2107 158928 37458 3.98026 3.98026 -143.093 -3.98026 0 0 787024. 2723.27 0.21 0.08 0.18 -1 -1 0.21 0.025527 0.0221893 118 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 5.07 vpr 63.05 MiB -1 -1 0.23 18144 1 0.03 -1 -1 30372 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 24.1 MiB 1.26 978 12751 2883 8925 943 63.1 MiB 0.12 0.00 4.92341 -136.221 -4.92341 4.92341 0.67 0.000665951 0.000618505 0.0402187 0.0371988 32 2844 25 6.87369e+06 461137 586450. 2029.24 0.96 0.121896 0.106955 25474 144626 -1 2202 24 1453 2365 203989 46275 3.7844 3.7844 -126.569 -3.7844 0 0 744469. 2576.02 0.20 0.09 0.13 -1 -1 0.20 0.0295125 0.0255315 129 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 5.81 vpr 63.30 MiB -1 -1 0.26 18252 1 0.03 -1 -1 30572 -1 -1 34 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 24.4 MiB 1.88 994 11641 2686 8324 631 63.3 MiB 0.11 0.00 4.45728 -128.707 -4.45728 4.45728 0.67 0.000734917 0.000676913 0.0404082 0.0374916 26 2822 32 6.87369e+06 475111 503264. 1741.40 1.08 0.137336 0.120316 24322 120374 -1 2420 24 1643 2677 211161 49524 4.10046 4.10046 -136.732 -4.10046 0 0 618332. 2139.56 0.17 0.09 0.11 -1 -1 0.17 0.0326618 0.0283152 149 50 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 5.95 vpr 63.14 MiB -1 -1 0.25 18204 1 0.03 -1 -1 30064 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 24.3 MiB 1.89 790 16473 4651 9095 2727 63.1 MiB 0.14 0.00 3.6935 -103.107 -3.6935 3.6935 0.68 0.000649109 0.000603739 0.0534658 0.0496364 30 2610 40 6.87369e+06 433189 556674. 1926.21 1.22 0.153162 0.134586 25186 138497 -1 1665 19 1172 2092 115397 30397 2.83221 2.83221 -100.063 -2.83221 0 0 706193. 2443.58 0.19 0.06 0.09 -1 -1 0.19 0.0243877 0.0212037 124 51 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 8.28 vpr 63.20 MiB -1 -1 0.19 18220 1 0.03 -1 -1 30280 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 24.2 MiB 3.84 1285 14639 4463 8795 1381 63.2 MiB 0.15 0.00 4.87673 -155.976 -4.87673 4.87673 0.69 0.000710212 0.000651665 0.0571651 0.0529002 36 3172 31 6.87369e+06 307425 648988. 2245.63 1.52 0.175022 0.153344 26050 158493 -1 2654 21 1778 2884 251542 53356 4.19495 4.19495 -148.621 -4.19495 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0284244 0.0246878 148 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 8.94 vpr 63.24 MiB -1 -1 0.22 18264 1 0.03 -1 -1 30072 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 24.5 MiB 2.92 1114 17964 5405 9806 2753 63.2 MiB 0.17 0.00 4.14663 -137.433 -4.14663 4.14663 0.68 0.000753346 0.000699339 0.060474 0.0561057 28 3006 33 6.87369e+06 503058 531479. 1839.03 3.20 0.279492 0.242408 24610 126494 -1 2459 21 1688 2717 206629 48333 3.48446 3.48446 -134.388 -3.48446 0 0 648988. 2245.63 0.18 0.09 0.11 -1 -1 0.18 0.0297263 0.0258313 147 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 6.63 vpr 62.49 MiB -1 -1 0.22 17952 1 0.03 -1 -1 30380 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63988 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 23.8 MiB 1.76 708 14184 4108 7835 2241 62.5 MiB 0.11 0.00 3.90218 -115.978 -3.90218 3.90218 0.71 0.00057833 0.000538187 0.0488418 0.0454451 28 1736 21 6.87369e+06 265503 531479. 1839.03 2.10 0.197649 0.17148 24610 126494 -1 1548 18 1133 1639 120489 27801 3.16076 3.16076 -114.916 -3.16076 0 0 648988. 2245.63 0.18 0.06 0.11 -1 -1 0.18 0.0207101 0.0180267 101 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 6.24 vpr 62.86 MiB -1 -1 0.23 18232 1 0.03 -1 -1 30420 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 310 266 1 175 81 17 17 289 -1 unnamed_device 24.3 MiB 1.93 963 14081 4182 8130 1769 62.9 MiB 0.13 0.00 3.97822 -122.829 -3.97822 3.97822 0.70 0.000628603 0.000583045 0.0525321 0.0487055 34 2188 24 6.87369e+06 237555 618332. 2139.56 1.40 0.176415 0.153853 25762 151098 -1 1967 18 1248 1705 141947 30974 3.3007 3.3007 -124.41 -3.3007 0 0 787024. 2723.27 0.27 0.06 0.15 -1 -1 0.27 0.0223471 0.0194054 112 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 9.08 vpr 63.10 MiB -1 -1 0.19 18244 1 0.03 -1 -1 30508 -1 -1 39 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 24.2 MiB 1.49 880 19380 5710 10605 3065 63.1 MiB 0.16 0.00 4.54717 -125.702 -4.54717 4.54717 0.68 0.000668051 0.000612413 0.0562088 0.0519367 28 2476 25 6.87369e+06 544980 531479. 1839.03 4.81 0.222719 0.193515 24610 126494 -1 2103 21 1460 2605 205764 46881 4.4682 4.4682 -129.602 -4.4682 0 0 648988. 2245.63 0.18 0.08 0.11 -1 -1 0.18 0.0266325 0.0230917 135 33 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 7.99 vpr 62.49 MiB -1 -1 0.21 17944 1 0.03 -1 -1 30388 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63988 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 23.8 MiB 2.46 859 10916 2514 7778 624 62.5 MiB 0.10 0.00 4.61538 -122.043 -4.61538 4.61538 0.70 0.000564069 0.000524851 0.0375621 0.0349508 34 2080 22 6.87369e+06 265503 618332. 2139.56 2.77 0.207574 0.178687 25762 151098 -1 1752 23 1110 1432 97234 23995 3.57416 3.57416 -114.879 -3.57416 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0242386 0.020896 107 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 9.00 vpr 62.47 MiB -1 -1 0.22 18064 1 0.03 -1 -1 30040 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 23.8 MiB 3.36 890 13092 3761 8015 1316 62.5 MiB 0.11 0.00 3.89598 -125.954 -3.89598 3.89598 0.67 0.000605263 0.000563775 0.0479907 0.0446773 30 2147 21 6.87369e+06 209608 556674. 1926.21 2.86 0.188003 0.163408 25186 138497 -1 1826 22 1154 1910 142563 30699 2.86266 2.86266 -114.625 -2.86266 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0249425 0.0215988 101 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 8.22 vpr 63.17 MiB -1 -1 0.26 18192 1 0.03 -1 -1 30116 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 24.2 MiB 2.66 1030 11700 3258 7456 986 63.2 MiB 0.11 0.00 3.94428 -127.758 -3.94428 3.94428 0.68 0.000724386 0.000672941 0.0392103 0.0363534 28 2447 27 6.87369e+06 517032 531479. 1839.03 2.58 0.219635 0.19053 24610 126494 -1 2173 19 1608 2521 177586 41218 3.09026 3.09026 -122.565 -3.09026 0 0 648988. 2245.63 0.20 0.08 0.13 -1 -1 0.20 0.0271408 0.0236371 141 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 6.97 vpr 62.58 MiB -1 -1 0.23 18080 1 0.03 -1 -1 30344 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64084 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 23.9 MiB 2.79 763 6616 1499 4719 398 62.6 MiB 0.06 0.00 3.6942 -114.024 -3.6942 3.6942 0.71 0.000433155 0.000398338 0.0212557 0.0196624 34 2136 24 6.87369e+06 237555 618332. 2139.56 1.35 0.134502 0.115828 25762 151098 -1 1636 20 1101 1571 107353 27112 3.19991 3.19991 -110.054 -3.19991 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.022843 0.0198017 105 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 6.94 vpr 63.15 MiB -1 -1 0.19 18176 1 0.03 -1 -1 30024 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64668 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 24.2 MiB 2.73 991 15431 4685 8411 2335 63.2 MiB 0.13 0.00 3.75634 -117.047 -3.75634 3.75634 0.71 0.000690882 0.000642314 0.0516048 0.047966 28 2561 28 6.87369e+06 433189 531479. 1839.03 1.33 0.140791 0.124221 24610 126494 -1 2292 23 1283 2119 183686 40418 3.15881 3.15881 -116.2 -3.15881 0 0 648988. 2245.63 0.18 0.08 0.13 -1 -1 0.18 0.0295352 0.0255474 129 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 6.82 vpr 63.21 MiB -1 -1 0.21 18272 1 0.03 -1 -1 30288 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 24.3 MiB 2.99 969 16511 5526 8195 2790 63.2 MiB 0.14 0.00 3.7606 -125.402 -3.7606 3.7606 0.68 0.000748381 0.000695233 0.0592408 0.0549725 30 2175 23 6.87369e+06 447163 556674. 1926.21 0.87 0.148511 0.131266 25186 138497 -1 1707 22 1533 2185 119272 29204 2.85691 2.85691 -118.154 -2.85691 0 0 706193. 2443.58 0.27 0.06 0.14 -1 -1 0.27 0.0258664 0.0225131 137 91 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 6.17 vpr 63.10 MiB -1 -1 0.20 17952 1 0.03 -1 -1 30204 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 24.2 MiB 2.08 763 5412 1083 3998 331 63.1 MiB 0.06 0.00 3.46595 -107.951 -3.46595 3.46595 0.68 0.000623409 0.000580347 0.0214591 0.0199533 34 2023 20 6.87369e+06 223581 618332. 2139.56 1.33 0.13963 0.120267 25762 151098 -1 1758 19 1028 1626 127152 30410 3.12476 3.12476 -114.292 -3.12476 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0231757 0.0200857 99 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 6.14 vpr 62.79 MiB -1 -1 0.19 17900 1 0.03 -1 -1 30272 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 24.2 MiB 1.94 878 7202 1691 5055 456 62.8 MiB 0.08 0.00 4.13079 -127.98 -4.13079 4.13079 0.68 0.000608897 0.000566757 0.0265478 0.0247082 34 2496 23 6.87369e+06 251529 618332. 2139.56 1.42 0.145907 0.126152 25762 151098 -1 2073 22 1468 2194 182182 42188 3.22191 3.22191 -125.177 -3.22191 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0255867 0.0221699 114 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 7.53 vpr 63.08 MiB -1 -1 0.23 18220 1 0.03 -1 -1 30192 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 24.1 MiB 3.16 1100 9914 2382 6266 1266 63.1 MiB 0.10 0.00 4.82651 -140.217 -4.82651 4.82651 0.68 0.000657206 0.000611371 0.036452 0.0338882 34 2714 26 6.87369e+06 307425 618332. 2139.56 1.54 0.167465 0.145383 25762 151098 -1 2273 23 1641 2291 162066 37556 4.02506 4.02506 -136.33 -4.02506 0 0 787024. 2723.27 0.22 0.04 0.15 -1 -1 0.22 0.0157331 0.0138203 132 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 7.79 vpr 62.87 MiB -1 -1 0.20 18340 1 0.03 -1 -1 30196 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 24.0 MiB 2.48 896 9336 2254 6420 662 62.9 MiB 0.09 0.00 4.11363 -114.181 -4.11363 4.11363 0.68 0.000651218 0.000606732 0.0321799 0.0299321 32 2343 29 6.87369e+06 405241 586450. 2029.24 2.50 0.229231 0.197118 25474 144626 -1 1909 23 1104 1920 137359 32910 3.23561 3.23561 -112.659 -3.23561 0 0 744469. 2576.02 0.20 0.07 0.13 -1 -1 0.20 0.0274895 0.0238243 123 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 8.06 vpr 63.28 MiB -1 -1 0.26 18208 1 0.03 -1 -1 30496 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 24.3 MiB 3.50 1101 15395 4526 8609 2260 63.3 MiB 0.16 0.00 5.22906 -166.389 -5.22906 5.22906 0.68 0.000755315 0.000702341 0.0643249 0.0597423 34 2846 21 6.87369e+06 307425 618332. 2139.56 1.61 0.207991 0.182101 25762 151098 -1 2432 21 1761 2709 230464 50254 4.17706 4.17706 -157.262 -4.17706 0 0 787024. 2723.27 0.21 0.09 0.16 -1 -1 0.21 0.030121 0.0261709 151 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 5.98 vpr 62.68 MiB -1 -1 0.22 17780 1 0.02 -1 -1 30060 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 24.1 MiB 1.07 761 7992 2192 5273 527 62.7 MiB 0.07 0.00 3.42155 -104.71 -3.42155 3.42155 0.68 0.000527832 0.000492182 0.0261445 0.0243233 28 1923 21 6.87369e+06 237555 531479. 1839.03 2.21 0.175979 0.151187 24610 126494 -1 1756 15 866 1350 103447 23875 3.05556 3.05556 -108.436 -3.05556 0 0 648988. 2245.63 0.18 0.05 0.11 -1 -1 0.18 0.0168032 0.0146386 92 4 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 6.25 vpr 63.30 MiB -1 -1 0.25 18196 1 0.03 -1 -1 30240 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 24.3 MiB 1.85 1080 17883 4895 11214 1774 63.3 MiB 0.16 0.00 4.44135 -148.747 -4.44135 4.44135 0.68 0.000773656 0.000717189 0.0628337 0.0582391 34 2607 20 6.87369e+06 489084 618332. 2139.56 1.45 0.208375 0.182292 25762 151098 -1 2257 21 1628 2285 170577 39284 4.02096 4.02096 -147.829 -4.02096 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0304992 0.0264297 145 90 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 8.19 vpr 63.05 MiB -1 -1 0.23 18272 1 0.03 -1 -1 30040 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 3.88 879 12808 3950 7474 1384 63.1 MiB 0.12 0.00 3.59615 -129.411 -3.59615 3.59615 0.68 0.00070828 0.000656942 0.0549948 0.0510585 34 2239 23 6.87369e+06 223581 618332. 2139.56 1.39 0.194014 0.169188 25762 151098 -1 1862 21 1602 2312 183384 40198 2.87886 2.87886 -123.177 -2.87886 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0283847 0.0245994 114 96 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 6.83 vpr 63.20 MiB -1 -1 0.25 18360 1 0.03 -1 -1 30296 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 24.3 MiB 2.65 1029 16083 4329 9310 2444 63.2 MiB 0.14 0.00 4.14663 -128.65 -4.14663 4.14663 0.71 0.000703662 0.000653243 0.0541845 0.0502824 32 2440 18 6.87369e+06 447163 586450. 2029.24 1.25 0.153462 0.13493 25474 144626 -1 2064 21 1193 1878 143364 33256 3.24961 3.24961 -117.981 -3.24961 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0243451 0.0213208 134 60 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 10.49 vpr 63.40 MiB -1 -1 0.24 18528 1 0.03 -1 -1 30492 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 24.5 MiB 4.31 1256 15335 4173 9820 1342 63.4 MiB 0.17 0.00 5.90839 -177.511 -5.90839 5.90839 0.70 0.000768307 0.000713306 0.0624686 0.0577041 34 3251 23 6.87369e+06 349346 618332. 2139.56 3.20 0.29183 0.253044 25762 151098 -1 2604 22 2027 3067 244222 57410 4.9762 4.9762 -169.067 -4.9762 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0323605 0.0281827 171 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 5.47 vpr 62.36 MiB -1 -1 0.14 17972 1 0.03 -1 -1 30064 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 23.8 MiB 1.58 720 11161 3070 6702 1389 62.4 MiB 0.08 0.00 3.01346 -96.0966 -3.01346 3.01346 0.67 0.00049744 0.000463118 0.035693 0.0332146 34 1704 20 6.87369e+06 209608 618332. 2139.56 1.24 0.131918 0.114823 25762 151098 -1 1500 26 993 1332 109947 25100 2.57366 2.57366 -98.2805 -2.57366 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0240196 0.0207071 81 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 4.76 vpr 62.45 MiB -1 -1 0.23 17936 1 0.03 -1 -1 30300 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63952 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 23.7 MiB 1.06 777 9706 2580 6483 643 62.5 MiB 0.09 0.00 3.91444 -121.772 -3.91444 3.91444 0.68 0.000598948 0.000557536 0.0350695 0.0325695 30 1783 33 6.87369e+06 265503 556674. 1926.21 0.85 0.115237 0.100737 25186 138497 -1 1503 20 912 1424 85348 19767 2.94916 2.94916 -112.049 -2.94916 0 0 706193. 2443.58 0.26 0.06 0.12 -1 -1 0.26 0.0231061 0.0200262 105 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 5.08 vpr 62.67 MiB -1 -1 0.22 18052 1 0.03 -1 -1 30072 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 24.0 MiB 1.25 823 13719 4254 8151 1314 62.7 MiB 0.12 0.00 3.44891 -115.299 -3.44891 3.44891 0.67 0.00062491 0.000579923 0.0469355 0.0434427 32 2354 28 6.87369e+06 321398 586450. 2029.24 0.93 0.12523 0.110099 25474 144626 -1 1959 22 1404 2460 214166 49660 3.07456 3.07456 -119.964 -3.07456 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0257761 0.0222871 109 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 5.26 vpr 62.25 MiB -1 -1 0.21 18068 1 0.03 -1 -1 30240 -1 -1 29 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 23.7 MiB 0.76 469 11804 3249 6587 1968 62.2 MiB 0.08 0.00 3.45495 -79.1828 -3.45495 3.45495 0.68 0.000475847 0.000441709 0.0312348 0.0289079 30 1311 22 6.87369e+06 405241 556674. 1926.21 1.80 0.141557 0.121201 25186 138497 -1 979 19 618 1125 61942 15499 2.93926 2.93926 -76.5502 -2.93926 0 0 706193. 2443.58 0.19 0.04 0.12 -1 -1 0.19 0.0177172 0.015353 87 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 7.28 vpr 63.15 MiB -1 -1 0.25 18408 1 0.03 -1 -1 30296 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 24.2 MiB 2.73 967 14724 4258 8138 2328 63.1 MiB 0.14 0.00 4.3826 -128.252 -4.3826 4.3826 0.68 0.000728381 0.00067686 0.0609742 0.0566685 34 2869 26 6.87369e+06 279477 618332. 2139.56 1.63 0.205681 0.179859 25762 151098 -1 2467 20 1544 2645 204924 48842 3.93806 3.93806 -132.192 -3.93806 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0278083 0.0241601 133 72 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 7.15 vpr 63.35 MiB -1 -1 0.22 18108 1 0.03 -1 -1 30284 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 24.4 MiB 2.73 1004 17347 4956 10888 1503 63.3 MiB 0.17 0.00 4.17399 -136.544 -4.17399 4.17399 0.68 0.000769371 0.000713735 0.0644426 0.0597195 34 2399 24 6.87369e+06 433189 618332. 2139.56 1.47 0.22127 0.193248 25762 151098 -1 2014 19 1684 2595 166650 40129 3.01531 3.01531 -120.867 -3.01531 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0283922 0.0247102 143 90 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 6.49 vpr 63.03 MiB -1 -1 0.24 18196 1 0.03 -1 -1 30060 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 24.1 MiB 2.01 1064 11788 3543 6827 1418 63.0 MiB 0.12 0.00 5.46377 -156.517 -5.46377 5.46377 0.67 0.000700948 0.000651814 0.044689 0.0415076 34 2863 36 6.89349e+06 338252 618332. 2139.56 1.60 0.171952 0.149893 25762 151098 -1 2132 21 1793 2659 168525 41192 4.70325 4.70325 -148.177 -4.70325 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0274503 0.0240988 149 50 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 7.64 vpr 62.98 MiB -1 -1 0.19 18216 1 0.03 -1 -1 30344 -1 -1 26 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 30 32 363 293 1 229 88 17 17 289 -1 unnamed_device 24.1 MiB 1.98 1124 13738 3850 8296 1592 63.0 MiB 0.14 0.00 4.83304 -147.244 -4.83304 4.83304 0.68 0.000710429 0.00066045 0.052054 0.0483623 34 2963 23 6.89349e+06 366440 618332. 2139.56 2.79 0.243585 0.211039 25762 151098 -1 2412 24 2103 3099 213515 50520 4.35719 4.35719 -147.275 -4.35719 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0313003 0.0271085 158 63 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 6.41 vpr 62.39 MiB -1 -1 0.24 17884 1 0.03 -1 -1 30212 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 23.9 MiB 2.04 986 10315 2668 7087 560 62.4 MiB 0.10 0.00 4.28303 -120.803 -4.28303 4.28303 0.74 0.000625518 0.000582311 0.0366485 0.0340526 34 2543 23 6.89349e+06 295971 618332. 2139.56 1.50 0.159535 0.138481 25762 151098 -1 2116 19 1277 1735 126865 29234 3.6343 3.6343 -119.864 -3.6343 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0231766 0.020109 125 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 7.12 vpr 62.50 MiB -1 -1 0.19 18204 1 0.03 -1 -1 30312 -1 -1 24 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 24.0 MiB 1.57 1020 7153 1669 4959 525 62.5 MiB 0.08 0.00 4.81208 -129.448 -4.81208 4.81208 0.68 0.000629593 0.000584445 0.0260277 0.0241825 36 2388 20 6.89349e+06 338252 648988. 2245.63 2.79 0.218131 0.18688 26050 158493 -1 2075 18 1238 2046 156652 33509 3.6654 3.6654 -116.643 -3.6654 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0230202 0.0200177 134 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 9.48 vpr 63.20 MiB -1 -1 0.24 18316 1 0.03 -1 -1 30404 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 24.4 MiB 1.93 1107 14679 4819 7580 2280 63.2 MiB 0.14 0.00 5.27653 -151.244 -5.27653 5.27653 0.68 0.000683471 0.000634937 0.054302 0.0504273 38 2778 26 6.89349e+06 324158 678818. 2348.85 4.51 0.313245 0.270701 26626 170182 -1 2374 21 1936 3505 253868 55492 4.19779 4.19779 -144.222 -4.19779 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0273029 0.0237135 142 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 9.08 vpr 63.16 MiB -1 -1 0.20 18216 1 0.03 -1 -1 30236 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 24.2 MiB 2.46 1135 18523 5440 10042 3041 63.2 MiB 0.17 0.00 3.8789 -124.315 -3.8789 3.8789 0.68 0.000718763 0.00066721 0.0625587 0.0579835 36 2957 47 6.89349e+06 465097 648988. 2245.63 3.62 0.294096 0.254714 26050 158493 -1 2462 34 2089 3697 334723 100094 3.61635 3.61635 -126.916 -3.61635 0 0 828058. 2865.25 0.22 0.14 0.14 -1 -1 0.22 0.0424555 0.0365164 162 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 5.34 vpr 62.38 MiB -1 -1 0.20 17876 1 0.02 -1 -1 30600 -1 -1 21 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63876 27 32 259 221 1 159 80 17 17 289 -1 unnamed_device 23.8 MiB 1.23 817 10228 2968 5692 1568 62.4 MiB 0.08 0.00 4.18543 -114.153 -4.18543 4.18543 0.68 0.000557515 0.000519437 0.0345069 0.0321018 34 1818 19 6.89349e+06 295971 618332. 2139.56 1.34 0.139454 0.120833 25762 151098 -1 1628 19 1216 1762 136661 30771 3.06791 3.06791 -104.44 -3.06791 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0208683 0.0180953 107 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 6.14 vpr 62.36 MiB -1 -1 0.18 17708 1 0.03 -1 -1 30244 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 23.7 MiB 0.74 946 10895 2711 7214 970 62.4 MiB 0.09 0.00 3.35428 -101.445 -3.35428 3.35428 0.75 0.00061033 0.000562904 0.0315946 0.0293088 34 2155 20 6.89349e+06 451003 618332. 2139.56 2.55 0.22153 0.190315 25762 151098 -1 1873 16 929 1621 103965 24171 2.61751 2.61751 -96.334 -2.61751 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0191383 0.016651 119 4 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 6.23 vpr 62.66 MiB -1 -1 0.22 18332 1 0.02 -1 -1 30140 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 31 32 317 271 1 207 82 17 17 289 -1 unnamed_device 24.0 MiB 1.96 1055 11652 3009 7126 1517 62.7 MiB 0.12 0.00 3.67955 -123.605 -3.67955 3.67955 0.67 0.000635783 0.000591545 0.0435909 0.0405143 34 2608 23 6.89349e+06 267783 618332. 2139.56 1.37 0.141979 0.124114 25762 151098 -1 2206 19 1445 1973 164904 35471 2.98246 2.98246 -120.289 -2.98246 0 0 787024. 2723.27 0.22 0.07 0.16 -1 -1 0.22 0.0236838 0.0205713 131 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 5.80 vpr 62.59 MiB -1 -1 0.23 18060 1 0.03 -1 -1 30060 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 23.9 MiB 1.56 837 7202 1579 5230 393 62.6 MiB 0.08 0.00 4.04458 -129.952 -4.04458 4.04458 0.67 0.000622578 0.000579455 0.0270632 0.0251889 34 2391 27 6.89349e+06 253689 618332. 2139.56 1.41 0.149449 0.12909 25762 151098 -1 1910 20 1366 1796 129797 30654 3.2385 3.2385 -122.793 -3.2385 0 0 787024. 2723.27 0.23 0.08 0.13 -1 -1 0.23 0.0261919 0.0231063 120 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 6.35 vpr 62.88 MiB -1 -1 0.17 18240 1 0.03 -1 -1 30364 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 23.9 MiB 2.08 927 14123 4163 7804 2156 62.9 MiB 0.12 0.00 4.49997 -130.748 -4.49997 4.49997 0.68 0.000616293 0.000573001 0.0501201 0.0465669 34 2305 38 6.89349e+06 295971 618332. 2139.56 1.48 0.156817 0.13727 25762 151098 -1 1923 20 1284 1698 124692 28790 3.4872 3.4872 -123.184 -3.4872 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0238086 0.0206455 124 63 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 5.67 vpr 62.31 MiB -1 -1 0.18 17980 1 0.03 -1 -1 30028 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63808 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 23.6 MiB 1.46 952 13206 3625 8328 1253 62.3 MiB 0.12 0.00 3.6917 -113.924 -3.6917 3.6917 0.71 0.000731693 0.00067887 0.0508404 0.047314 34 2324 21 6.89349e+06 239595 618332. 2139.56 1.48 0.163331 0.142729 25762 151098 -1 1923 19 1033 1405 106174 24328 2.93851 2.93851 -112.281 -2.93851 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0219008 0.0190045 108 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 8.27 vpr 62.89 MiB -1 -1 0.23 18376 1 0.03 -1 -1 30328 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 24.0 MiB 1.91 1112 16791 5058 9343 2390 62.9 MiB 0.16 0.00 4.10168 -134.349 -4.10168 4.10168 0.68 0.000691001 0.000642519 0.0628519 0.0584317 36 2698 22 6.89349e+06 324158 648988. 2245.63 3.46 0.249827 0.217352 26050 158493 -1 2404 21 1507 2341 203029 43277 3.18756 3.18756 -125.041 -3.18756 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0275841 0.0239431 143 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 6.98 vpr 63.25 MiB -1 -1 0.20 18324 1 0.03 -1 -1 30348 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 24.3 MiB 2.40 1080 16663 5045 8811 2807 63.2 MiB 0.16 0.00 5.63697 -160.415 -5.63697 5.63697 0.70 0.000705609 0.000651359 0.0627434 0.0582355 34 3263 37 6.89349e+06 338252 618332. 2139.56 1.69 0.18867 0.165623 25762 151098 -1 2346 21 1863 2593 189943 44204 4.44739 4.44739 -150.221 -4.44739 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0286455 0.0248791 153 61 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 5.44 vpr 62.55 MiB -1 -1 0.18 17924 1 0.03 -1 -1 30380 -1 -1 18 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 24.0 MiB 1.42 852 11909 3160 6915 1834 62.5 MiB 0.09 0.00 3.19582 -98.8741 -3.19582 3.19582 0.67 0.000539581 0.000502468 0.039886 0.0371267 34 1998 28 6.89349e+06 253689 618332. 2139.56 1.31 0.150561 0.130811 25762 151098 -1 1744 19 990 1363 98877 22900 2.88911 2.88911 -99.3738 -2.88911 0 0 787024. 2723.27 0.21 0.05 0.14 -1 -1 0.21 0.020186 0.0174834 102 27 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 7.42 vpr 63.06 MiB -1 -1 0.20 18240 1 0.03 -1 -1 30272 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 24.2 MiB 2.62 1298 15493 4676 9050 1767 63.1 MiB 0.15 0.00 4.1661 -138.014 -4.1661 4.1661 0.70 0.000722605 0.000671266 0.0602376 0.0559801 34 3382 50 6.89349e+06 338252 618332. 2139.56 1.89 0.230834 0.2009 25762 151098 -1 2818 21 2116 3346 245686 55521 3.72535 3.72535 -140.74 -3.72535 0 0 787024. 2723.27 0.22 0.09 0.14 -1 -1 0.22 0.0290734 0.0252862 159 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 6.76 vpr 62.80 MiB -1 -1 0.25 18216 1 0.03 -1 -1 30096 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 24.0 MiB 1.90 1059 14450 4622 7260 2568 62.8 MiB 0.13 0.00 4.13204 -133.409 -4.13204 4.13204 0.69 0.000681738 0.000632868 0.0543446 0.0504722 34 2659 50 6.89349e+06 310065 618332. 2139.56 1.91 0.217044 0.188758 25762 151098 -1 2275 19 1487 2177 187547 40425 3.10146 3.10146 -121.303 -3.10146 0 0 787024. 2723.27 0.24 0.08 0.14 -1 -1 0.24 0.0272505 0.0238081 142 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 6.91 vpr 62.95 MiB -1 -1 0.20 18152 1 0.03 -1 -1 30300 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 24.1 MiB 2.27 1220 14965 4341 8910 1714 62.9 MiB 0.14 0.00 3.67155 -130.035 -3.67155 3.67155 0.68 0.000653994 0.000608431 0.0540854 0.0502053 34 2727 43 6.89349e+06 295971 618332. 2139.56 1.71 0.201817 0.175775 25762 151098 -1 2283 21 1426 1856 144371 32637 2.81996 2.81996 -120.618 -2.81996 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0260416 0.0225771 131 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 5.79 vpr 62.08 MiB -1 -1 0.17 18044 1 0.02 -1 -1 30156 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63568 30 32 222 206 1 141 77 17 17 289 -1 unnamed_device 23.3 MiB 1.36 773 8390 2474 4676 1240 62.1 MiB 0.08 0.00 2.65863 -91.3953 -2.65863 2.65863 0.71 0.000501933 0.00046746 0.0323928 0.0300414 30 1654 19 6.89349e+06 211408 556674. 1926.21 1.71 0.128438 0.111296 25186 138497 -1 1419 17 650 748 54641 12715 2.06407 2.06407 -89.984 -2.06407 0 0 706193. 2443.58 0.19 0.04 0.14 -1 -1 0.19 0.016971 0.0147677 82 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 6.83 vpr 62.37 MiB -1 -1 0.12 18292 1 0.03 -1 -1 30280 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63864 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 23.7 MiB 2.49 980 13254 3823 7828 1603 62.4 MiB 0.12 0.00 4.85214 -146.508 -4.85214 4.85214 0.68 0.000609402 0.000567375 0.0468354 0.0435593 34 2311 44 6.89349e+06 267783 618332. 2139.56 1.65 0.149064 0.130504 25762 151098 -1 2002 19 1214 1946 154611 34571 3.434 3.434 -128.976 -3.434 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0228054 0.0197992 117 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 5.99 vpr 62.92 MiB -1 -1 0.17 18380 1 0.03 -1 -1 30368 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 24.0 MiB 1.57 1134 18323 5038 11357 1928 62.9 MiB 0.16 0.00 4.77763 -150.944 -4.77763 4.77763 0.68 0.000749038 0.000689339 0.0582688 0.0541068 34 2697 21 6.89349e+06 479191 618332. 2139.56 1.52 0.19101 0.1672 25762 151098 -1 2339 24 1570 2408 208449 46358 3.91014 3.91014 -143.319 -3.91014 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0307158 0.0266676 151 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 8.40 vpr 63.16 MiB -1 -1 0.24 18320 1 0.03 -1 -1 30432 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 24.3 MiB 1.81 1226 16023 5263 8066 2694 63.2 MiB 0.15 0.00 4.5284 -136.451 -4.5284 4.5284 0.67 0.000551913 0.000505938 0.0617808 0.0572799 36 2809 22 6.89349e+06 324158 648988. 2245.63 3.67 0.262304 0.227769 26050 158493 -1 2359 21 1619 2528 181970 39402 3.8927 3.8927 -135.308 -3.8927 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0292507 0.0254405 156 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 5.44 vpr 62.09 MiB -1 -1 0.21 17960 1 0.02 -1 -1 30644 -1 -1 18 26 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63580 26 32 190 182 1 126 76 17 17 289 -1 unnamed_device 23.5 MiB 1.24 418 9996 4130 4980 886 62.1 MiB 0.07 0.00 2.70371 -73.8386 -2.70371 2.70371 0.75 0.00042811 0.000397695 0.0277146 0.0256876 34 1435 48 6.89349e+06 253689 618332. 2139.56 1.37 0.11371 0.0986784 25762 151098 -1 992 15 616 732 54609 13861 2.01835 2.01835 -68.0094 -2.01835 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.013553 0.0118176 75 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 5.49 vpr 62.41 MiB -1 -1 0.18 17792 1 0.03 -1 -1 30248 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 23.8 MiB 1.09 1067 12375 3267 7751 1357 62.4 MiB 0.12 0.00 4.54727 -128.116 -4.54727 4.54727 0.68 0.000615163 0.000572356 0.041655 0.0387203 34 2366 30 6.89349e+06 324158 618332. 2139.56 1.59 0.168974 0.146926 25762 151098 -1 2096 19 1286 2385 179552 39922 3.6391 3.6391 -122.053 -3.6391 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0226701 0.0196808 119 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 4.33 vpr 61.96 MiB -1 -1 0.20 17444 1 0.02 -1 -1 29932 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63448 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 23.3 MiB 0.50 403 9836 3145 4361 2330 62.0 MiB 0.07 0.00 2.34152 -71.3945 -2.34152 2.34152 0.68 0.000507688 0.000471829 0.0278647 0.0258026 32 1221 23 6.89349e+06 169126 586450. 2029.24 1.15 0.0939301 0.0819733 25474 144626 -1 935 22 680 881 63446 17592 2.01306 2.01306 -72.7771 -2.01306 0 0 744469. 2576.02 0.21 0.05 0.13 -1 -1 0.21 0.0199442 0.0172881 65 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 5.95 vpr 62.45 MiB -1 -1 0.21 17884 1 0.03 -1 -1 30012 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 23.7 MiB 1.62 984 14175 4702 7220 2253 62.4 MiB 0.13 0.00 4.89708 -136.259 -4.89708 4.89708 0.68 0.000633104 0.000588508 0.0509934 0.0474266 34 2464 24 6.89349e+06 281877 618332. 2139.56 1.45 0.174902 0.152671 25762 151098 -1 1959 18 1130 1661 120876 27312 3.76256 3.76256 -122.693 -3.76256 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0228572 0.0199043 125 24 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 6.25 vpr 62.55 MiB -1 -1 0.16 17780 1 0.04 -1 -1 30316 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 23.9 MiB 0.77 988 16079 4364 9917 1798 62.5 MiB 0.15 0.00 3.39295 -107.482 -3.39295 3.39295 0.68 0.000631697 0.000586032 0.0489328 0.0453866 28 2520 24 6.89349e+06 436909 531479. 1839.03 2.72 0.198849 0.172906 24610 126494 -1 2310 22 1455 2525 183042 43297 2.94641 2.94641 -112.319 -2.94641 0 0 648988. 2245.63 0.18 0.08 0.11 -1 -1 0.18 0.0263421 0.0228177 130 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 8.71 vpr 63.25 MiB -1 -1 0.23 18132 1 0.03 -1 -1 30280 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 24.4 MiB 2.30 1111 15639 4885 7776 2978 63.3 MiB 0.15 0.00 4.89143 -136.037 -4.89143 4.89143 0.68 0.000678027 0.000629555 0.0573649 0.0533216 38 2557 22 6.89349e+06 324158 678818. 2348.85 3.48 0.243355 0.211189 26626 170182 -1 2201 21 1376 2078 155445 32828 3.67726 3.67726 -123.649 -3.67726 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0271453 0.0235824 142 50 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 6.28 vpr 62.55 MiB -1 -1 0.21 18096 1 0.03 -1 -1 30228 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 23.8 MiB 2.09 990 13381 4491 7116 1774 62.6 MiB 0.12 0.00 3.64535 -123.731 -3.64535 3.64535 0.68 0.000605037 0.000562914 0.0479057 0.0445699 34 2272 22 6.89349e+06 239595 618332. 2139.56 1.41 0.165404 0.144136 25762 151098 -1 1932 21 1182 1772 132877 30221 3.01066 3.01066 -119.775 -3.01066 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0240615 0.0208376 112 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 6.45 vpr 62.35 MiB -1 -1 0.22 17956 1 0.03 -1 -1 30140 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63844 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 23.8 MiB 1.71 909 12754 4731 6611 1412 62.3 MiB 0.11 0.00 4.01762 -117.054 -4.01762 4.01762 0.68 0.000564602 0.000525133 0.0444365 0.0413298 34 2214 31 6.89349e+06 239595 618332. 2139.56 1.89 0.163972 0.142817 25762 151098 -1 1810 31 1254 2280 302828 126933 3.3027 3.3027 -110.07 -3.3027 0 0 787024. 2723.27 0.21 0.12 0.13 -1 -1 0.21 0.0310817 0.0267393 104 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 6.45 vpr 62.25 MiB -1 -1 0.23 17948 1 0.03 -1 -1 30264 -1 -1 20 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 23.7 MiB 1.79 829 10744 2823 7309 612 62.2 MiB 0.09 0.00 4.27226 -119.167 -4.27226 4.27226 0.69 0.000560271 0.000521936 0.0365333 0.0340184 34 2243 35 6.89349e+06 281877 618332. 2139.56 1.89 0.147802 0.12824 25762 151098 -1 1746 16 1011 1667 124248 27774 3.45175 3.45175 -114.697 -3.45175 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0181403 0.0157563 107 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 8.44 vpr 62.38 MiB -1 -1 0.17 17776 1 0.03 -1 -1 30184 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63872 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 23.8 MiB 1.27 714 11106 3926 4953 2227 62.4 MiB 0.10 0.00 3.82748 -115.489 -3.82748 3.82748 0.68 0.000565218 0.000526284 0.0375549 0.0349464 30 2318 26 6.89349e+06 239595 556674. 1926.21 4.47 0.19943 0.172161 25186 138497 -1 1775 21 1230 2035 152867 35481 3.02446 3.02446 -116.652 -3.02446 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0226439 0.0195866 101 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 6.04 vpr 62.48 MiB -1 -1 0.21 17928 1 0.03 -1 -1 30208 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 23.8 MiB 1.67 960 14081 4470 7746 1865 62.5 MiB 0.12 0.00 3.58045 -113.742 -3.58045 3.58045 0.68 0.000585011 0.000545042 0.0488242 0.0454684 34 2228 27 6.89349e+06 253689 618332. 2139.56 1.53 0.166762 0.145473 25762 151098 -1 1952 22 1147 1743 143098 31691 2.80601 2.80601 -107.332 -2.80601 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0240254 0.0207667 108 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 8.42 vpr 62.42 MiB -1 -1 0.20 18048 1 0.03 -1 -1 30544 -1 -1 22 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63920 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 24.0 MiB 2.37 955 13763 4007 8316 1440 62.4 MiB 0.12 0.00 3.50915 -107.043 -3.50915 3.50915 0.72 0.000591962 0.000550009 0.0472016 0.0438427 36 2068 25 6.89349e+06 310065 648988. 2245.63 3.24 0.211772 0.183067 26050 158493 -1 1863 22 1037 1440 101893 22703 2.57556 2.57556 -101.163 -2.57556 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0255165 0.0221493 120 54 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 6.42 vpr 63.06 MiB -1 -1 0.17 18292 1 0.03 -1 -1 30460 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 24.2 MiB 1.53 1344 6623 1379 4726 518 63.1 MiB 0.08 0.00 4.57545 -133.188 -4.57545 4.57545 0.68 0.000732458 0.000679884 0.0265834 0.0247109 36 2931 18 6.89349e+06 352346 648988. 2245.63 2.10 0.167681 0.145233 26050 158493 -1 2509 19 1364 2352 169188 37207 3.89416 3.89416 -129.763 -3.89416 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0271702 0.0236731 159 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 9.08 vpr 63.20 MiB -1 -1 0.25 18332 1 0.03 -1 -1 30204 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 24.2 MiB 2.27 1314 15103 4520 8282 2301 63.2 MiB 0.15 0.00 4.62597 -154.671 -4.62597 4.62597 0.67 0.000750008 0.000696475 0.0606448 0.0563162 38 2891 23 6.89349e+06 338252 678818. 2348.85 3.81 0.293115 0.253875 26626 170182 -1 2554 24 2212 3209 243302 52794 3.76655 3.76655 -142.691 -3.76655 0 0 902133. 3121.57 0.23 0.10 0.16 -1 -1 0.23 0.0332743 0.0288308 168 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 6.18 vpr 62.26 MiB -1 -1 0.23 18168 1 0.03 -1 -1 30108 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63756 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 23.7 MiB 1.67 891 12681 4633 6140 1908 62.3 MiB 0.11 0.00 4.00748 -121.286 -4.00748 4.00748 0.73 0.000596253 0.000554269 0.044775 0.0416583 34 2241 20 6.89349e+06 253689 618332. 2139.56 1.61 0.15832 0.137925 25762 151098 -1 1909 20 958 1482 148975 31008 3.08205 3.08205 -114.277 -3.08205 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0227721 0.0197303 109 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 7.27 vpr 63.16 MiB -1 -1 0.25 18256 1 0.03 -1 -1 30396 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 24.2 MiB 2.54 1219 12958 3345 8411 1202 63.2 MiB 0.13 0.00 4.38103 -136.881 -4.38103 4.38103 0.68 0.000713808 0.000661923 0.0497197 0.0461472 34 3233 38 6.89349e+06 352346 618332. 2139.56 1.82 0.207209 0.179896 25762 151098 -1 2633 17 1526 2281 168204 37222 3.963 3.963 -135.949 -3.963 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0280102 0.024469 160 61 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 7.93 vpr 63.21 MiB -1 -1 0.24 18216 1 0.03 -1 -1 30260 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 24.3 MiB 2.64 1259 16858 6134 8135 2589 63.2 MiB 0.17 0.00 5.51507 -165.9 -5.51507 5.51507 0.68 0.000725395 0.000673981 0.0650918 0.0604636 34 3658 48 6.89349e+06 352346 618332. 2139.56 2.28 0.229225 0.199983 25762 151098 -1 2837 19 1954 2862 268934 54976 4.90688 4.90688 -164.555 -4.90688 0 0 787024. 2723.27 0.25 0.09 0.13 -1 -1 0.25 0.0234363 0.0206451 163 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 9.12 vpr 63.21 MiB -1 -1 0.22 18248 1 0.03 -1 -1 30440 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 24.3 MiB 2.72 1190 15688 5780 7361 2547 63.2 MiB 0.16 0.00 5.54088 -167.719 -5.54088 5.54088 0.68 0.000734386 0.000681619 0.0611678 0.0567721 36 2845 29 6.89349e+06 352346 648988. 2245.63 3.49 0.286157 0.247754 26050 158493 -1 2560 21 1818 2649 192963 43117 4.66028 4.66028 -159.451 -4.66028 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0296369 0.0257912 166 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 6.48 vpr 63.12 MiB -1 -1 0.21 18252 1 0.04 -1 -1 30380 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 24.1 MiB 2.06 1192 10071 2510 6717 844 63.1 MiB 0.11 0.00 4.12652 -128.326 -4.12652 4.12652 0.69 0.000649418 0.00060208 0.0387345 0.0359498 34 3003 29 6.89349e+06 338252 618332. 2139.56 1.53 0.152768 0.133075 25762 151098 -1 2411 19 1685 2497 182458 40756 3.06536 3.06536 -118.85 -3.06536 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0259266 0.0225637 148 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 7.85 vpr 62.36 MiB -1 -1 0.18 18000 1 0.03 -1 -1 30272 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 23.9 MiB 1.56 1042 13992 4713 7020 2259 62.4 MiB 0.12 0.00 4.55135 -122.838 -4.55135 4.55135 0.68 0.000613868 0.000570758 0.0488231 0.0454177 36 2449 22 6.89349e+06 281877 648988. 2245.63 3.44 0.21916 0.18986 26050 158493 -1 2067 17 1068 1504 111942 24821 3.83 3.83 -120.094 -3.83 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0211019 0.0183784 120 27 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 9.93 vpr 63.35 MiB -1 -1 0.21 18396 1 0.03 -1 -1 30356 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 24.5 MiB 2.78 1364 18239 5649 8664 3926 63.3 MiB 0.19 0.00 5.39684 -169.798 -5.39684 5.39684 0.68 0.00086251 0.000802413 0.0755015 0.0701178 38 3436 29 6.89349e+06 436909 678818. 2348.85 4.13 0.34774 0.301296 26626 170182 -1 2763 22 2303 3425 225653 53510 4.45139 4.45139 -158.876 -4.45139 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.036251 0.0314897 203 87 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 6.16 vpr 62.52 MiB -1 -1 0.23 18156 1 0.03 -1 -1 30152 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 23.9 MiB 1.96 847 14606 5701 6811 2094 62.5 MiB 0.12 0.00 3.7437 -110.885 -3.7437 3.7437 0.68 0.000565259 0.000525414 0.0488786 0.0454299 34 2267 24 6.89349e+06 253689 618332. 2139.56 1.37 0.160294 0.13974 25762 151098 -1 1904 18 1147 1538 109956 25270 3.04966 3.04966 -107.803 -3.04966 0 0 787024. 2723.27 0.22 0.07 0.13 -1 -1 0.22 0.0235335 0.020571 106 28 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 5.35 vpr 63.06 MiB -1 -1 0.24 18220 1 0.03 -1 -1 30136 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 24.2 MiB 1.61 1157 11993 3200 7722 1071 63.1 MiB 0.12 0.00 4.79572 -144.196 -4.79572 4.79572 0.68 0.00068494 0.000637252 0.0451303 0.0419244 30 2885 23 6.89349e+06 324158 556674. 1926.21 0.93 0.127296 0.112214 25186 138497 -1 2325 20 1370 2211 156865 34337 3.9931 3.9931 -137.075 -3.9931 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0261842 0.0227687 140 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 7.15 vpr 62.93 MiB -1 -1 0.25 18376 1 0.03 -1 -1 30236 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 24.0 MiB 2.38 1255 9111 2360 6068 683 62.9 MiB 0.10 0.00 4.32959 -133.247 -4.32959 4.32959 0.72 0.000699444 0.000649619 0.0346275 0.03215 34 3300 43 6.89349e+06 324158 618332. 2139.56 1.81 0.19002 0.164221 25762 151098 -1 2606 22 1582 2655 192368 43364 3.5174 3.5174 -127.286 -3.5174 0 0 787024. 2723.27 0.21 0.08 0.10 -1 -1 0.21 0.0289087 0.0250544 149 53 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 6.35 vpr 62.50 MiB -1 -1 0.20 17680 1 0.03 -1 -1 30004 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 23.8 MiB 0.87 980 8934 2029 6214 691 62.5 MiB 0.09 0.00 4.26729 -129.015 -4.26729 4.26729 0.70 0.000638873 0.000594436 0.0298312 0.0277303 32 2710 19 6.89349e+06 366440 586450. 2029.24 2.64 0.181822 0.157018 25474 144626 -1 2224 21 1333 2551 219755 47788 3.5072 3.5072 -124.725 -3.5072 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0248425 0.0214912 123 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 7.09 vpr 63.06 MiB -1 -1 0.25 18420 1 0.03 -1 -1 30464 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 24.2 MiB 1.93 1059 12951 4043 6051 2857 63.1 MiB 0.15 0.00 4.45401 -129.14 -4.45401 4.45401 0.68 0.000820725 0.000755051 0.0536426 0.0496478 36 2779 21 6.89349e+06 324158 648988. 2245.63 2.21 0.189248 0.165094 26050 158493 -1 2152 20 1610 2295 178017 39817 3.10276 3.10276 -115.251 -3.10276 0 0 828058. 2865.25 0.24 0.07 0.14 -1 -1 0.24 0.028703 0.0254789 148 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 7.38 vpr 63.01 MiB -1 -1 0.24 18236 1 0.03 -1 -1 30284 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 24.1 MiB 2.50 1253 16468 4636 10263 1569 63.0 MiB 0.15 0.00 4.19329 -135.481 -4.19329 4.19329 0.68 0.000712295 0.00066122 0.0621044 0.057614 36 3187 25 6.89349e+06 338252 648988. 2245.63 1.98 0.196369 0.171498 26050 158493 -1 2602 20 1650 2573 193342 42638 3.59435 3.59435 -129.638 -3.59435 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0275182 0.0239212 154 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 7.17 vpr 63.14 MiB -1 -1 0.25 18392 1 0.03 -1 -1 30256 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 382 305 1 243 89 17 17 289 -1 unnamed_device 24.2 MiB 2.36 1372 15929 5275 8784 1870 63.1 MiB 0.18 0.00 4.08378 -136.371 -4.08378 4.08378 0.68 0.000580891 0.000533851 0.0582564 0.0538942 34 3362 24 6.89349e+06 352346 618332. 2139.56 1.83 0.204431 0.178222 25762 151098 -1 2766 19 1860 2580 210207 46305 3.09876 3.09876 -128.874 -3.09876 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0281805 0.0246046 162 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 6.15 vpr 62.55 MiB -1 -1 0.22 18368 1 0.03 -1 -1 30276 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 24.1 MiB 1.57 1045 14593 4202 8807 1584 62.6 MiB 0.13 0.00 4.52205 -134.216 -4.52205 4.52205 0.71 0.000638346 0.000593628 0.0521411 0.0484786 34 2490 46 6.89349e+06 295971 618332. 2139.56 1.67 0.200604 0.174821 25762 151098 -1 2130 21 1363 2223 147926 34667 3.74036 3.74036 -127.635 -3.74036 0 0 787024. 2723.27 0.24 0.07 0.15 -1 -1 0.24 0.0262391 0.0228307 128 24 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 6.33 vpr 62.81 MiB -1 -1 0.21 18344 1 0.03 -1 -1 30272 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 24.1 MiB 1.93 987 13883 3666 8021 2196 62.8 MiB 0.13 0.00 4.84598 -138.838 -4.84598 4.84598 0.68 0.000652181 0.000606766 0.0502547 0.0467309 34 2558 31 6.89349e+06 310065 618332. 2139.56 1.47 0.186785 0.162651 25762 151098 -1 2181 19 1428 2105 149429 34251 3.7003 3.7003 -129.472 -3.7003 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0243279 0.0211554 135 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 8.60 vpr 63.18 MiB -1 -1 0.25 18344 1 0.03 -1 -1 30420 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 31 32 373 299 1 227 86 17 17 289 -1 unnamed_device 24.3 MiB 2.16 1211 14828 4402 8079 2347 63.2 MiB 0.15 0.00 4.74072 -143.031 -4.74072 4.74072 0.68 0.000720572 0.000669856 0.0587761 0.0545739 36 3108 20 6.89349e+06 324158 648988. 2245.63 3.50 0.258406 0.223992 26050 158493 -1 2499 22 1859 2953 201173 44890 3.8508 3.8508 -134.377 -3.8508 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.030632 0.0266387 156 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 9.15 vpr 63.41 MiB -1 -1 0.26 18216 1 0.03 -1 -1 30280 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 24.4 MiB 2.68 1258 10979 3006 7476 497 63.4 MiB 0.12 0.00 4.38808 -134.784 -4.38808 4.38808 0.68 0.000735755 0.000683128 0.0432488 0.0401098 34 3563 33 6.89349e+06 352346 618332. 2139.56 3.56 0.282841 0.243426 25762 151098 -1 2828 18 1981 2913 201286 46276 3.89396 3.89396 -136.54 -3.89396 0 0 787024. 2723.27 0.22 0.06 0.14 -1 -1 0.22 0.0233739 0.0205403 166 77 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 6.91 vpr 62.27 MiB -1 -1 0.22 18124 1 0.03 -1 -1 30512 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63760 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 23.7 MiB 1.32 732 6839 1674 4948 217 62.3 MiB 0.07 0.00 3.52919 -107.237 -3.52919 3.52919 0.69 0.000537311 0.000497782 0.024177 0.0224721 30 2067 32 6.89349e+06 211408 556674. 1926.21 2.86 0.16305 0.140161 25186 138497 -1 1612 19 901 1393 89815 21726 2.59451 2.59451 -100.794 -2.59451 0 0 706193. 2443.58 0.19 0.05 0.08 -1 -1 0.19 0.020611 0.0178854 96 23 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 7.99 vpr 63.03 MiB -1 -1 0.24 18092 1 0.03 -1 -1 30128 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 24.1 MiB 1.64 1174 13260 4046 7113 2101 63.0 MiB 0.13 0.00 4.29355 -148.609 -4.29355 4.29355 0.67 0.000670162 0.000623326 0.0505395 0.0469619 36 2755 25 6.89349e+06 281877 648988. 2245.63 3.41 0.236418 0.204825 26050 158493 -1 2310 19 1602 2184 177150 37060 3.48465 3.48465 -140.596 -3.48465 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0248545 0.0215813 138 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 8.36 vpr 63.11 MiB -1 -1 0.18 18416 1 0.03 -1 -1 30296 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 24.2 MiB 1.92 1358 17711 6857 9017 1837 63.1 MiB 0.19 0.00 5.47492 -162.011 -5.47492 5.47492 0.68 0.000763814 0.000709031 0.0707719 0.0657043 36 3307 24 6.89349e+06 352346 648988. 2245.63 3.54 0.301061 0.261431 26050 158493 -1 2710 21 1821 2824 198903 44515 4.51965 4.51965 -153.16 -4.51965 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0304579 0.0264908 168 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 6.73 vpr 63.00 MiB -1 -1 0.24 18140 1 0.03 -1 -1 30368 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 24.2 MiB 2.02 1178 13694 4056 7919 1719 63.0 MiB 0.14 0.00 4.47216 -142.443 -4.47216 4.47216 0.68 0.000684126 0.000635414 0.0520104 0.0483357 34 2809 24 6.89349e+06 310065 618332. 2139.56 1.79 0.162562 0.14262 25762 151098 -1 2332 18 1519 2197 170175 37027 3.02241 3.02241 -123.52 -3.02241 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0245036 0.021335 144 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 5.74 vpr 62.57 MiB -1 -1 0.23 18084 1 0.03 -1 -1 30336 -1 -1 27 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 23.8 MiB 1.45 951 12563 3271 8399 893 62.6 MiB 0.11 0.00 4.13238 -126.06 -4.13238 4.13238 0.68 0.000588611 0.000547406 0.0393814 0.036535 34 2327 25 6.89349e+06 380534 618332. 2139.56 1.42 0.156734 0.135762 25762 151098 -1 2025 22 1297 2018 167340 37083 3.77555 3.77555 -130.14 -3.77555 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0246053 0.0212908 118 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 9.70 vpr 63.22 MiB -1 -1 0.26 18412 1 0.03 -1 -1 30336 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 24.2 MiB 3.24 1567 13555 4048 7346 2161 63.2 MiB 0.16 0.00 6.44359 -187.4 -6.44359 6.44359 0.68 0.000824925 0.000766822 0.057727 0.0536022 36 3996 24 6.89349e+06 380534 648988. 2245.63 3.35 0.229504 0.200317 26050 158493 -1 3297 22 2374 3728 349639 71806 5.33889 5.33889 -177.809 -5.33889 0 0 828058. 2865.25 0.22 0.12 0.14 -1 -1 0.22 0.034248 0.0297209 188 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 5.85 vpr 62.86 MiB -1 -1 0.23 18184 1 0.03 -1 -1 30548 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 24.0 MiB 1.42 1067 14035 3934 8096 2005 62.9 MiB 0.13 0.00 4.72832 -145.11 -4.72832 4.72832 0.67 0.000684339 0.000636541 0.0538183 0.0500717 34 2595 24 6.89349e+06 295971 618332. 2139.56 1.52 0.192845 0.168887 25762 151098 -1 2235 22 1787 2518 195167 43859 3.9007 3.9007 -137.409 -3.9007 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0285362 0.0247791 139 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 5.92 vpr 62.34 MiB -1 -1 0.22 17748 1 0.02 -1 -1 30456 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63832 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 23.8 MiB 0.67 695 14713 4314 8460 1939 62.3 MiB 0.12 0.00 3.6346 -100.535 -3.6346 3.6346 0.72 0.000533681 0.000497103 0.0457832 0.0424758 28 1921 19 6.89349e+06 338252 531479. 1839.03 2.49 0.186986 0.161801 24610 126494 -1 1691 22 1132 2010 173636 39630 2.82941 2.82941 -100.021 -2.82941 0 0 648988. 2245.63 0.18 0.07 0.11 -1 -1 0.18 0.0220061 0.0189868 94 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 6.71 vpr 62.94 MiB -1 -1 0.24 18240 1 0.03 -1 -1 30136 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 24.0 MiB 1.92 1217 14679 5443 7869 1367 62.9 MiB 0.15 0.00 5.41897 -143.636 -5.41897 5.41897 0.69 0.000702053 0.000651353 0.0558585 0.0518406 34 3127 23 6.89349e+06 324158 618332. 2139.56 1.89 0.165319 0.145314 25762 151098 -1 2493 23 1492 2833 239730 50744 4.52875 4.52875 -141.093 -4.52875 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0303435 0.0263084 149 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 5.18 vpr 62.27 MiB -1 -1 0.20 17776 1 0.03 -1 -1 30080 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63760 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 23.7 MiB 0.90 843 14303 4411 8253 1639 62.3 MiB 0.11 0.00 3.54325 -111.744 -3.54325 3.54325 0.69 0.000563977 0.000524428 0.0457911 0.0425501 34 2087 30 6.89349e+06 267783 618332. 2139.56 1.49 0.160965 0.140319 25762 151098 -1 1778 19 1107 1988 160160 33986 2.69866 2.69866 -106.27 -2.69866 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0204975 0.0177587 98 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 6.13 vpr 62.55 MiB -1 -1 0.24 18004 1 0.03 -1 -1 30376 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 23.9 MiB 1.40 773 9160 2547 5968 645 62.5 MiB 0.09 0.00 4.07968 -116.565 -4.07968 4.07968 0.82 0.00047108 0.000434854 0.0252048 0.0231701 36 2054 21 6.89349e+06 281877 648988. 2245.63 1.80 0.1392 0.119851 26050 158493 -1 1793 19 1139 1633 120373 28155 3.23906 3.23906 -112.268 -3.23906 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0218469 0.0189473 113 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 7.78 vpr 62.89 MiB -1 -1 0.25 18260 1 0.03 -1 -1 30296 -1 -1 26 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 23.9 MiB 3.06 1139 8919 2183 6102 634 62.9 MiB 0.10 0.00 4.48897 -131.496 -4.48897 4.48897 0.69 0.000688926 0.000640412 0.0340907 0.0316632 34 3051 27 6.89349e+06 366440 618332. 2139.56 1.84 0.178061 0.153818 25762 151098 -1 2534 20 1630 2380 194289 42924 3.74455 3.74455 -127.937 -3.74455 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0266561 0.0231533 154 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 8.71 vpr 63.02 MiB -1 -1 0.24 18160 1 0.03 -1 -1 30332 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64536 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 24.2 MiB 2.22 1122 9158 2488 6122 548 63.0 MiB 0.10 0.00 4.88804 -152.378 -4.88804 4.88804 0.68 0.000713617 0.000655436 0.0372018 0.0344225 36 3060 23 6.89349e+06 310065 648988. 2245.63 3.53 0.234516 0.201796 26050 158493 -1 2572 21 1939 2826 207505 46566 4.20505 4.20505 -147.248 -4.20505 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0282949 0.0246008 151 54 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 6.89 vpr 63.23 MiB -1 -1 0.22 18292 1 0.03 -1 -1 30296 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 24.3 MiB 1.97 1252 12951 3653 7742 1556 63.2 MiB 0.15 0.00 5.47602 -157.843 -5.47602 5.47602 0.77 0.000702719 0.000653522 0.0566845 0.0526397 36 3028 40 6.89349e+06 324158 648988. 2245.63 1.88 0.213571 0.186251 26050 158493 -1 2626 23 1726 2584 195995 43414 4.44939 4.44939 -152.134 -4.44939 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0300566 0.026074 150 51 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 7.24 vpr 62.34 MiB -1 -1 0.23 18100 1 0.03 -1 -1 30072 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63832 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 23.7 MiB 1.67 881 10726 3077 6717 932 62.3 MiB 0.10 0.00 4.53843 -126.576 -4.53843 4.53843 0.68 0.000591756 0.000550915 0.0394419 0.0367284 34 2186 24 6.89349e+06 211408 618332. 2139.56 2.78 0.20737 0.179025 25762 151098 -1 1901 14 900 1276 93884 21447 3.19321 3.19321 -115.532 -3.19321 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0174521 0.0152694 105 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 6.51 vpr 62.87 MiB -1 -1 0.24 18148 1 0.03 -1 -1 30444 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 24.1 MiB 1.81 1053 14483 4664 7716 2103 62.9 MiB 0.13 0.00 3.74261 -124.975 -3.74261 3.74261 0.68 0.000635653 0.000591189 0.0528967 0.0491263 36 2563 23 6.89349e+06 281877 648988. 2245.63 1.81 0.155402 0.136284 26050 158493 -1 2164 22 1485 2076 149242 33231 3.09511 3.09511 -121.194 -3.09511 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0270726 0.0234689 131 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 6.43 vpr 62.77 MiB -1 -1 0.24 18312 1 0.03 -1 -1 30504 -1 -1 26 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 23.9 MiB 2.04 1173 16273 5377 8794 2102 62.8 MiB 0.15 0.00 3.817 -113.195 -3.817 3.817 0.68 0.000651254 0.000604879 0.0565428 0.0524856 34 2618 31 6.89349e+06 366440 618332. 2139.56 1.50 0.16599 0.145502 25762 151098 -1 2167 19 1424 2168 148471 34334 3.03691 3.03691 -109.432 -3.03691 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0247654 0.0215489 142 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 5.60 vpr 62.45 MiB -1 -1 0.23 18028 1 0.03 -1 -1 30524 -1 -1 23 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63944 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 23.8 MiB 1.27 909 14123 3958 8851 1314 62.4 MiB 0.12 0.00 4.4511 -113.819 -4.4511 4.4511 0.67 0.000466434 0.000428603 0.0476618 0.0443241 34 2337 28 6.89349e+06 324158 618332. 2139.56 1.50 0.162636 0.141612 25762 151098 -1 1901 21 1023 1801 147034 33072 3.68256 3.68256 -111.515 -3.68256 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0234144 0.020225 119 27 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 8.14 vpr 62.43 MiB -1 -1 0.16 18384 1 0.03 -1 -1 30380 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63924 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 23.9 MiB 1.88 979 14663 6207 7722 734 62.4 MiB 0.13 0.00 4.62158 -135.813 -4.62158 4.62158 0.67 0.00064396 0.000598312 0.0539029 0.0500773 36 2485 25 6.89349e+06 295971 648988. 2245.63 3.46 0.232779 0.201587 26050 158493 -1 2130 21 1831 2535 203191 44657 3.68864 3.68864 -131.093 -3.68864 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0254535 0.0220585 131 63 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 6.35 vpr 63.04 MiB -1 -1 0.24 18140 1 0.03 -1 -1 30304 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 24.1 MiB 1.69 1197 9966 2574 6122 1270 63.0 MiB 0.10 0.00 4.03794 -140.884 -4.03794 4.03794 0.68 0.000666655 0.000619238 0.0383891 0.0356724 34 2973 29 6.89349e+06 281877 618332. 2139.56 1.81 0.153971 0.133933 25762 151098 -1 2572 20 1685 2314 206518 44032 3.1324 3.1324 -129.633 -3.1324 0 0 787024. 2723.27 0.21 0.08 0.16 -1 -1 0.21 0.0257458 0.0223676 138 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 4.66 vpr 62.44 MiB -1 -1 0.23 17524 1 0.03 -1 -1 30320 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 23.8 MiB 0.81 933 8827 1959 6407 461 62.4 MiB 0.09 0.00 4.68742 -132.125 -4.68742 4.68742 0.68 0.000647852 0.0006034 0.0287044 0.0266218 30 2469 28 6.89349e+06 436909 556674. 1926.21 1.03 0.113236 0.0987556 25186 138497 -1 1985 21 973 1855 124155 27575 3.7575 3.7575 -123.081 -3.7575 0 0 706193. 2443.58 0.20 0.07 0.12 -1 -1 0.20 0.0258281 0.0225127 129 4 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 7.70 vpr 63.12 MiB -1 -1 0.24 18108 1 0.03 -1 -1 30584 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 24.2 MiB 2.04 993 15063 4441 7937 2685 63.1 MiB 0.15 0.00 4.79682 -147.448 -4.79682 4.79682 0.68 0.00067811 0.000626997 0.0577457 0.0536543 34 3341 42 6.89349e+06 324158 618332. 2139.56 2.60 0.203813 0.178452 25762 151098 -1 2507 20 1793 2731 251308 57180 3.9366 3.9366 -137.622 -3.9366 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0280953 0.0243904 148 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 8.88 vpr 63.18 MiB -1 -1 0.25 18208 1 0.03 -1 -1 30280 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 385 308 1 244 90 17 17 289 -1 unnamed_device 24.2 MiB 2.15 1227 14562 3938 8589 2035 63.2 MiB 0.15 0.00 5.38159 -164.838 -5.38159 5.38159 0.73 0.000746778 0.000694098 0.0567133 0.0527023 36 3243 27 6.89349e+06 366440 648988. 2245.63 3.67 0.269728 0.234607 26050 158493 -1 2568 22 2110 2989 235894 51836 4.67469 4.67469 -163.039 -4.67469 0 0 828058. 2865.25 0.24 0.07 0.15 -1 -1 0.24 0.0226463 0.0197547 163 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 8.67 vpr 63.19 MiB -1 -1 0.20 18204 1 0.03 -1 -1 30320 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 24.2 MiB 2.07 1249 15366 4699 7930 2737 63.2 MiB 0.16 0.00 4.52977 -146.574 -4.52977 4.52977 0.68 0.000768098 0.000714055 0.0597117 0.0554454 38 3101 27 6.89349e+06 366440 678818. 2348.85 3.65 0.281103 0.243655 26626 170182 -1 2575 23 1733 2651 221947 45896 3.99995 3.99995 -142.366 -3.99995 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0320862 0.0278723 164 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 6.45 vpr 62.51 MiB -1 -1 0.19 17964 1 0.03 -1 -1 30304 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 23.9 MiB 1.97 905 12323 3823 7116 1384 62.5 MiB 0.12 0.00 4.24433 -127.173 -4.24433 4.24433 0.68 0.000609576 0.000566346 0.0437906 0.0406898 34 2274 35 6.89349e+06 295971 618332. 2139.56 1.66 0.1688 0.146539 25762 151098 -1 1900 18 1130 1599 128112 27804 3.10946 3.10946 -111.538 -3.10946 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0208135 0.0180779 112 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 7.41 vpr 63.06 MiB -1 -1 0.22 18132 1 0.03 -1 -1 30372 -1 -1 25 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 30 32 375 299 1 236 87 17 17 289 -1 unnamed_device 24.1 MiB 2.85 1252 13143 3283 8520 1340 63.1 MiB 0.14 0.00 5.23091 -159.91 -5.23091 5.23091 0.68 0.000725079 0.000673819 0.0521396 0.0484364 34 3195 38 6.89349e+06 352346 618332. 2139.56 1.66 0.209046 0.182099 25762 151098 -1 2683 19 1969 2727 216393 49027 4.70289 4.70289 -164.912 -4.70289 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0268991 0.0234204 161 63 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 5.70 vpr 62.95 MiB -1 -1 0.17 18204 1 0.03 -1 -1 30276 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 24.1 MiB 1.15 1135 15255 4537 8764 1954 63.0 MiB 0.15 0.00 5.17695 -153.732 -5.17695 5.17695 0.68 0.000693742 0.000645377 0.0578766 0.0538123 34 2919 21 6.89349e+06 324158 618332. 2139.56 1.62 0.192767 0.168741 25762 151098 -1 2433 22 1711 2956 258805 55965 4.1143 4.1143 -143.928 -4.1143 0 0 787024. 2723.27 0.24 0.10 0.13 -1 -1 0.24 0.028325 0.0245556 139 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 6.63 vpr 63.09 MiB -1 -1 0.24 18312 1 0.03 -1 -1 30216 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 24.2 MiB 2.18 1193 13505 4546 7143 1816 63.1 MiB 0.14 0.00 5.02824 -144.831 -5.02824 5.02824 0.71 0.00069036 0.000641068 0.0525096 0.0488141 36 2814 25 6.89349e+06 324158 648988. 2245.63 1.56 0.157897 0.138522 26050 158493 -1 2418 20 1423 2236 198439 41166 4.31415 4.31415 -140.912 -4.31415 0 0 828058. 2865.25 0.22 0.08 0.10 -1 -1 0.22 0.0263508 0.0228884 142 47 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 7.60 vpr 63.10 MiB -1 -1 0.19 18320 1 0.03 -1 -1 30368 -1 -1 26 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 30 32 377 310 1 239 88 17 17 289 -1 unnamed_device 24.4 MiB 2.68 1197 15103 4411 8230 2462 63.1 MiB 0.15 0.00 4.851 -140.164 -4.851 4.851 0.68 0.000719371 0.000668375 0.0580069 0.0538626 36 2863 21 6.89349e+06 366440 648988. 2245.63 2.04 0.202959 0.177377 26050 158493 -1 2495 20 1595 2287 181696 38931 3.88729 3.88729 -134.431 -3.88729 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0277246 0.0240826 162 83 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 7.36 vpr 62.91 MiB -1 -1 0.20 18248 1 0.03 -1 -1 30320 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 24.0 MiB 2.51 1204 16599 6004 7939 2656 62.9 MiB 0.17 0.00 5.44287 -158.373 -5.44287 5.44287 0.68 0.00071785 0.000666572 0.064359 0.0597539 34 3283 32 6.89349e+06 324158 618332. 2139.56 1.94 0.214044 0.187206 25762 151098 -1 2597 23 1963 2925 216361 49453 4.61969 4.61969 -154.947 -4.61969 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0306821 0.0266176 155 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 6.98 vpr 63.17 MiB -1 -1 0.26 18196 1 0.03 -1 -1 30304 -1 -1 30 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 24.2 MiB 2.34 1306 12535 3228 8012 1295 63.2 MiB 0.12 0.00 4.60117 -137.507 -4.60117 4.60117 0.67 0.000711608 0.000660821 0.0460842 0.0427905 36 2897 26 6.89349e+06 422815 648988. 2245.63 1.79 0.188848 0.16409 26050 158493 -1 2382 22 1487 2016 135818 31245 3.54206 3.54206 -127.169 -3.54206 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0297229 0.0257588 166 85 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 6.62 vpr 62.16 MiB -1 -1 0.21 17764 1 0.03 -1 -1 30408 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 23.6 MiB 1.08 733 12331 3194 7563 1574 62.2 MiB 0.10 0.00 4.02268 -117.682 -4.02268 4.02268 0.68 0.000553956 0.000516118 0.0406898 0.0378723 34 1915 37 6.89349e+06 239595 618332. 2139.56 2.74 0.209324 0.180742 25762 151098 -1 1583 17 919 1489 101979 24094 2.86616 2.86616 -105.485 -2.86616 0 0 787024. 2723.27 0.22 0.05 0.15 -1 -1 0.22 0.018417 0.0161591 96 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 7.02 vpr 63.13 MiB -1 -1 0.24 18080 1 0.03 -1 -1 30436 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 24.2 MiB 1.97 1366 14741 4940 7308 2493 63.1 MiB 0.14 0.00 5.7749 -170.888 -5.7749 5.7749 0.67 0.000724666 0.000672068 0.0564156 0.0523254 38 2766 20 6.89349e+06 352346 678818. 2348.85 2.07 0.196831 0.172375 26626 170182 -1 2489 21 1542 2193 169330 36565 4.41358 4.41358 -149.332 -4.41358 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0293593 0.0255638 156 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 9.27 vpr 63.31 MiB -1 -1 0.20 18224 1 0.03 -1 -1 30256 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64832 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 24.3 MiB 2.82 1405 14543 3790 8651 2102 63.3 MiB 0.15 0.00 5.38563 -174.831 -5.38563 5.38563 0.68 0.000589778 0.000540273 0.0569682 0.0527492 36 3143 23 6.89349e+06 352346 648988. 2245.63 3.59 0.267477 0.231869 26050 158493 -1 2788 23 2224 3211 255670 54788 4.79045 4.79045 -171.521 -4.79045 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0332501 0.0289401 171 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 6.17 vpr 62.36 MiB -1 -1 0.22 17856 1 0.03 -1 -1 30356 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 23.8 MiB 2.10 852 8626 2126 6029 471 62.4 MiB 0.08 0.00 4.14342 -115.954 -4.14342 4.14342 0.68 0.000578217 0.000538435 0.0300715 0.0279852 34 2167 20 6.89349e+06 253689 618332. 2139.56 1.32 0.140381 0.121565 25762 151098 -1 1869 21 1272 1680 114108 27008 3.08576 3.08576 -107.616 -3.08576 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0232508 0.0201319 108 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 5.75 vpr 62.30 MiB -1 -1 0.17 17872 1 0.03 -1 -1 30348 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 23.7 MiB 0.93 843 11783 3233 6725 1825 62.3 MiB 0.10 0.00 3.90644 -115.807 -3.90644 3.90644 0.62 0.000551823 0.00051362 0.0382537 0.0356391 26 2165 23 6.89349e+06 281877 503264. 1741.40 2.10 0.160227 0.138939 24322 120374 -1 1999 20 1253 2044 176217 38787 2.84601 2.84601 -111.426 -2.84601 0 0 618332. 2139.56 0.17 0.07 0.11 -1 -1 0.17 0.021057 0.0182075 99 4 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 8.23 vpr 63.01 MiB -1 -1 0.19 18272 1 0.03 -1 -1 30556 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 24.1 MiB 1.90 1150 8727 2018 5615 1094 63.0 MiB 0.10 0.00 4.64652 -149.201 -4.64652 4.64652 0.77 0.000703572 0.000653539 0.0343992 0.0319982 36 2852 22 6.89349e+06 324158 648988. 2245.63 3.32 0.228654 0.197115 26050 158493 -1 2401 21 1728 2486 197683 41996 3.7788 3.7788 -141.038 -3.7788 0 0 828058. 2865.25 0.29 0.05 0.14 -1 -1 0.29 0.015374 0.0135936 145 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 6.74 vpr 63.05 MiB -1 -1 0.24 18176 1 0.03 -1 -1 30280 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 24.1 MiB 2.01 1167 15639 4762 8859 2018 63.0 MiB 0.15 0.00 4.99039 -145.722 -4.99039 4.99039 0.69 0.00070699 0.000656391 0.0601118 0.055841 36 2585 21 6.89349e+06 324158 648988. 2245.63 1.77 0.196287 0.171915 26050 158493 -1 2196 19 1312 1916 134550 31443 4.22525 4.22525 -139.154 -4.22525 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0259131 0.022542 149 56 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 4.62 vpr 62.98 MiB -1 -1 0.21 18044 1 0.03 -1 -1 30232 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.1 MiB 0.63 1179 13092 3559 8453 1080 63.0 MiB 0.14 0.00 5.17121 -146.734 -5.17121 5.17121 0.67 0.000724033 0.000673575 0.043706 0.0404953 30 2906 22 6.89349e+06 507378 556674. 1926.21 1.13 0.128477 0.113126 25186 138497 -1 2340 25 1609 3088 192920 45460 4.11249 4.11249 -141.088 -4.11249 0 0 706193. 2443.58 0.19 0.09 0.13 -1 -1 0.19 0.0330255 0.0286262 157 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 5.98 vpr 62.79 MiB -1 -1 0.24 18224 1 0.03 -1 -1 30356 -1 -1 25 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 24.0 MiB 1.48 1065 7191 1699 5079 413 62.8 MiB 0.08 0.00 3.88834 -114.437 -3.88834 3.88834 0.68 0.000621353 0.000575627 0.0260267 0.0242019 34 2645 26 6.89349e+06 352346 618332. 2139.56 1.68 0.152243 0.13158 25762 151098 -1 2237 20 1738 2562 187968 42121 2.95776 2.95776 -105.775 -2.95776 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0247213 0.0214314 136 52 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 7.60 vpr 62.34 MiB -1 -1 0.19 17952 1 0.02 -1 -1 30436 -1 -1 20 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 23.7 MiB 1.49 671 12416 5195 5941 1280 62.3 MiB 0.09 0.00 4.39223 -112.843 -4.39223 4.39223 0.68 0.000544952 0.00050697 0.041701 0.0388089 38 1671 32 6.89349e+06 281877 678818. 2348.85 3.37 0.198927 0.171543 26626 170182 -1 1407 17 1024 1491 107563 26317 3.6986 3.6986 -109.598 -3.6986 0 0 902133. 3121.57 0.23 0.05 0.15 -1 -1 0.23 0.0187226 0.0161985 106 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 9.57 vpr 63.44 MiB -1 -1 0.27 18668 1 0.03 -1 -1 30328 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 24.6 MiB 3.51 1558 16615 4500 10327 1788 63.4 MiB 0.18 0.00 4.61521 -148.623 -4.61521 4.61521 0.69 0.000806058 0.000748595 0.0687869 0.0638458 36 3673 23 6.89349e+06 380534 648988. 2245.63 3.05 0.233238 0.20437 26050 158493 -1 3191 24 2272 3571 278292 59853 4.16294 4.16294 -150.154 -4.16294 0 0 828058. 2865.25 0.22 0.11 0.14 -1 -1 0.22 0.0359058 0.031144 185 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 7.34 vpr 63.10 MiB -1 -1 0.26 18228 1 0.03 -1 -1 30292 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 24.1 MiB 2.06 1047 15639 5809 6811 3019 63.1 MiB 0.15 0.00 5.48492 -159.854 -5.48492 5.48492 0.68 0.000638086 0.000586154 0.05956 0.0552828 36 3015 30 6.89349e+06 338252 648988. 2245.63 2.35 0.207634 0.18124 26050 158493 -1 2282 21 1981 2827 183364 45738 4.50245 4.50245 -153.354 -4.50245 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0284792 0.0247485 155 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 8.78 vpr 62.78 MiB -1 -1 0.23 18220 1 0.03 -1 -1 30396 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 331 280 1 221 84 17 17 289 -1 unnamed_device 24.0 MiB 2.35 998 16737 6124 7825 2788 62.8 MiB 0.15 0.00 4.30139 -136.522 -4.30139 4.30139 0.68 0.000657095 0.000610133 0.0625288 0.0581267 36 2611 25 6.89349e+06 281877 648988. 2245.63 3.51 0.246328 0.213896 26050 158493 -1 2181 19 1550 2018 174734 37539 3.6675 3.6675 -136.623 -3.6675 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0244123 0.0212339 136 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 7.53 vpr 62.78 MiB -1 -1 0.19 18372 1 0.03 -1 -1 30356 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 24.0 MiB 2.10 1090 9571 2534 6373 664 62.8 MiB 0.10 0.00 5.23032 -144.251 -5.23032 5.23032 0.68 0.000672451 0.000625545 0.0366806 0.0341122 30 2676 38 6.89349e+06 295971 556674. 1926.21 2.67 0.206907 0.178958 25186 138497 -1 2130 21 1071 1615 102090 23111 3.50786 3.50786 -126.051 -3.50786 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0266376 0.0231422 134 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 6.27 vpr 63.05 MiB -1 -1 0.19 18256 1 0.03 -1 -1 30512 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 24.2 MiB 1.90 1202 13751 3835 8049 1867 63.0 MiB 0.14 0.00 4.46995 -129.311 -4.46995 4.46995 0.72 0.000733751 0.000681657 0.0532819 0.0494446 34 3036 19 6.89349e+06 366440 618332. 2139.56 1.41 0.183002 0.159883 25762 151098 -1 2515 20 1830 2785 182795 43219 3.97726 3.97726 -130.915 -3.97726 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0283912 0.0246721 163 50 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 8.60 vpr 62.85 MiB -1 -1 0.19 18212 1 0.03 -1 -1 30264 -1 -1 24 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64360 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 24.0 MiB 2.22 1079 13505 3291 8862 1352 62.9 MiB 0.12 0.00 4.22645 -118.107 -4.22645 4.22645 0.68 0.000658376 0.000611311 0.0490903 0.0456641 36 2650 30 6.89349e+06 338252 648988. 2245.63 3.43 0.239116 0.206749 26050 158493 -1 2237 22 1376 2100 160748 37276 3.5733 3.5733 -114.748 -3.5733 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0271366 0.0235148 140 51 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 8.30 vpr 62.90 MiB -1 -1 0.22 18292 1 0.03 -1 -1 30464 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 24.0 MiB 2.60 1201 14828 4491 8253 2084 62.9 MiB 0.15 0.00 4.92758 -154.781 -4.92758 4.92758 0.68 0.000711 0.000660463 0.0577055 0.0535713 36 2974 20 6.89349e+06 310065 648988. 2245.63 2.76 0.197585 0.173761 26050 158493 -1 2570 23 1760 2903 286164 58396 3.9208 3.9208 -138.75 -3.9208 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0298533 0.0259172 148 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 7.19 vpr 63.28 MiB -1 -1 0.24 18436 1 0.03 -1 -1 30092 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 24.3 MiB 2.37 1278 15969 5302 7451 3216 63.3 MiB 0.15 0.00 4.11194 -136.871 -4.11194 4.11194 0.69 0.000754931 0.000693029 0.0623208 0.0572571 34 3529 33 6.89349e+06 366440 618332. 2139.56 1.86 0.219574 0.191002 25762 151098 -1 2607 21 1935 2630 187376 44216 3.44175 3.44175 -130.508 -3.44175 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.029924 0.025999 167 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 5.31 vpr 62.44 MiB -1 -1 0.19 17944 1 0.03 -1 -1 30304 -1 -1 20 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 23.8 MiB 1.25 628 7956 1799 5721 436 62.4 MiB 0.08 0.00 4.24503 -122.739 -4.24503 4.24503 0.68 0.000577792 0.000537405 0.0279715 0.0260318 34 1772 23 6.89349e+06 281877 618332. 2139.56 1.33 0.140267 0.121316 25762 151098 -1 1416 20 1270 1714 104194 26944 3.11671 3.11671 -110.381 -3.11671 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.022399 0.0193707 110 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 6.45 vpr 62.34 MiB -1 -1 0.23 18324 1 0.03 -1 -1 30484 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63840 32 32 310 266 1 198 83 17 17 289 -1 unnamed_device 23.9 MiB 1.72 1048 12863 3756 7750 1357 62.3 MiB 0.12 0.00 4.21989 -132.438 -4.21989 4.21989 0.68 0.00063304 0.000587992 0.0471189 0.0438255 34 2769 27 6.89349e+06 267783 618332. 2139.56 1.80 0.156939 0.13715 25762 151098 -1 2297 22 1779 2470 220677 46955 3.55295 3.55295 -130.18 -3.55295 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0260268 0.0224859 124 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 6.17 vpr 62.89 MiB -1 -1 0.17 18468 1 0.02 -1 -1 30368 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 24.1 MiB 1.55 1137 13477 4102 7180 2195 62.9 MiB 0.13 0.00 4.87863 -139.519 -4.87863 4.87863 0.69 0.000662513 0.000616046 0.050165 0.0466426 34 2786 29 6.89349e+06 310065 618332. 2139.56 1.80 0.186528 0.162588 25762 151098 -1 2336 20 1569 2472 202216 45007 3.8758 3.8758 -132.732 -3.8758 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0258052 0.0224146 137 33 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 7.75 vpr 62.16 MiB -1 -1 0.24 17940 1 0.03 -1 -1 30464 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 23.6 MiB 2.15 741 7132 1582 5226 324 62.2 MiB 0.07 0.00 4.21347 -110.205 -4.21347 4.21347 0.68 0.000560647 0.00052249 0.025201 0.0234548 36 1970 26 6.89349e+06 267783 648988. 2245.63 2.79 0.195558 0.167558 26050 158493 -1 1708 21 1033 1418 102366 24026 2.9515 2.9515 -101.659 -2.9515 0 0 828058. 2865.25 0.28 0.03 0.16 -1 -1 0.28 0.0123082 0.0108121 108 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 6.47 vpr 62.51 MiB -1 -1 0.18 18052 1 0.03 -1 -1 30068 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 23.8 MiB 1.89 990 11652 3107 7306 1239 62.5 MiB 0.10 0.00 4.18333 -131.846 -4.18333 4.18333 0.75 0.000594153 0.000552461 0.0404096 0.0375923 34 2497 36 6.89349e+06 253689 618332. 2139.56 1.77 0.168554 0.146456 25762 151098 -1 2108 20 1418 1990 164645 35637 3.33911 3.33911 -125.551 -3.33911 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0229957 0.0199521 114 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 6.73 vpr 63.17 MiB -1 -1 0.25 18244 1 0.03 -1 -1 30536 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 31 32 373 300 1 237 90 17 17 289 -1 unnamed_device 24.3 MiB 2.02 1223 15366 4453 8707 2206 63.2 MiB 0.15 0.00 4.62897 -148.141 -4.62897 4.62897 0.68 0.00072715 0.000675673 0.0578551 0.0537528 34 3088 26 6.89349e+06 380534 618332. 2139.56 1.75 0.203785 0.178024 25762 151098 -1 2624 21 2025 2784 225288 48923 3.81065 3.81065 -141.55 -3.81065 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0290103 0.0252398 161 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 6.11 vpr 62.41 MiB -1 -1 0.23 17980 1 0.03 -1 -1 30344 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 23.7 MiB 1.76 784 6616 1386 4941 289 62.4 MiB 0.07 0.00 3.61555 -111.527 -3.61555 3.61555 0.68 0.000566529 0.000526025 0.0235755 0.0218991 34 2257 32 6.89349e+06 239595 618332. 2139.56 1.48 0.143365 0.123283 25762 151098 -1 1840 21 1118 1559 126902 29314 2.80111 2.80111 -102.063 -2.80111 0 0 787024. 2723.27 0.21 0.06 0.15 -1 -1 0.21 0.0228764 0.0197898 108 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 6.79 vpr 63.03 MiB -1 -1 0.23 18236 1 0.03 -1 -1 30024 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 24.1 MiB 2.19 1232 13883 4397 7250 2236 63.0 MiB 0.14 0.00 4.30445 -129.833 -4.30445 4.30445 0.70 0.000700537 0.000651543 0.0537901 0.049988 34 3088 24 6.89349e+06 310065 618332. 2139.56 1.63 0.190284 0.165962 25762 151098 -1 2505 20 1424 2090 159741 35454 3.49095 3.49095 -126.618 -3.49095 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0269363 0.0234426 146 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 9.62 vpr 63.19 MiB -1 -1 0.24 18220 1 0.03 -1 -1 30232 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 24.2 MiB 2.68 1374 16127 5335 8292 2500 63.2 MiB 0.18 0.00 4.99104 -161.962 -4.99104 4.99104 0.69 0.000741467 0.000686837 0.0633813 0.0587501 38 3351 24 6.89349e+06 366440 678818. 2348.85 3.84 0.28385 0.24585 26626 170182 -1 2835 21 2331 3297 257631 54905 4.08179 4.08179 -152.863 -4.08179 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.0298115 0.0258956 167 91 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 6.52 vpr 62.81 MiB -1 -1 0.22 18072 1 0.03 -1 -1 30428 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 24.3 MiB 2.06 1102 7736 1887 5035 814 62.8 MiB 0.08 0.00 3.7859 -118.769 -3.7859 3.7859 0.68 0.000614564 0.000570725 0.0286054 0.0265436 34 2661 27 6.89349e+06 253689 618332. 2139.56 1.63 0.155954 0.13468 25762 151098 -1 2286 22 1581 2190 195646 40939 2.91016 2.91016 -116.403 -2.91016 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0259191 0.0224239 124 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 7.49 vpr 62.33 MiB -1 -1 0.18 17996 1 0.03 -1 -1 30336 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63824 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 23.7 MiB 1.23 923 8804 2372 6054 378 62.3 MiB 0.09 0.00 4.24743 -129.394 -4.24743 4.24743 0.67 0.000609847 0.000568096 0.0320525 0.029848 36 2225 43 6.89349e+06 253689 648988. 2245.63 3.52 0.205791 0.176888 26050 158493 -1 2047 20 1283 1926 179909 39070 3.36506 3.36506 -124.98 -3.36506 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0234506 0.0203181 115 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 6.02 vpr 62.72 MiB -1 -1 0.20 18180 1 0.03 -1 -1 30116 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 24.2 MiB 1.86 1050 14828 5325 7370 2133 62.7 MiB 0.13 0.00 4.90028 -137.564 -4.90028 4.90028 0.68 0.000651992 0.000605445 0.0532771 0.0494738 34 2608 24 6.89349e+06 310065 618332. 2139.56 1.33 0.155164 0.136463 25762 151098 -1 2257 21 1429 2017 147852 33854 3.75346 3.75346 -131.737 -3.75346 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0262297 0.0227133 133 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 7.69 vpr 62.80 MiB -1 -1 0.25 18344 1 0.03 -1 -1 30136 -1 -1 25 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 29 32 324 268 1 208 86 17 17 289 -1 unnamed_device 24.0 MiB 1.74 1098 14450 3824 8602 2024 62.8 MiB 0.13 0.00 4.06068 -112.703 -4.06068 4.06068 0.68 0.000647374 0.000602478 0.051651 0.0480239 34 2543 49 6.89349e+06 352346 618332. 2139.56 3.04 0.262186 0.226343 25762 151098 -1 2152 21 1448 2024 148243 34376 3.09046 3.09046 -106.337 -3.09046 0 0 787024. 2723.27 0.22 0.08 0.13 -1 -1 0.22 0.0281719 0.024626 138 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 9.10 vpr 63.07 MiB -1 -1 0.25 18148 1 0.03 -1 -1 30468 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 24.1 MiB 2.28 1257 16078 5484 8239 2355 63.1 MiB 0.17 0.00 5.66698 -180.512 -5.66698 5.66698 0.68 0.000897301 0.000832849 0.0649034 0.0601992 36 3202 36 6.89349e+06 338252 648988. 2245.63 3.80 0.295677 0.257113 26050 158493 -1 2847 20 1924 2947 238685 50612 4.68858 4.68858 -165.045 -4.68858 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.029094 0.0253055 166 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 4.93 vpr 62.16 MiB -1 -1 0.21 17748 1 0.02 -1 -1 30080 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63652 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 23.4 MiB 0.89 761 9024 2389 5969 666 62.2 MiB 0.08 0.00 3.2803 -102.743 -3.2803 3.2803 0.68 0.00052452 0.000488502 0.0289354 0.0268863 34 1907 21 6.89349e+06 239595 618332. 2139.56 1.29 0.130715 0.113182 25762 151098 -1 1608 21 825 1331 100637 22807 2.57631 2.57631 -99.2132 -2.57631 0 0 787024. 2723.27 0.21 0.06 0.14 -1 -1 0.21 0.0212871 0.0184344 92 4 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 9.39 vpr 63.25 MiB -1 -1 0.25 18160 1 0.03 -1 -1 30436 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 24.2 MiB 2.15 1326 14167 4936 7169 2062 63.2 MiB 0.15 0.00 5.79178 -174.585 -5.79178 5.79178 0.68 0.000770477 0.000715325 0.0550857 0.0510449 36 3412 40 6.89349e+06 380534 648988. 2245.63 4.18 0.304204 0.262974 26050 158493 -1 2668 21 1984 2651 224780 54704 5.17574 5.17574 -170.058 -5.17574 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0307083 0.026676 175 90 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 7.15 vpr 63.05 MiB -1 -1 0.24 18324 1 0.03 -1 -1 30116 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 24.1 MiB 2.22 1345 11415 2751 7803 861 63.0 MiB 0.13 0.00 4.85389 -165.92 -4.85389 4.85389 0.69 0.00071239 0.000660895 0.0446841 0.0414797 34 3780 38 6.89349e+06 324158 618332. 2139.56 1.94 0.176264 0.15349 25762 151098 -1 2839 26 2609 3334 278222 60452 4.42139 4.42139 -167.968 -4.42139 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.029096 0.0252435 160 96 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 6.93 vpr 63.24 MiB -1 -1 0.22 18208 1 0.03 -1 -1 30380 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 24.3 MiB 1.75 1062 14450 5050 7036 2364 63.2 MiB 0.14 0.00 4.10168 -125.093 -4.10168 4.10168 0.68 0.000712834 0.00066242 0.0566274 0.0525791 34 3126 46 6.89349e+06 310065 618332. 2139.56 2.20 0.222841 0.194036 25762 151098 -1 2289 17 1616 2256 167937 39501 3.36511 3.36511 -119.664 -3.36511 0 0 787024. 2723.27 0.27 0.07 0.13 -1 -1 0.27 0.0244671 0.0214104 153 60 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 9.39 vpr 63.09 MiB -1 -1 0.14 18136 1 0.03 -1 -1 30308 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64600 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 24.1 MiB 2.79 1315 16170 4894 8590 2686 63.1 MiB 0.17 0.00 5.8116 -176.256 -5.8116 5.8116 0.68 0.000774473 0.000719958 0.0648762 0.0603058 36 3148 23 6.89349e+06 366440 648988. 2245.63 3.61 0.284896 0.247853 26050 158493 -1 2680 22 1899 3048 266739 54735 4.49735 4.49735 -158.676 -4.49735 0 0 828058. 2865.25 0.26 0.10 0.14 -1 -1 0.26 0.0321548 0.0279577 172 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 6.13 vpr 62.09 MiB -1 -1 0.21 17924 1 0.02 -1 -1 30112 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63584 30 32 224 207 1 138 77 17 17 289 -1 unnamed_device 23.4 MiB 0.97 714 5293 1259 3713 321 62.1 MiB 0.05 0.00 3.04786 -95.0532 -3.04786 3.04786 0.67 0.000495728 0.000461193 0.0176004 0.016379 34 1618 20 6.89349e+06 211408 618332. 2139.56 2.46 0.15145 0.129575 25762 151098 -1 1440 18 680 907 66003 15107 2.32142 2.32142 -94.0544 -2.32142 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0175721 0.0152768 82 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 5.76 vpr 62.35 MiB -1 -1 0.23 18028 1 0.03 -1 -1 30420 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63848 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 23.6 MiB 1.54 918 13610 4688 7323 1599 62.4 MiB 0.12 0.00 4.49503 -139.908 -4.49503 4.49503 0.68 0.000595123 0.000552782 0.0474131 0.043945 34 2210 22 6.89349e+06 281877 618332. 2139.56 1.37 0.163806 0.14245 25762 151098 -1 1798 23 1240 1867 138538 31230 3.6393 3.6393 -124.669 -3.6393 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0258738 0.0223296 119 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 8.46 vpr 62.48 MiB -1 -1 0.22 17948 1 0.03 -1 -1 30024 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 23.8 MiB 2.09 1110 8804 2328 5458 1018 62.5 MiB 0.09 0.00 4.17499 -140.03 -4.17499 4.17499 0.68 0.000620942 0.000576844 0.0326284 0.030306 38 2415 31 6.89349e+06 253689 678818. 2348.85 3.46 0.213381 0.183513 26626 170182 -1 2258 20 1273 2270 159500 34665 3.3385 3.3385 -133.564 -3.3385 0 0 902133. 3121.57 0.27 0.07 0.15 -1 -1 0.27 0.023924 0.0207296 120 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 7.28 vpr 62.19 MiB -1 -1 0.19 18088 1 0.03 -1 -1 30208 -1 -1 21 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63680 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 23.6 MiB 1.19 575 11200 4680 5492 1028 62.2 MiB 0.08 0.00 3.6605 -87.6445 -3.6605 3.6605 0.68 0.000481311 0.000447832 0.0340727 0.0317166 36 1473 28 6.89349e+06 295971 648988. 2245.63 3.32 0.177516 0.152714 26050 158493 -1 1215 19 713 1069 96004 27609 2.77716 2.77716 -80.0425 -2.77716 0 0 828058. 2865.25 0.22 0.05 0.14 -1 -1 0.22 0.0178479 0.0154546 92 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 8.34 vpr 63.17 MiB -1 -1 0.24 18132 1 0.03 -1 -1 30256 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 24.2 MiB 2.96 1353 10455 2851 6962 642 63.2 MiB 0.12 0.00 4.36555 -133.994 -4.36555 4.36555 0.68 0.00072886 0.000677376 0.0419133 0.0389053 36 3449 28 6.89349e+06 324158 648988. 2245.63 2.43 0.195608 0.169542 26050 158493 -1 2903 21 1960 2918 219685 47503 3.70946 3.70946 -133.463 -3.70946 0 0 828058. 2865.25 0.23 0.09 0.16 -1 -1 0.23 0.0290001 0.0251742 160 72 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 7.78 vpr 63.15 MiB -1 -1 0.22 18220 1 0.03 -1 -1 30220 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64668 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 24.1 MiB 2.55 1246 10442 2641 6824 977 63.2 MiB 0.12 0.00 4.77028 -152.681 -4.77028 4.77028 0.68 0.000762137 0.000707491 0.0409291 0.0379395 34 3563 24 6.89349e+06 408721 618332. 2139.56 2.26 0.194275 0.168593 25762 151098 -1 2750 22 2202 3046 245515 54377 4.20389 4.20389 -150.8 -4.20389 0 0 787024. 2723.27 0.21 0.10 0.15 -1 -1 0.21 0.031945 0.0277223 179 90 -1 -1 -1 -1 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 6.67 vpr 63.87 MiB -1 -1 0.38 21968 14 0.32 -1 -1 36964 -1 -1 27 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65404 32 32 277 309 1 207 91 17 17 289 -1 unnamed_device 24.9 MiB 0.59 1302 6007 1134 4530 343 63.9 MiB 0.05 0.00 8.06507 -165.8 -8.06507 8.06507 0.97 0.000305931 0.000244893 0.0122392 0.0102339 -1 -1 -1 -1 38 3079 21 6.55708e+06 325485 638502. 2209.35 2.05 0.121956 0.105494 23326 155178 -1 2542 18 1049 3126 148192 34301 6.81156 6.81156 -153.807 -6.81156 0 0 851065. 2944.86 0.33 0.05 0.13 -1 -1 0.33 0.0176175 0.0157702 184 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 9.94 vpr 63.73 MiB -1 -1 0.35 22080 14 0.37 -1 -1 36748 -1 -1 30 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65264 30 32 272 304 1 211 92 17 17 289 -1 unnamed_device 24.8 MiB 0.56 1258 10442 2540 7122 780 63.7 MiB 0.08 0.00 8.22247 -160.403 -8.22247 8.22247 1.06 0.000290595 0.000232258 0.0195253 0.0159208 -1 -1 -1 -1 30 3326 21 6.55708e+06 361650 526063. 1820.29 5.07 0.134421 0.113218 21886 126133 -1 2754 19 1372 4095 194818 46233 7.04996 7.04996 -153.465 -7.04996 0 0 666494. 2306.21 0.27 0.07 0.11 -1 -1 0.27 0.0203963 0.018217 184 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 7.08 vpr 63.84 MiB -1 -1 0.28 21648 11 0.43 -1 -1 36604 -1 -1 27 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65372 32 32 280 312 1 203 91 17 17 289 -1 unnamed_device 24.9 MiB 0.37 1264 8863 2060 5892 911 63.8 MiB 0.07 0.00 7.11975 -140.004 -7.11975 7.11975 1.04 0.000290724 0.00023068 0.0166225 0.0137583 -1 -1 -1 -1 36 3173 19 6.55708e+06 325485 612192. 2118.31 2.32 0.126605 0.108913 22750 144809 -1 2760 15 1101 3755 203186 46560 6.31024 6.31024 -137.874 -6.31024 0 0 782063. 2706.10 0.33 0.07 0.14 -1 -1 0.33 0.0219901 0.0200489 186 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 7.96 vpr 63.87 MiB -1 -1 0.47 21604 12 0.43 -1 -1 36688 -1 -1 31 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65400 29 32 275 307 1 205 92 17 17 289 -1 unnamed_device 25.1 MiB 0.58 1219 12719 3492 7061 2166 63.9 MiB 0.09 0.00 7.73186 -145.655 -7.73186 7.73186 1.14 0.000296907 0.000231767 0.0239188 0.0195325 -1 -1 -1 -1 34 3645 27 6.55708e+06 373705 585099. 2024.56 2.87 0.163236 0.141224 22462 138074 -1 2819 18 1400 4397 251853 59239 6.56852 6.56852 -134.924 -6.56852 0 0 742403. 2568.87 0.28 0.07 0.12 -1 -1 0.28 0.0200637 0.0180167 190 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 7.99 vpr 63.98 MiB -1 -1 0.30 22036 13 0.37 -1 -1 36608 -1 -1 32 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65520 32 32 302 334 1 238 96 17 17 289 -1 unnamed_device 25.1 MiB 0.60 1537 9294 2316 6044 934 64.0 MiB 0.08 0.00 7.74403 -165.695 -7.74403 7.74403 0.92 0.000324899 0.00026255 0.01984 0.0165313 -1 -1 -1 -1 28 4772 43 6.55708e+06 385760 500653. 1732.36 3.25 0.133232 0.116178 21310 115450 -1 3677 17 1667 4671 277990 64212 6.9195 6.9195 -161.915 -6.9195 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0222519 0.0200705 211 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 6.53 vpr 63.99 MiB -1 -1 0.44 21868 13 0.35 -1 -1 36892 -1 -1 30 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65528 32 32 292 324 1 216 94 17 17 289 -1 unnamed_device 25.2 MiB 0.48 1429 10318 2408 6874 1036 64.0 MiB 0.08 0.00 7.55004 -148.529 -7.55004 7.55004 0.89 0.000355121 0.000289641 0.0192998 0.0157331 -1 -1 -1 -1 30 3702 21 6.55708e+06 361650 526063. 1820.29 1.65 0.103989 0.0904622 21886 126133 -1 3032 18 1348 4431 211919 49585 6.6027 6.6027 -144.169 -6.6027 0 0 666494. 2306.21 0.28 0.08 0.11 -1 -1 0.28 0.0235718 0.0212618 199 198 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 5.98 vpr 63.45 MiB -1 -1 0.27 21368 12 0.25 -1 -1 36280 -1 -1 28 27 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64972 27 32 229 261 1 178 87 17 17 289 -1 unnamed_device 24.8 MiB 0.24 1042 7383 1841 5010 532 63.4 MiB 0.05 0.00 7.10318 -127.218 -7.10318 7.10318 1.03 0.000275522 0.000225111 0.012112 0.00999416 -1 -1 -1 -1 28 2706 23 6.55708e+06 337540 500653. 1732.36 1.46 0.0722911 0.0623042 21310 115450 -1 2392 22 1205 3250 240801 75713 6.43104 6.43104 -126.122 -6.43104 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.0201287 0.0179227 152 150 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 7.65 vpr 63.55 MiB -1 -1 0.29 21512 12 0.26 -1 -1 36352 -1 -1 23 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65080 31 32 229 261 1 185 86 17 17 289 -1 unnamed_device 24.7 MiB 0.35 1218 7457 1700 4721 1036 63.6 MiB 0.06 0.00 6.26429 -136.408 -6.26429 6.26429 1.01 0.000250634 0.00019487 0.0126202 0.0102384 -1 -1 -1 -1 36 3013 36 6.55708e+06 277265 612192. 2118.31 3.29 0.120234 0.103922 22750 144809 -1 2535 19 1046 3086 172167 39148 5.56972 5.56972 -130.236 -5.56972 0 0 782063. 2706.10 0.31 0.06 0.13 -1 -1 0.31 0.0165717 0.0148312 141 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 7.25 vpr 63.63 MiB -1 -1 0.38 21564 12 0.27 -1 -1 36580 -1 -1 26 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65160 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 24.7 MiB 0.51 1147 11573 2830 6597 2146 63.6 MiB 0.07 0.00 6.46263 -134.738 -6.46263 6.46263 0.98 0.000239849 0.000190231 0.0172368 0.0140517 -1 -1 -1 -1 28 3212 35 6.55708e+06 313430 500653. 1732.36 2.22 0.100672 0.0871263 21310 115450 -1 2789 20 1233 3134 288271 89181 5.93292 5.93292 -138.747 -5.93292 0 0 612192. 2118.31 0.28 0.12 0.11 -1 -1 0.28 0.0272491 0.0247628 150 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 6.38 vpr 63.67 MiB -1 -1 0.44 21792 13 0.29 -1 -1 36768 -1 -1 25 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65196 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 24.7 MiB 0.41 1201 7613 1790 5065 758 63.7 MiB 0.06 0.00 7.6044 -163.149 -7.6044 7.6044 1.18 0.000263148 0.000209186 0.0145516 0.012102 -1 -1 -1 -1 28 3358 45 6.55708e+06 301375 500653. 1732.36 1.55 0.105403 0.0921085 21310 115450 -1 2771 16 1141 3137 179678 42083 6.54924 6.54924 -157.958 -6.54924 0 0 612192. 2118.31 0.26 0.06 0.16 -1 -1 0.26 0.0171791 0.0154912 157 156 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 6.56 vpr 63.25 MiB -1 -1 0.36 21628 12 0.25 -1 -1 36428 -1 -1 24 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64772 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 24.8 MiB 0.52 975 6890 1484 5091 315 63.3 MiB 0.05 0.00 7.2876 -142.231 -7.2876 7.2876 1.10 0.000226144 0.000179001 0.0105934 0.00869922 -1 -1 -1 -1 28 2669 16 6.55708e+06 289320 500653. 1732.36 1.81 0.0706326 0.0616944 21310 115450 -1 2344 20 978 2637 155411 35551 6.35264 6.35264 -138.448 -6.35264 0 0 612192. 2118.31 0.29 0.06 0.11 -1 -1 0.29 0.0188124 0.0168309 132 128 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 7.22 vpr 63.11 MiB -1 -1 0.25 21300 12 0.22 -1 -1 36160 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64624 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 24.5 MiB 0.33 1124 10859 2500 7050 1309 63.1 MiB 0.07 0.00 6.80891 -152.833 -6.80891 6.80891 1.17 0.000252334 0.000202278 0.0169268 0.0138133 -1 -1 -1 -1 28 3221 50 6.55708e+06 265210 500653. 1732.36 2.60 0.113146 0.0975685 21310 115450 -1 2684 17 1091 2924 168986 40534 6.36992 6.36992 -151.051 -6.36992 0 0 612192. 2118.31 0.29 0.07 0.12 -1 -1 0.29 0.0191501 0.0173904 146 142 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 14.59 vpr 63.98 MiB -1 -1 0.38 21936 13 0.33 -1 -1 36688 -1 -1 29 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65516 32 32 283 315 1 222 93 17 17 289 -1 unnamed_device 25.2 MiB 0.38 1356 6603 1407 4412 784 64.0 MiB 0.06 0.00 8.08695 -168.334 -8.08695 8.08695 1.05 0.00034226 0.000244351 0.0150363 0.0125019 -1 -1 -1 -1 30 3491 49 6.55708e+06 349595 526063. 1820.29 9.94 0.23502 0.201614 21886 126133 -1 2767 15 1170 3517 165224 38864 7.32896 7.32896 -162.198 -7.32896 0 0 666494. 2306.21 0.26 0.06 0.12 -1 -1 0.26 0.0196493 0.017883 191 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 7.88 vpr 64.02 MiB -1 -1 0.31 21836 14 0.41 -1 -1 36600 -1 -1 30 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65560 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 25.2 MiB 0.59 1549 7123 1334 5022 767 64.0 MiB 0.06 0.00 8.74533 -181.262 -8.74533 8.74533 0.99 0.000317259 0.000252616 0.014619 0.0121365 -1 -1 -1 -1 36 3900 33 6.55708e+06 361650 612192. 2118.31 2.94 0.17112 0.147429 22750 144809 -1 3120 17 1318 3696 194391 45419 7.48896 7.48896 -166.817 -7.48896 0 0 782063. 2706.10 0.33 0.07 0.14 -1 -1 0.33 0.0244896 0.0220938 211 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 7.07 vpr 63.25 MiB -1 -1 0.41 21444 11 0.23 -1 -1 36484 -1 -1 27 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64772 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 24.7 MiB 0.31 935 9838 2446 5532 1860 63.3 MiB 0.06 0.00 6.43815 -124.278 -6.43815 6.43815 1.00 0.000261197 0.000212929 0.0149295 0.0122393 -1 -1 -1 -1 36 2455 49 6.55708e+06 325485 612192. 2118.31 2.62 0.135166 0.115464 22750 144809 -1 2074 16 1026 2882 145880 37165 5.56972 5.56972 -118.41 -5.56972 0 0 782063. 2706.10 0.32 0.05 0.14 -1 -1 0.32 0.0150333 0.0135307 147 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 8.49 vpr 64.11 MiB -1 -1 0.31 22044 12 0.36 -1 -1 36644 -1 -1 33 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65652 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 25.3 MiB 0.52 1403 9865 2364 6534 967 64.1 MiB 0.08 0.00 7.61832 -157.97 -7.61832 7.61832 0.99 0.000327782 0.000258845 0.0189479 0.0155529 -1 -1 -1 -1 34 4162 40 6.55708e+06 397815 585099. 2024.56 3.52 0.164137 0.141129 22462 138074 -1 3561 16 1531 5053 312901 69003 7.03204 7.03204 -158.379 -7.03204 0 0 742403. 2568.87 0.31 0.12 0.13 -1 -1 0.31 0.0327397 0.030075 209 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 7.55 vpr 63.92 MiB -1 -1 0.53 22016 14 0.32 -1 -1 36528 -1 -1 29 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65452 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 24.9 MiB 0.41 1439 7653 1673 5509 471 63.9 MiB 0.07 0.00 7.67629 -159.38 -7.67629 7.67629 1.17 0.000375786 0.000299016 0.0163996 0.0135423 -1 -1 -1 -1 34 3661 29 6.55708e+06 349595 585099. 2024.56 2.20 0.132415 0.112606 22462 138074 -1 3227 16 1393 4155 254677 56826 6.78964 6.78964 -153.354 -6.78964 0 0 742403. 2568.87 0.36 0.09 0.15 -1 -1 0.36 0.0251395 0.0228267 184 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 6.24 vpr 63.13 MiB -1 -1 0.34 21704 12 0.28 -1 -1 36380 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 227 259 1 178 87 17 17 289 -1 unnamed_device 24.6 MiB 0.45 1135 6807 1403 4768 636 63.1 MiB 0.05 0.00 7.47584 -167.104 -7.47584 7.47584 0.94 0.000287048 0.000235313 0.0126614 0.0105173 -1 -1 -1 -1 28 2836 44 6.55708e+06 277265 500653. 1732.36 1.68 0.098002 0.0846404 21310 115450 -1 2503 18 941 2794 164839 37617 6.2395 6.2395 -153.848 -6.2395 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.019022 0.0171419 141 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 5.47 vpr 62.76 MiB -1 -1 0.24 21152 10 0.13 -1 -1 36064 -1 -1 16 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64268 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 24.1 MiB 0.21 826 8378 2614 4173 1591 62.8 MiB 0.06 0.00 5.4738 -124.829 -5.4738 5.4738 1.12 0.000209649 0.0001723 0.0154905 0.0125672 -1 -1 -1 -1 26 2202 45 6.55708e+06 192880 477104. 1650.88 1.41 0.0669245 0.0570864 21022 109990 -1 1904 17 700 1663 136686 38924 4.68146 4.68146 -121.566 -4.68146 0 0 585099. 2024.56 0.26 0.05 0.11 -1 -1 0.26 0.0130335 0.0114922 91 87 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 6.49 vpr 63.26 MiB -1 -1 0.28 21796 13 0.25 -1 -1 36180 -1 -1 24 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64780 31 32 231 263 1 186 87 17 17 289 -1 unnamed_device 24.7 MiB 0.54 1089 7959 1662 5544 753 63.3 MiB 0.07 0.00 7.1116 -151.06 -7.1116 7.1116 1.14 0.000294447 0.000243104 0.0150854 0.012428 -1 -1 -1 -1 28 3001 25 6.55708e+06 289320 500653. 1732.36 1.26 0.0714237 0.0608185 21310 115450 -1 2590 18 1129 2937 165578 39108 6.72852 6.72852 -153.683 -6.72852 0 0 612192. 2118.31 0.33 0.07 0.16 -1 -1 0.33 0.0213484 0.0193758 149 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 7.54 vpr 63.90 MiB -1 -1 0.28 21992 13 0.36 -1 -1 36320 -1 -1 31 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65432 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 25.0 MiB 0.55 1422 6791 1371 4904 516 63.9 MiB 0.10 0.00 8.24149 -161.982 -8.24149 8.24149 1.14 0.00060419 0.000470748 0.0258149 0.0216308 -1 -1 -1 -1 28 3890 47 6.55708e+06 373705 500653. 1732.36 2.34 0.126504 0.108415 21310 115450 -1 3314 25 1965 6443 496259 165088 7.09316 7.09316 -157.694 -7.09316 0 0 612192. 2118.31 0.29 0.20 0.13 -1 -1 0.29 0.0422248 0.0383211 211 210 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 11.44 vpr 63.96 MiB -1 -1 0.55 22100 13 0.53 -1 -1 36880 -1 -1 27 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65492 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 25.2 MiB 0.61 1571 7639 1725 5480 434 64.0 MiB 0.07 0.00 7.9256 -167.417 -7.9256 7.9256 1.11 0.000302666 0.000241026 0.015997 0.013073 -1 -1 -1 -1 38 3822 44 6.55708e+06 325485 638502. 2209.35 5.72 0.159658 0.13664 23326 155178 -1 3247 15 1389 4538 246880 54439 6.98824 6.98824 -156.279 -6.98824 0 0 851065. 2944.86 0.34 0.08 0.14 -1 -1 0.34 0.0213937 0.0193678 194 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 5.29 vpr 62.74 MiB -1 -1 0.35 21192 9 0.12 -1 -1 35776 -1 -1 24 26 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64248 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 24.2 MiB 0.24 719 6668 1593 4477 598 62.7 MiB 0.04 0.00 4.68552 -94.026 -4.68552 4.68552 0.97 0.000160626 0.000126746 0.0106757 0.00881459 -1 -1 -1 -1 26 1778 19 6.55708e+06 289320 477104. 1650.88 0.97 0.0399509 0.0339544 21022 109990 -1 1584 15 597 1508 93970 21931 4.38194 4.38194 -95.8946 -4.38194 0 0 585099. 2024.56 0.29 0.04 0.12 -1 -1 0.29 0.00964556 0.0086525 87 76 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 6.81 vpr 63.88 MiB -1 -1 0.28 21764 13 0.37 -1 -1 36352 -1 -1 25 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65412 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 24.9 MiB 0.32 1351 10979 3098 6336 1545 63.9 MiB 0.09 0.00 8.17761 -160.563 -8.17761 8.17761 1.02 0.000341022 0.000277271 0.022318 0.018024 -1 -1 -1 -1 30 3690 26 6.55708e+06 301375 526063. 1820.29 2.27 0.118557 0.102785 21886 126133 -1 2989 16 1337 4047 197784 46628 7.2847 7.2847 -155.953 -7.2847 0 0 666494. 2306.21 0.30 0.07 0.12 -1 -1 0.30 0.021681 0.0196366 193 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 5.39 vpr 62.77 MiB -1 -1 0.31 21064 8 0.15 -1 -1 35996 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 154 186 1 120 79 17 17 289 -1 unnamed_device 24.3 MiB 0.28 651 6501 1478 4780 243 62.8 MiB 0.04 0.00 4.41277 -92.7441 -4.41277 4.41277 1.05 0.000152474 0.000119553 0.00758851 0.00620956 -1 -1 -1 -1 28 1783 21 6.55708e+06 180825 500653. 1732.36 1.02 0.0397696 0.0339777 21310 115450 -1 1603 14 636 1411 82033 20644 3.82214 3.82214 -95.8147 -3.82214 0 0 612192. 2118.31 0.43 0.03 0.18 -1 -1 0.43 0.00881105 0.00789061 77 60 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 7.67 vpr 63.71 MiB -1 -1 0.46 21672 15 0.36 -1 -1 36436 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65236 32 32 254 286 1 197 90 17 17 289 -1 unnamed_device 24.9 MiB 0.54 1196 7728 1698 5709 321 63.7 MiB 0.06 0.00 8.17826 -163.063 -8.17826 8.17826 1.03 0.000281908 0.000225027 0.0141935 0.0117456 -1 -1 -1 -1 34 3092 21 6.55708e+06 313430 585099. 2024.56 1.99 0.112406 0.0962547 22462 138074 -1 2774 63 2684 8832 1170555 624055 7.22924 7.22924 -156.603 -7.22924 0 0 742403. 2568.87 0.36 0.51 0.15 -1 -1 0.36 0.0766043 0.0682789 165 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 7.70 vpr 63.76 MiB -1 -1 0.46 21636 13 0.35 -1 -1 36444 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65292 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 24.9 MiB 0.37 1290 7929 1849 5090 990 63.8 MiB 0.06 0.00 7.1956 -157.385 -7.1956 7.1956 0.94 0.000271242 0.000215551 0.0145558 0.0119733 -1 -1 -1 -1 36 3101 19 6.55708e+06 313430 612192. 2118.31 2.58 0.14034 0.121549 22750 144809 -1 2628 17 1134 3256 168918 39645 6.21818 6.21818 -146.425 -6.21818 0 0 782063. 2706.10 0.43 0.06 0.25 -1 -1 0.43 0.0198523 0.0179048 168 166 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 7.56 vpr 63.81 MiB -1 -1 0.34 21696 13 0.35 -1 -1 36576 -1 -1 29 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65340 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 24.9 MiB 0.28 1302 9753 2433 6184 1136 63.8 MiB 0.07 0.00 7.90993 -159.862 -7.90993 7.90993 1.09 0.000291155 0.000232332 0.0174386 0.0142752 -1 -1 -1 -1 28 3838 36 6.55708e+06 349595 500653. 1732.36 2.42 0.116784 0.101476 21310 115450 -1 2999 21 1654 5200 269562 63388 7.1619 7.1619 -160.267 -7.1619 0 0 612192. 2118.31 0.51 0.17 0.17 -1 -1 0.51 0.0494094 0.0446926 187 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 7.57 vpr 63.51 MiB -1 -1 0.32 21384 12 0.23 -1 -1 36416 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 238 270 1 189 85 17 17 289 -1 unnamed_device 24.5 MiB 0.43 1221 7525 1804 5243 478 63.5 MiB 0.06 0.00 6.81858 -149.06 -6.81858 6.81858 0.98 0.000245827 0.000195274 0.0150349 0.0125698 -1 -1 -1 -1 34 3283 26 6.55708e+06 253155 585099. 2024.56 2.90 0.142169 0.123095 22462 138074 -1 2749 15 1023 2989 181961 41293 5.93798 5.93798 -142.769 -5.93798 0 0 742403. 2568.87 0.38 0.08 0.15 -1 -1 0.38 0.0221183 0.0202318 148 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 5.47 vpr 63.09 MiB -1 -1 0.27 21388 11 0.29 -1 -1 36396 -1 -1 23 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64608 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 24.7 MiB 0.26 989 9199 2086 6295 818 63.1 MiB 0.06 0.00 6.43069 -134.961 -6.43069 6.43069 1.01 0.00023043 0.000181779 0.014267 0.0115604 -1 -1 -1 -1 28 2534 18 6.55708e+06 277265 500653. 1732.36 1.17 0.0643297 0.0553104 21310 115450 -1 2287 14 909 2396 149590 35281 5.62118 5.62118 -131.641 -5.62118 0 0 612192. 2118.31 0.29 0.06 0.12 -1 -1 0.29 0.0187792 0.017212 131 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 6.24 vpr 63.33 MiB -1 -1 0.41 21232 11 0.33 -1 -1 36556 -1 -1 28 28 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64848 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 24.7 MiB 0.69 932 12958 3701 6997 2260 63.3 MiB 0.08 0.00 6.5982 -125.759 -6.5982 6.5982 1.01 0.000235699 0.000186793 0.0189958 0.0154454 -1 -1 -1 -1 32 2645 24 6.55708e+06 337540 554710. 1919.41 1.22 0.0722868 0.0617306 22174 131602 -1 2361 28 1350 3514 258755 74180 5.86158 5.86158 -127.686 -5.86158 0 0 701300. 2426.64 0.30 0.09 0.13 -1 -1 0.30 0.0225414 0.01988 150 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 6.84 vpr 63.87 MiB -1 -1 0.30 21540 12 0.27 -1 -1 35900 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65404 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 25.0 MiB 0.47 1332 7326 1532 5228 566 63.9 MiB 0.06 0.00 7.49746 -163.819 -7.49746 7.49746 1.15 0.000274956 0.000218242 0.013353 0.0109966 -1 -1 -1 -1 28 3385 27 6.55708e+06 313430 500653. 1732.36 2.16 0.120806 0.105062 21310 115450 -1 2821 17 1262 3325 180704 42519 6.38924 6.38924 -157.17 -6.38924 0 0 612192. 2118.31 0.33 0.07 0.12 -1 -1 0.33 0.0199235 0.0179116 180 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 6.43 vpr 63.34 MiB -1 -1 0.30 21388 12 0.27 -1 -1 36508 -1 -1 23 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64860 31 32 237 269 1 178 86 17 17 289 -1 unnamed_device 24.7 MiB 0.86 1141 5378 1025 3934 419 63.3 MiB 0.04 0.00 7.2858 -149.294 -7.2858 7.2858 1.03 0.000241739 0.000191913 0.00972697 0.00805536 -1 -1 -1 -1 28 3003 49 6.55708e+06 277265 500653. 1732.36 1.50 0.0928546 0.0809881 21310 115450 -1 2599 17 1054 2881 159276 37291 6.47024 6.47024 -145.428 -6.47024 0 0 612192. 2118.31 0.29 0.06 0.13 -1 -1 0.29 0.0188806 0.0170346 148 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 9.51 vpr 63.16 MiB -1 -1 0.46 21788 10 0.20 -1 -1 36224 -1 -1 22 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64676 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 24.7 MiB 0.19 1038 7643 2004 4942 697 63.2 MiB 0.05 0.00 5.84872 -123.373 -5.84872 5.84872 1.03 0.000233362 0.000185823 0.0127509 0.0104774 -1 -1 -1 -1 30 2394 20 6.55708e+06 265210 526063. 1820.29 4.78 0.158957 0.137033 21886 126133 -1 2056 13 741 2240 102422 24455 5.08326 5.08326 -116.766 -5.08326 0 0 666494. 2306.21 0.32 0.04 0.16 -1 -1 0.32 0.0148942 0.0134983 137 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 7.02 vpr 64.21 MiB -1 -1 0.31 22296 13 0.43 -1 -1 36608 -1 -1 31 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65748 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 25.2 MiB 0.35 1471 6791 1284 4967 540 64.2 MiB 0.08 0.00 7.9206 -163.84 -7.9206 7.9206 1.04 0.000602968 0.000488216 0.018513 0.0154932 -1 -1 -1 -1 30 3900 46 6.55708e+06 373705 526063. 1820.29 2.21 0.154139 0.13463 21886 126133 -1 2938 15 1341 4212 195757 47245 7.0789 7.0789 -157.591 -7.0789 0 0 666494. 2306.21 0.35 0.07 0.19 -1 -1 0.35 0.0238909 0.0217376 221 221 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 8.56 vpr 63.86 MiB -1 -1 0.33 22340 14 0.43 -1 -1 36768 -1 -1 28 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65392 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 24.9 MiB 0.74 1376 6509 1418 4515 576 63.9 MiB 0.06 0.00 7.46584 -163.527 -7.46584 7.46584 1.05 0.000306125 0.00024509 0.0131626 0.0109141 -1 -1 -1 -1 34 3649 24 6.55708e+06 337540 585099. 2024.56 3.19 0.162585 0.140699 22462 138074 -1 3209 19 1483 4380 252993 58147 6.61598 6.61598 -157.876 -6.61598 0 0 742403. 2568.87 0.34 0.09 0.16 -1 -1 0.34 0.02417 0.0217112 191 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 8.60 vpr 63.32 MiB -1 -1 0.27 21608 12 0.20 -1 -1 36456 -1 -1 29 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64844 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 24.7 MiB 0.29 1191 6716 1464 4657 595 63.3 MiB 0.05 0.00 7.49501 -150.663 -7.49501 7.49501 1.04 0.000244937 0.000195741 0.0120585 0.010045 -1 -1 -1 -1 36 2739 49 6.55708e+06 349595 612192. 2118.31 4.27 0.219254 0.192627 22750 144809 -1 2451 14 945 2568 146257 34226 6.3617 6.3617 -139.003 -6.3617 0 0 782063. 2706.10 0.33 0.05 0.14 -1 -1 0.33 0.0158845 0.0143928 156 150 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 9.52 vpr 64.03 MiB -1 -1 0.42 22036 12 0.51 -1 -1 36724 -1 -1 34 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65564 31 32 307 339 1 232 97 17 17 289 -1 unnamed_device 25.2 MiB 0.69 1434 7201 1575 4780 846 64.0 MiB 0.07 0.00 7.50893 -153.023 -7.50893 7.50893 1.30 0.000348128 0.000275686 0.0158615 0.0131646 -1 -1 -1 -1 28 4518 48 6.55708e+06 409870 500653. 1732.36 3.85 0.156448 0.136243 21310 115450 -1 3635 17 1650 4826 282573 65690 6.59244 6.59244 -148.359 -6.59244 0 0 612192. 2118.31 0.35 0.13 0.17 -1 -1 0.35 0.0365671 0.0333584 219 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 7.22 vpr 64.03 MiB -1 -1 0.35 22140 14 0.46 -1 -1 36268 -1 -1 29 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65564 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 25.1 MiB 0.31 1374 5474 1049 3945 480 64.0 MiB 0.05 0.00 8.16861 -161.211 -8.16861 8.16861 0.99 0.000344002 0.000279036 0.0123751 0.0103451 -1 -1 -1 -1 28 3932 23 6.55708e+06 349595 500653. 1732.36 2.37 0.125058 0.110074 21310 115450 -1 3284 18 1452 4273 253909 60691 7.1997 7.1997 -157.552 -7.1997 0 0 612192. 2118.31 0.27 0.11 0.11 -1 -1 0.27 0.0313956 0.0286599 202 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 8.85 vpr 63.87 MiB -1 -1 0.35 22104 13 0.36 -1 -1 36452 -1 -1 28 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65400 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 24.9 MiB 0.44 1387 6619 1451 4703 465 63.9 MiB 0.06 0.00 8.01146 -159.733 -8.01146 8.01146 1.06 0.000289119 0.000229453 0.0147004 0.0122703 -1 -1 -1 -1 36 3546 21 6.55708e+06 337540 612192. 2118.31 3.40 0.19051 0.166707 22750 144809 -1 3161 21 1696 5215 289539 65706 7.10844 7.10844 -156.911 -7.10844 0 0 782063. 2706.10 0.45 0.15 0.14 -1 -1 0.45 0.0373093 0.0334857 185 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 7.08 vpr 63.88 MiB -1 -1 0.32 21980 13 0.48 -1 -1 36336 -1 -1 26 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65412 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 25.0 MiB 0.54 1346 5039 929 3735 375 63.9 MiB 0.05 0.00 7.0422 -139.101 -7.0422 7.0422 1.04 0.000293115 0.00022423 0.0111869 0.00926855 -1 -1 -1 -1 30 3601 27 6.55708e+06 313430 526063. 1820.29 1.81 0.10999 0.0965168 21886 126133 -1 2974 27 1332 4238 413128 180626 6.07044 6.07044 -135.521 -6.07044 0 0 666494. 2306.21 0.28 0.13 0.13 -1 -1 0.28 0.0248838 0.0220096 179 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 6.89 vpr 63.73 MiB -1 -1 0.28 21488 12 0.31 -1 -1 36536 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65264 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 25.0 MiB 0.47 1210 7108 1610 4933 565 63.7 MiB 0.06 0.00 6.87954 -141.685 -6.87954 6.87954 1.01 0.00028588 0.000228779 0.0151678 0.0125655 -1 -1 -1 -1 28 3162 31 6.55708e+06 289320 500653. 1732.36 1.99 0.107569 0.0930282 21310 115450 -1 2792 16 1149 3239 194030 44473 6.09232 6.09232 -140.235 -6.09232 0 0 612192. 2118.31 0.32 0.10 0.17 -1 -1 0.32 0.028429 0.0254929 171 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 12.00 vpr 64.23 MiB -1 -1 0.47 22784 14 0.63 -1 -1 37308 -1 -1 31 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65776 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 25.5 MiB 0.63 1621 7439 1507 5629 303 64.2 MiB 0.07 0.00 8.33767 -177.625 -8.33767 8.33767 1.07 0.00037588 0.000301003 0.0189083 0.0157367 -1 -1 -1 -1 36 4483 50 6.55708e+06 373705 612192. 2118.31 6.11 0.218298 0.18806 22750 144809 -1 3592 17 1560 5035 287104 64510 7.16756 7.16756 -166.325 -7.16756 0 0 782063. 2706.10 0.43 0.09 0.20 -1 -1 0.43 0.0254098 0.0229666 230 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 7.67 vpr 63.59 MiB -1 -1 0.30 21312 11 0.27 -1 -1 36104 -1 -1 26 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65120 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 24.9 MiB 0.48 1199 8009 1837 5098 1074 63.6 MiB 0.06 0.00 6.67634 -139.796 -6.67634 6.67634 1.02 0.000261041 0.000208214 0.0140603 0.0115857 -1 -1 -1 -1 28 3632 25 6.55708e+06 313430 500653. 1732.36 2.76 0.0987693 0.086033 21310 115450 -1 3034 17 1219 3512 237683 52838 6.02098 6.02098 -144.744 -6.02098 0 0 612192. 2118.31 0.31 0.08 0.14 -1 -1 0.31 0.021841 0.0197936 163 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 7.46 vpr 63.77 MiB -1 -1 0.33 22048 13 0.37 -1 -1 37020 -1 -1 28 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65304 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 25.1 MiB 0.56 1233 10087 2475 7168 444 63.8 MiB 0.08 0.00 8.06207 -155.797 -8.06207 8.06207 1.04 0.00030986 0.000248658 0.0188227 0.0153372 -1 -1 -1 -1 30 3293 46 6.55708e+06 337540 526063. 1820.29 2.27 0.153042 0.132616 21886 126133 -1 2675 26 1106 3751 251091 79270 6.93376 6.93376 -147.802 -6.93376 0 0 666494. 2306.21 0.36 0.13 0.14 -1 -1 0.36 0.040024 0.0361317 193 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 8.16 vpr 64.00 MiB -1 -1 0.30 21828 12 0.36 -1 -1 36560 -1 -1 31 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65532 32 32 303 335 1 222 95 17 17 289 -1 unnamed_device 25.2 MiB 0.81 1436 6359 1286 4580 493 64.0 MiB 0.06 0.00 6.95103 -151.174 -6.95103 6.95103 1.07 0.00032749 0.000255422 0.0134952 0.011149 -1 -1 -1 -1 30 3712 38 6.55708e+06 373705 526063. 1820.29 2.61 0.108709 0.0937209 21886 126133 -1 3281 19 1479 5216 261732 58859 5.82238 5.82238 -142.785 -5.82238 0 0 666494. 2306.21 0.35 0.11 0.14 -1 -1 0.35 0.032164 0.029278 211 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 6.67 vpr 63.86 MiB -1 -1 0.34 21512 13 0.36 -1 -1 36356 -1 -1 29 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65396 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 24.9 MiB 0.35 1308 6183 1201 4740 242 63.9 MiB 0.06 0.00 7.54518 -157.312 -7.54518 7.54518 1.05 0.000290658 0.000230904 0.0142265 0.0118306 -1 -1 -1 -1 30 3205 18 6.55708e+06 349595 526063. 1820.29 1.58 0.0998344 0.0879179 21886 126133 -1 2732 14 1073 3168 149774 35292 6.66944 6.66944 -149.906 -6.66944 0 0 666494. 2306.21 0.34 0.08 0.12 -1 -1 0.34 0.0285362 0.0261881 183 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 7.89 vpr 63.83 MiB -1 -1 0.53 22160 13 0.40 -1 -1 36576 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 24.9 MiB 0.37 1388 8532 2067 5744 721 63.8 MiB 0.07 0.00 7.16941 -159.486 -7.16941 7.16941 1.15 0.000306195 0.000247378 0.0166714 0.0138173 -1 -1 -1 -1 30 3289 17 6.55708e+06 313430 526063. 1820.29 2.89 0.104298 0.0911779 21886 126133 -1 2807 26 1192 3527 316815 132051 6.22018 6.22018 -150.463 -6.22018 0 0 666494. 2306.21 0.33 0.11 0.12 -1 -1 0.33 0.0268332 0.0239634 178 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 9.05 vpr 64.18 MiB -1 -1 0.35 22008 12 0.34 -1 -1 36424 -1 -1 30 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65716 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 25.4 MiB 0.72 1391 9892 2367 6162 1363 64.2 MiB 0.11 0.00 7.40971 -158.505 -7.40971 7.40971 1.20 0.00033274 0.000254211 0.0280536 0.0228368 -1 -1 -1 -1 38 3339 27 6.55708e+06 361650 638502. 2209.35 3.12 0.177059 0.153167 23326 155178 -1 2841 15 1219 4211 197600 45318 6.53898 6.53898 -147.821 -6.53898 0 0 851065. 2944.86 0.45 0.13 0.15 -1 -1 0.45 0.0395501 0.0359756 197 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 9.36 vpr 64.16 MiB -1 -1 0.33 22284 13 0.39 -1 -1 36692 -1 -1 31 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65696 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 25.3 MiB 0.56 1496 6791 1324 4848 619 64.2 MiB 0.06 0.00 7.58188 -163.597 -7.58188 7.58188 1.12 0.000325483 0.000258459 0.0144872 0.0119711 -1 -1 -1 -1 36 3856 17 6.55708e+06 373705 612192. 2118.31 4.21 0.161359 0.138751 22750 144809 -1 3244 19 1411 4282 222301 51731 6.62764 6.62764 -150.995 -6.62764 0 0 782063. 2706.10 0.36 0.08 0.14 -1 -1 0.36 0.0246051 0.0221588 212 212 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 8.59 vpr 63.81 MiB -1 -1 0.48 21768 14 0.45 -1 -1 36532 -1 -1 25 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65344 32 32 262 294 1 193 89 17 17 289 -1 unnamed_device 25.0 MiB 0.48 1153 11969 3180 6354 2435 63.8 MiB 0.08 0.00 8.31223 -163.645 -8.31223 8.31223 1.07 0.00027779 0.000219986 0.0208208 0.0169004 -1 -1 -1 -1 34 3446 43 6.55708e+06 301375 585099. 2024.56 3.10 0.151856 0.12947 22462 138074 -1 2795 19 1302 4041 241474 58208 7.7191 7.7191 -164.117 -7.7191 0 0 742403. 2568.87 0.33 0.09 0.14 -1 -1 0.33 0.0243486 0.0219944 168 168 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 7.68 vpr 64.02 MiB -1 -1 0.31 21720 13 0.49 -1 -1 37008 -1 -1 31 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65556 32 32 291 323 1 224 95 17 17 289 -1 unnamed_device 25.2 MiB 0.68 1425 8519 1811 6143 565 64.0 MiB 0.08 0.00 8.29301 -163.281 -8.29301 8.29301 1.10 0.000342566 0.000268774 0.0191135 0.0158028 -1 -1 -1 -1 30 3639 21 6.55708e+06 373705 526063. 1820.29 2.25 0.130722 0.113841 21886 126133 -1 3048 15 1297 3920 193839 45269 7.32896 7.32896 -156.234 -7.32896 0 0 666494. 2306.21 0.35 0.08 0.20 -1 -1 0.35 0.0251187 0.0228271 198 197 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 14.75 vpr 63.98 MiB -1 -1 0.33 22056 13 0.53 -1 -1 36440 -1 -1 31 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65512 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 25.1 MiB 0.41 1386 9679 2058 7206 415 64.0 MiB 0.13 0.00 7.87649 -159.745 -7.87649 7.87649 1.19 0.000553808 0.00044557 0.0311377 0.025509 -1 -1 -1 -1 34 4121 50 6.55708e+06 373705 585099. 2024.56 9.15 0.283403 0.240375 22462 138074 -1 3226 30 1557 4685 401962 139749 6.6811 6.6811 -152.747 -6.6811 0 0 742403. 2568.87 0.31 0.13 0.13 -1 -1 0.31 0.0310365 0.027344 213 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 7.33 vpr 64.01 MiB -1 -1 0.57 22032 12 0.42 -1 -1 36720 -1 -1 33 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65548 32 32 308 340 1 237 97 17 17 289 -1 unnamed_device 25.2 MiB 0.62 1456 8755 1875 6172 708 64.0 MiB 0.08 0.00 7.82047 -162.193 -7.82047 7.82047 1.03 0.000379155 0.000306418 0.0179809 0.0148268 -1 -1 -1 -1 30 3744 18 6.55708e+06 397815 526063. 1820.29 1.41 0.114431 0.100473 21886 126133 -1 3061 15 1373 3745 174001 41817 7.0025 7.0025 -157.196 -7.0025 0 0 666494. 2306.21 0.32 0.08 0.13 -1 -1 0.32 0.026044 0.0236825 216 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 5.89 vpr 63.24 MiB -1 -1 0.26 21504 11 0.19 -1 -1 36328 -1 -1 19 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 216 248 1 160 83 17 17 289 -1 unnamed_device 24.8 MiB 0.26 1004 9263 2865 4455 1943 63.2 MiB 0.08 0.00 6.22709 -128.104 -6.22709 6.22709 1.13 0.00027297 0.000225973 0.0209142 0.0170426 -1 -1 -1 -1 30 2463 15 6.55708e+06 229045 526063. 1820.29 1.18 0.0711666 0.0605498 21886 126133 -1 2091 18 889 2380 117579 28327 5.24832 5.24832 -126.347 -5.24832 0 0 666494. 2306.21 0.34 0.06 0.13 -1 -1 0.34 0.0194267 0.0175459 126 122 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 8.01 vpr 63.78 MiB -1 -1 0.36 21560 13 0.27 -1 -1 36108 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65312 32 32 254 286 1 195 88 17 17 289 -1 unnamed_device 24.9 MiB 0.53 1233 5938 1147 4519 272 63.8 MiB 0.05 0.00 7.61227 -159.82 -7.61227 7.61227 1.05 0.000269287 0.000211203 0.0117215 0.00978561 -1 -1 -1 -1 26 3709 42 6.55708e+06 289320 477104. 1650.88 2.99 0.105336 0.0916225 21022 109990 -1 3051 20 1257 3519 238150 53555 6.82624 6.82624 -156.727 -6.82624 0 0 585099. 2024.56 0.36 0.09 0.18 -1 -1 0.36 0.0250109 0.0226526 161 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 10.44 vpr 64.40 MiB -1 -1 0.52 22560 14 0.58 -1 -1 36960 -1 -1 34 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65944 32 32 338 370 1 251 98 17 17 289 -1 unnamed_device 25.6 MiB 0.67 1522 6848 1188 5384 276 64.4 MiB 0.07 0.00 8.62537 -170.671 -8.62537 8.62537 1.19 0.000391248 0.000298042 0.0189603 0.0159197 -1 -1 -1 -1 28 4874 46 6.55708e+06 409870 500653. 1732.36 4.22 0.172061 0.14835 21310 115450 -1 4049 29 2764 9243 620816 154672 7.72935 7.72935 -170.936 -7.72935 0 0 612192. 2118.31 0.28 0.21 0.17 -1 -1 0.28 0.0515047 0.0464187 244 244 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 15.48 vpr 63.96 MiB -1 -1 0.35 21856 13 0.40 -1 -1 36580 -1 -1 27 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65500 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 25.0 MiB 0.67 1384 6823 1472 4881 470 64.0 MiB 0.06 0.00 7.83243 -170.302 -7.83243 7.83243 1.08 0.000301769 0.000242584 0.0137958 0.0115028 -1 -1 -1 -1 38 3179 15 6.55708e+06 325485 638502. 2209.35 10.04 0.256719 0.221722 23326 155178 -1 2732 14 1108 3287 161533 36680 6.7601 6.7601 -155.279 -6.7601 0 0 851065. 2944.86 0.40 0.06 0.23 -1 -1 0.40 0.0222601 0.0203769 178 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 6.48 vpr 62.68 MiB -1 -1 0.43 21432 11 0.24 -1 -1 36460 -1 -1 23 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64180 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 24.1 MiB 0.24 1068 5665 1228 3746 691 62.7 MiB 0.05 0.00 6.82549 -140.791 -6.82549 6.82549 1.45 0.000234853 0.000186801 0.0113085 0.00938019 -1 -1 -1 -1 28 2758 48 6.55708e+06 277265 500653. 1732.36 1.66 0.0881621 0.0761536 21310 115450 -1 2223 15 863 2453 136374 32055 6.02098 6.02098 -137.567 -6.02098 0 0 612192. 2118.31 0.28 0.06 0.11 -1 -1 0.28 0.019777 0.0180366 139 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 8.48 vpr 64.57 MiB -1 -1 0.35 22588 15 0.77 -1 -1 36668 -1 -1 34 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66124 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 25.8 MiB 0.40 1739 8198 1861 5696 641 64.6 MiB 0.08 0.00 9.48099 -183.773 -9.48099 9.48099 1.15 0.000420696 0.000341923 0.0200125 0.0166597 -1 -1 -1 -1 30 4766 43 6.55708e+06 409870 526063. 1820.29 2.95 0.139597 0.120755 21886 126133 -1 3758 20 2315 7493 367102 83035 8.17861 8.17861 -174.69 -8.17861 0 0 666494. 2306.21 0.31 0.12 0.18 -1 -1 0.31 0.0357776 0.032214 257 257 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 7.95 vpr 64.02 MiB -1 -1 0.30 22104 13 0.41 -1 -1 36876 -1 -1 27 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65556 32 32 297 329 1 216 91 17 17 289 -1 unnamed_device 25.2 MiB 0.31 1402 8047 1818 5614 615 64.0 MiB 0.07 0.00 8.34252 -168.918 -8.34252 8.34252 1.31 0.000343559 0.000278894 0.0167348 0.0137852 -1 -1 -1 -1 28 3745 33 6.55708e+06 325485 500653. 1732.36 2.89 0.136851 0.118396 21310 115450 -1 3305 32 1424 4263 490479 193477 7.13236 7.13236 -164.015 -7.13236 0 0 612192. 2118.31 0.30 0.18 0.13 -1 -1 0.30 0.0422606 0.0377303 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 7.09 vpr 63.24 MiB -1 -1 0.23 21496 11 0.17 -1 -1 36560 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 24.7 MiB 0.42 1123 7079 1610 4999 470 63.2 MiB 0.06 0.00 6.21723 -134.883 -6.21723 6.21723 1.00 0.000266795 0.000208289 0.0152409 0.0125642 -1 -1 -1 -1 28 3226 47 6.55708e+06 265210 500653. 1732.36 2.61 0.0953863 0.0824967 21310 115450 -1 2683 25 1169 3414 305780 96470 5.40772 5.40772 -133.925 -5.40772 0 0 612192. 2118.31 0.30 0.10 0.17 -1 -1 0.30 0.0218762 0.0194767 141 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 8.14 vpr 64.01 MiB -1 -1 0.48 22000 12 0.52 -1 -1 35708 -1 -1 30 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65548 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 25.1 MiB 0.70 1442 7336 1475 5411 450 64.0 MiB 0.07 0.00 7.74548 -154.851 -7.74548 7.74548 1.02 0.000479856 0.000388726 0.0192555 0.0159405 -1 -1 -1 -1 30 3768 28 6.55708e+06 361650 526063. 1820.29 2.37 0.184483 0.164199 21886 126133 -1 2990 17 1354 4447 206420 49162 6.6811 6.6811 -148.12 -6.6811 0 0 666494. 2306.21 0.32 0.07 0.13 -1 -1 0.32 0.0239338 0.0216369 213 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 6.36 vpr 63.71 MiB -1 -1 0.26 21316 12 0.27 -1 -1 36216 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65244 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 24.7 MiB 0.58 1234 7728 1773 5535 420 63.7 MiB 0.06 0.00 7.26258 -154.513 -7.26258 7.26258 1.03 0.000274834 0.000210487 0.0135562 0.0110921 -1 -1 -1 -1 30 3076 20 6.55708e+06 313430 526063. 1820.29 1.56 0.0980878 0.0855943 21886 126133 -1 2578 16 1075 2998 146869 34828 6.50944 6.50944 -149.849 -6.50944 0 0 666494. 2306.21 0.32 0.06 0.16 -1 -1 0.32 0.0199348 0.0180859 153 149 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 5.42 vpr 63.16 MiB -1 -1 0.32 21716 12 0.23 -1 -1 36112 -1 -1 21 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64676 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 24.6 MiB 0.26 964 11603 3147 6112 2344 63.2 MiB 0.07 0.00 6.97512 -139.748 -6.97512 6.97512 0.95 0.000247819 0.000185839 0.0185906 0.0149974 -1 -1 -1 -1 30 2394 29 6.55708e+06 253155 526063. 1820.29 1.13 0.0793451 0.0678313 21886 126133 -1 1946 17 802 2468 113048 27165 6.11164 6.11164 -132.147 -6.11164 0 0 666494. 2306.21 0.31 0.05 0.13 -1 -1 0.31 0.0157292 0.014103 140 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 7.08 vpr 64.21 MiB -1 -1 0.56 22008 12 0.37 -1 -1 36384 -1 -1 31 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65748 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 25.2 MiB 0.38 1335 8579 2026 5633 920 64.2 MiB 0.07 0.00 6.72746 -129.302 -6.72746 6.72746 1.04 0.000304165 0.000242082 0.0166336 0.013699 -1 -1 -1 -1 30 3317 43 6.55708e+06 373705 526063. 1820.29 2.13 0.14448 0.126088 21886 126133 -1 2826 18 1244 4120 188907 44459 6.10198 6.10198 -127.139 -6.10198 0 0 666494. 2306.21 0.33 0.08 0.12 -1 -1 0.33 0.0282424 0.0256626 190 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 7.59 vpr 64.34 MiB -1 -1 0.30 22052 13 0.45 -1 -1 36376 -1 -1 33 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65888 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 25.5 MiB 0.94 1542 6535 1180 4663 692 64.3 MiB 0.06 0.00 8.33266 -174.188 -8.33266 8.33266 0.90 0.000364971 0.000262051 0.0136494 0.0113288 -1 -1 -1 -1 30 4033 40 6.55708e+06 397815 526063. 1820.29 2.25 0.146039 0.127498 21886 126133 -1 3267 24 1656 4611 309598 104826 7.16956 7.16956 -164.247 -7.16956 0 0 666494. 2306.21 0.37 0.14 0.13 -1 -1 0.37 0.0375186 0.0333973 238 236 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 10.97 vpr 63.93 MiB -1 -1 0.51 22048 12 0.30 -1 -1 36396 -1 -1 29 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65468 32 32 290 322 1 219 93 17 17 289 -1 unnamed_device 24.9 MiB 0.73 1337 14373 3637 8257 2479 63.9 MiB 0.17 0.00 7.56736 -150.416 -7.56736 7.56736 1.05 0.00058432 0.000474399 0.0470954 0.0389889 -1 -1 -1 -1 36 3622 43 6.55708e+06 349595 612192. 2118.31 5.17 0.239123 0.206787 22750 144809 -1 3031 29 1892 6473 553405 193941 6.55324 6.55324 -142.68 -6.55324 0 0 782063. 2706.10 0.35 0.19 0.14 -1 -1 0.35 0.036926 0.0326589 198 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 6.17 vpr 63.10 MiB -1 -1 0.26 21560 12 0.18 -1 -1 36608 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 24.7 MiB 0.72 1128 7404 1881 4703 820 63.1 MiB 0.08 0.00 6.63325 -140.069 -6.63325 6.63325 1.00 0.000574631 0.000482158 0.0172144 0.014121 -1 -1 -1 -1 30 2675 25 6.55708e+06 241100 526063. 1820.29 1.32 0.074149 0.0634548 21886 126133 -1 2183 16 874 2494 118684 28424 5.84792 5.84792 -135.25 -5.84792 0 0 666494. 2306.21 0.33 0.05 0.16 -1 -1 0.33 0.0160075 0.0144581 126 120 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 8.05 vpr 63.76 MiB -1 -1 0.34 21716 12 0.29 -1 -1 36640 -1 -1 25 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65288 31 32 244 276 1 182 88 17 17 289 -1 unnamed_device 24.8 MiB 0.41 1170 7498 1759 4547 1192 63.8 MiB 0.06 0.00 7.01252 -142.578 -7.01252 7.01252 1.09 0.000269444 0.000204158 0.0129803 0.0105452 -1 -1 -1 -1 36 2969 23 6.55708e+06 301375 612192. 2118.31 2.91 0.128448 0.110932 22750 144809 -1 2577 16 1162 3661 196645 45570 5.97978 5.97978 -135.917 -5.97978 0 0 782063. 2706.10 0.38 0.07 0.15 -1 -1 0.38 0.0205192 0.018568 154 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 8.62 vpr 63.96 MiB -1 -1 0.33 21796 11 0.24 -1 -1 36584 -1 -1 30 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65496 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 25.0 MiB 0.20 1298 4853 867 3420 566 64.0 MiB 0.05 0.00 6.85992 -133.534 -6.85992 6.85992 1.18 0.000375027 0.000301931 0.0109203 0.0091024 -1 -1 -1 -1 38 3068 19 6.55708e+06 361650 638502. 2209.35 3.44 0.203471 0.1789 23326 155178 -1 2722 17 1166 3960 199201 45763 5.98178 5.98178 -129.207 -5.98178 0 0 851065. 2944.86 0.45 0.08 0.16 -1 -1 0.45 0.0233817 0.0210981 190 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 7.02 vpr 63.71 MiB -1 -1 0.29 21616 11 0.33 -1 -1 36592 -1 -1 27 28 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65244 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 25.0 MiB 0.18 1170 7767 1783 5428 556 63.7 MiB 0.06 0.00 6.49677 -121.518 -6.49677 6.49677 0.99 0.000254383 0.000203012 0.013431 0.0110738 -1 -1 -1 -1 28 3308 46 6.55708e+06 325485 500653. 1732.36 2.66 0.120627 0.104523 21310 115450 -1 2742 16 1154 3672 238825 52497 5.69192 5.69192 -121.797 -5.69192 0 0 612192. 2118.31 0.30 0.10 0.11 -1 -1 0.30 0.0269852 0.0247211 172 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 6.77 vpr 63.49 MiB -1 -1 0.49 21696 13 0.39 -1 -1 36304 -1 -1 26 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65012 30 32 235 267 1 176 88 17 17 289 -1 unnamed_device 24.5 MiB 0.40 1097 11593 3515 6131 1947 63.5 MiB 0.07 0.00 7.49937 -144.316 -7.49937 7.49937 1.02 0.000246737 0.000196271 0.0181933 0.0148994 -1 -1 -1 -1 28 3200 50 6.55708e+06 313430 500653. 1732.36 1.68 0.100702 0.0861554 21310 115450 -1 2553 20 1158 3375 193107 45194 6.78764 6.78764 -141.625 -6.78764 0 0 612192. 2118.31 0.29 0.09 0.17 -1 -1 0.29 0.0247773 0.0224881 148 147 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 10.32 vpr 63.95 MiB -1 -1 0.36 21632 12 0.26 -1 -1 36496 -1 -1 28 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65480 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 25.1 MiB 0.49 1348 8993 2218 6004 771 63.9 MiB 0.09 0.00 7.3262 -158.713 -7.3262 7.3262 1.38 0.000271997 0.000214784 0.0229903 0.0189996 -1 -1 -1 -1 28 3637 33 6.55708e+06 337540 500653. 1732.36 4.40 0.175367 0.154502 21310 115450 -1 3055 22 1532 4483 326671 87119 6.71264 6.71264 -157.26 -6.71264 0 0 612192. 2118.31 0.28 0.12 0.12 -1 -1 0.28 0.0300453 0.0271314 174 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 7.69 vpr 63.74 MiB -1 -1 0.36 21748 13 0.37 -1 -1 36436 -1 -1 27 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65268 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 24.8 MiB 0.37 1215 5718 1125 4239 354 63.7 MiB 0.05 0.00 8.06933 -153.277 -8.06933 8.06933 1.04 0.00029419 0.000234476 0.0119561 0.00991406 -1 -1 -1 -1 26 3789 32 6.55708e+06 325485 477104. 1650.88 2.69 0.113174 0.09835 21022 109990 -1 3184 22 1707 5165 324877 74151 7.0025 7.0025 -157.365 -7.0025 0 0 585099. 2024.56 0.35 0.11 0.11 -1 -1 0.35 0.0292151 0.0260766 187 187 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 7.43 vpr 63.68 MiB -1 -1 0.36 22168 14 0.33 -1 -1 37040 -1 -1 28 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65204 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 24.9 MiB 0.37 1301 9407 2176 6085 1146 63.7 MiB 0.07 0.00 8.35433 -163.826 -8.35433 8.35433 0.95 0.000312466 0.000249979 0.0182311 0.0149086 -1 -1 -1 -1 28 3805 35 6.55708e+06 337540 500653. 1732.36 2.76 0.127825 0.111158 21310 115450 -1 3098 17 1364 3824 225167 51687 7.18182 7.18182 -157.405 -7.18182 0 0 612192. 2118.31 0.29 0.08 0.12 -1 -1 0.29 0.0227426 0.0205433 196 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 8.34 vpr 63.77 MiB -1 -1 0.32 22256 14 0.33 -1 -1 36508 -1 -1 25 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65304 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 24.9 MiB 0.34 1247 10385 2379 5942 2064 63.8 MiB 0.12 0.00 7.58177 -145.01 -7.58177 7.58177 0.99 0.000620073 0.000492683 0.0296225 0.024046 -1 -1 -1 -1 34 3317 49 6.55708e+06 301375 585099. 2024.56 3.63 0.203117 0.175112 22462 138074 -1 2731 17 1199 3748 206549 48044 6.70864 6.70864 -142.763 -6.70864 0 0 742403. 2568.87 0.31 0.07 0.13 -1 -1 0.31 0.0189851 0.0169862 175 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 7.54 vpr 63.98 MiB -1 -1 0.63 22476 13 0.49 -1 -1 36696 -1 -1 29 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65520 32 32 296 328 1 222 93 17 17 289 -1 unnamed_device 25.2 MiB 0.40 1403 8073 1958 5278 837 64.0 MiB 0.06 0.00 7.90532 -157.651 -7.90532 7.90532 1.09 0.00034449 0.000269222 0.0162413 0.0133455 -1 -1 -1 -1 28 3887 23 6.55708e+06 349595 500653. 1732.36 1.92 0.137826 0.120636 21310 115450 -1 3499 21 1898 5430 340594 75352 6.85016 6.85016 -153.21 -6.85016 0 0 612192. 2118.31 0.28 0.12 0.19 -1 -1 0.28 0.0314668 0.0283032 205 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 7.41 vpr 63.64 MiB -1 -1 0.30 21404 13 0.27 -1 -1 36320 -1 -1 24 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65172 30 32 234 266 1 185 86 17 17 289 -1 unnamed_device 24.7 MiB 0.43 1086 8024 1919 5617 488 63.6 MiB 0.06 0.00 7.66268 -153.181 -7.66268 7.66268 1.06 0.000247076 0.000197628 0.0134982 0.011091 -1 -1 -1 -1 26 3172 28 6.55708e+06 289320 477104. 1650.88 2.79 0.115414 0.100493 21022 109990 -1 2671 15 1123 2693 171006 39961 6.94644 6.94644 -155.213 -6.94644 0 0 585099. 2024.56 0.27 0.06 0.11 -1 -1 0.27 0.0155171 0.0139955 146 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 7.33 vpr 63.95 MiB -1 -1 0.32 22272 13 0.56 -1 -1 36416 -1 -1 32 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65480 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 25.1 MiB 0.42 1416 7336 1414 5551 371 63.9 MiB 0.06 0.00 8.07413 -161.91 -8.07413 8.07413 1.22 0.000318997 0.000253261 0.0149649 0.0123731 -1 -1 -1 -1 30 3702 28 6.55708e+06 385760 526063. 1820.29 2.32 0.158035 0.138224 21886 126133 -1 3102 18 1510 4211 202277 48691 6.9195 6.9195 -154.528 -6.9195 0 0 666494. 2306.21 0.29 0.08 0.12 -1 -1 0.29 0.0270539 0.0244973 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 12.62 vpr 64.09 MiB -1 -1 0.52 21872 14 0.46 -1 -1 36052 -1 -1 25 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65628 32 32 274 306 1 211 89 17 17 289 -1 unnamed_device 25.1 MiB 0.62 1220 7217 1622 4486 1109 64.1 MiB 0.06 0.00 8.04044 -163.742 -8.04044 8.04044 1.04 0.000312344 0.000247978 0.0147579 0.012206 -1 -1 -1 -1 34 4022 46 6.55708e+06 301375 585099. 2024.56 6.99 0.293056 0.261082 22462 138074 -1 3088 25 1449 4479 326046 95793 7.01016 7.01016 -159.344 -7.01016 0 0 742403. 2568.87 0.32 0.11 0.18 -1 -1 0.32 0.0282876 0.0251851 180 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 23.81 vpr 63.56 MiB -1 -1 0.37 22048 13 0.33 -1 -1 36524 -1 -1 27 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65088 31 32 266 298 1 204 90 17 17 289 -1 unnamed_device 24.7 MiB 0.45 1270 6321 1361 4444 516 63.6 MiB 0.06 0.00 7.62087 -154.066 -7.62087 7.62087 1.28 0.000282379 0.000224061 0.0163451 0.0137881 -1 -1 -1 -1 30 3427 36 6.55708e+06 325485 526063. 1820.29 17.80 0.260293 0.222441 21886 126133 -1 2838 19 1303 3853 189669 43230 6.70864 6.70864 -146.397 -6.70864 0 0 666494. 2306.21 0.49 0.12 0.19 -1 -1 0.49 0.0373701 0.0333983 177 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 8.32 vpr 63.88 MiB -1 -1 0.37 21928 13 0.34 -1 -1 36348 -1 -1 29 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65416 30 32 266 298 1 204 91 17 17 289 -1 unnamed_device 25.0 MiB 0.66 1241 13555 3513 7863 2179 63.9 MiB 0.10 0.00 7.54758 -141.687 -7.54758 7.54758 1.37 0.000465902 0.000373606 0.024024 0.0194339 -1 -1 -1 -1 32 3611 29 6.55708e+06 349595 554710. 1919.41 2.01 0.150238 0.131481 22174 131602 -1 3200 47 1491 4937 948393 518556 6.4805 6.4805 -139.181 -6.4805 0 0 701300. 2426.64 0.29 0.30 0.14 -1 -1 0.29 0.0404682 0.0353864 179 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 7.32 vpr 64.16 MiB -1 -1 0.35 21960 14 0.45 -1 -1 36568 -1 -1 37 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65704 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 25.2 MiB 0.65 1428 8326 1796 5639 891 64.2 MiB 0.07 0.00 8.11569 -168.134 -8.11569 8.11569 1.27 0.000343889 0.000277343 0.0162805 0.0134746 -1 -1 -1 -1 30 3796 30 6.55708e+06 446035 526063. 1820.29 1.82 0.145159 0.126943 21886 126133 -1 3091 17 1489 4196 196271 48070 7.14564 7.14564 -161.227 -7.14564 0 0 666494. 2306.21 0.36 0.08 0.19 -1 -1 0.36 0.027483 0.0250524 218 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 8.00 vpr 63.98 MiB -1 -1 0.35 21916 11 0.45 -1 -1 36572 -1 -1 29 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65516 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 25.1 MiB 0.78 1190 5115 1015 3819 281 64.0 MiB 0.05 0.00 6.99314 -135.121 -6.99314 6.99314 1.18 0.000323627 0.000251739 0.0133609 0.0114082 -1 -1 -1 -1 34 3343 34 6.55708e+06 349595 585099. 2024.56 2.36 0.166199 0.146634 22462 138074 -1 2706 15 1147 3360 184930 43602 6.17838 6.17838 -131.048 -6.17838 0 0 742403. 2568.87 0.34 0.08 0.23 -1 -1 0.34 0.0239982 0.0216039 177 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 9.53 vpr 63.29 MiB -1 -1 0.30 21508 13 0.25 -1 -1 36332 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 24.8 MiB 0.48 1158 7108 1605 4699 804 63.3 MiB 0.09 0.00 6.94929 -157.648 -6.94929 6.94929 1.50 0.00123626 0.00111703 0.0206234 0.0172906 -1 -1 -1 -1 26 3238 27 6.55708e+06 289320 477104. 1650.88 3.44 0.111373 0.0966414 21022 109990 -1 2815 19 1171 2928 203752 48160 6.41938 6.41938 -159.247 -6.41938 0 0 585099. 2024.56 0.45 0.14 0.17 -1 -1 0.45 0.0409419 0.0373618 138 128 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 7.92 vpr 63.79 MiB -1 -1 0.37 22004 14 0.45 -1 -1 36596 -1 -1 28 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65316 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 24.9 MiB 0.54 1272 7751 1792 5305 654 63.8 MiB 0.06 0.00 8.06558 -167.325 -8.06558 8.06558 0.93 0.000291491 0.000224438 0.0139776 0.011378 -1 -1 -1 -1 46 2774 14 6.55708e+06 337540 782063. 2706.10 2.78 0.142685 0.123589 24766 183262 -1 2551 15 1009 3223 153758 35156 6.9985 6.9985 -156.059 -6.9985 0 0 958460. 3316.47 0.52 0.06 0.20 -1 -1 0.52 0.0221656 0.0201275 179 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 7.16 vpr 64.38 MiB -1 -1 0.31 22584 15 0.54 -1 -1 36416 -1 -1 34 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65928 32 32 334 366 1 261 98 17 17 289 -1 unnamed_device 25.6 MiB 0.45 1649 12023 2996 7449 1578 64.4 MiB 0.10 0.00 8.8435 -186.31 -8.8435 8.8435 0.88 0.00043362 0.000352178 0.0244901 0.0199735 -1 -1 -1 -1 30 4536 26 6.55708e+06 409870 526063. 1820.29 2.43 0.143548 0.124694 21886 126133 -1 3566 20 1759 4992 238655 56450 7.96775 7.96775 -180.251 -7.96775 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0289584 0.0261148 241 240 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 14.86 vpr 63.21 MiB -1 -1 0.42 21460 11 0.32 -1 -1 36312 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 220 252 1 156 85 17 17 289 -1 unnamed_device 24.7 MiB 0.55 923 12361 3928 6475 1958 63.2 MiB 0.12 0.00 6.38603 -130.972 -6.38603 6.38603 1.49 0.000373252 0.000293015 0.0309571 0.0248157 -1 -1 -1 -1 30 2410 35 6.55708e+06 253155 526063. 1820.29 9.52 0.232318 0.202112 21886 126133 -1 1929 14 834 2311 107682 26781 5.66238 5.66238 -125.579 -5.66238 0 0 666494. 2306.21 0.32 0.05 0.13 -1 -1 0.32 0.0148371 0.0134326 129 126 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 6.33 vpr 63.66 MiB -1 -1 0.26 21508 12 0.24 -1 -1 36368 -1 -1 27 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65184 31 32 244 276 1 193 90 17 17 289 -1 unnamed_device 24.7 MiB 0.42 1230 7326 1593 5044 689 63.7 MiB 0.06 0.00 6.98403 -147.666 -6.98403 6.98403 0.94 0.000264238 0.000204888 0.0135422 0.0112162 -1 -1 -1 -1 28 3516 50 6.55708e+06 325485 500653. 1732.36 1.93 0.0962945 0.0833929 21310 115450 -1 2955 19 1303 3623 214874 49641 6.20332 6.20332 -147.361 -6.20332 0 0 612192. 2118.31 0.26 0.06 0.16 -1 -1 0.26 0.0166581 0.0148473 157 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 7.90 vpr 64.07 MiB -1 -1 0.53 22080 12 0.57 -1 -1 36520 -1 -1 32 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65612 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 25.2 MiB 0.67 1497 8199 1839 5577 783 64.1 MiB 0.07 0.00 7.33061 -158.742 -7.33061 7.33061 0.92 0.000329744 0.000251764 0.0165317 0.0135197 -1 -1 -1 -1 30 4080 31 6.55708e+06 385760 526063. 1820.29 2.28 0.117433 0.101101 21886 126133 -1 3305 18 1524 4393 219896 50717 6.2807 6.2807 -150.986 -6.2807 0 0 666494. 2306.21 0.33 0.11 0.21 -1 -1 0.33 0.0347955 0.0316912 213 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 22.86 vpr 63.83 MiB -1 -1 0.65 22076 12 0.46 -1 -1 36564 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65360 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 24.9 MiB 0.67 1401 7125 1520 5090 515 63.8 MiB 0.07 0.00 7.67704 -159.687 -7.67704 7.67704 0.96 0.00033092 0.000269365 0.01577 0.0130975 -1 -1 -1 -1 30 3749 31 6.55708e+06 313430 526063. 1820.29 17.39 0.322503 0.279585 21886 126133 -1 3123 20 1306 4108 219525 50138 6.6811 6.6811 -156.261 -6.6811 0 0 666494. 2306.21 0.29 0.08 0.16 -1 -1 0.29 0.0229049 0.0205757 181 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 13.11 vpr 64.35 MiB -1 -1 0.32 22524 14 0.57 -1 -1 36684 -1 -1 31 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65896 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 25.5 MiB 0.78 1702 7655 1606 5611 438 64.4 MiB 0.07 0.00 8.96309 -178.872 -8.96309 8.96309 1.20 0.000353802 0.000280664 0.0181296 0.0148058 -1 -1 -1 -1 36 4446 40 6.55708e+06 373705 612192. 2118.31 7.55 0.291542 0.255471 22750 144809 -1 3774 26 1687 5548 348015 84215 7.85922 7.85922 -171.104 -7.85922 0 0 782063. 2706.10 0.34 0.11 0.14 -1 -1 0.34 0.0321525 0.0285404 234 233 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 8.30 vpr 63.56 MiB -1 -1 0.28 21552 12 0.27 -1 -1 36072 -1 -1 25 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65084 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 24.8 MiB 0.61 1287 7575 1714 5483 378 63.6 MiB 0.06 0.00 7.47384 -141.76 -7.47384 7.47384 1.01 0.00029029 0.000233773 0.0141214 0.0116062 -1 -1 -1 -1 28 4066 44 6.55708e+06 301375 500653. 1732.36 3.83 0.098146 0.0841362 21310 115450 -1 3020 16 1151 3483 224807 49833 6.70864 6.70864 -142.016 -6.70864 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0192888 0.0172463 160 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 9.00 vpr 63.00 MiB -1 -1 0.35 21464 11 0.34 -1 -1 36160 -1 -1 26 27 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64516 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 24.5 MiB 0.58 931 11989 3061 7291 1637 63.0 MiB 0.12 0.00 6.80335 -123.262 -6.80335 6.80335 1.30 0.000383252 0.000304717 0.0291476 0.0236022 -1 -1 -1 -1 26 2783 41 6.55708e+06 313430 477104. 1650.88 2.73 0.156262 0.135844 21022 109990 -1 2384 18 1199 3380 194509 48070 6.03064 6.03064 -121.748 -6.03064 0 0 585099. 2024.56 0.42 0.06 0.19 -1 -1 0.42 0.0165106 0.0147778 140 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 13.25 vpr 64.55 MiB -1 -1 0.51 22628 13 0.55 -1 -1 36352 -1 -1 40 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66100 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 25.7 MiB 0.60 1770 11816 2824 7429 1563 64.6 MiB 0.16 0.00 8.12254 -164.758 -8.12254 8.12254 0.97 0.000841686 0.000693115 0.0412773 0.0340734 -1 -1 -1 -1 38 4857 49 6.55708e+06 482200 638502. 2209.35 7.76 0.317286 0.272889 23326 155178 -1 3570 18 1882 6131 281111 68584 7.03004 7.03004 -154.314 -7.03004 0 0 851065. 2944.86 0.45 0.15 0.15 -1 -1 0.45 0.0451871 0.0412931 286 286 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 6.42 vpr 64.07 MiB -1 -1 0.48 22008 14 0.54 -1 -1 36156 -1 -1 28 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65604 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 25.1 MiB 0.30 1247 12127 2952 7653 1522 64.1 MiB 0.09 0.00 7.99624 -158.799 -7.99624 7.99624 1.02 0.000288715 0.000229483 0.0221401 0.0180026 -1 -1 -1 -1 30 3329 38 6.55708e+06 337540 526063. 1820.29 1.33 0.10812 0.0929206 21886 126133 -1 2813 22 1397 3985 195094 45869 7.1207 7.1207 -152.799 -7.1207 0 0 666494. 2306.21 0.31 0.07 0.12 -1 -1 0.31 0.024157 0.0216294 188 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 6.47 vpr 63.45 MiB -1 -1 0.26 21744 12 0.19 -1 -1 36312 -1 -1 25 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 229 261 1 178 89 17 17 289 -1 unnamed_device 24.8 MiB 0.31 1071 7217 1608 4614 995 63.4 MiB 0.06 0.00 7.1692 -152.502 -7.1692 7.1692 1.07 0.000244656 0.000194754 0.0129097 0.0106103 -1 -1 -1 -1 28 3141 42 6.55708e+06 301375 500653. 1732.36 2.04 0.0955117 0.0827998 21310 115450 -1 2655 16 1109 3044 186864 43877 6.1631 6.1631 -148.829 -6.1631 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.017902 0.0161862 144 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 8.50 vpr 63.65 MiB -1 -1 0.31 21840 13 0.39 -1 -1 36720 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65176 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 24.8 MiB 0.70 1267 8934 2136 5911 887 63.6 MiB 0.07 0.00 7.70312 -157.904 -7.70312 7.70312 1.02 0.000297208 0.000238576 0.0178742 0.014878 -1 -1 -1 -1 28 3687 38 6.55708e+06 313430 500653. 1732.36 3.04 0.147113 0.128465 21310 115450 -1 2943 16 1173 3501 210890 47929 6.8039 6.8039 -153.425 -6.8039 0 0 612192. 2118.31 0.25 0.07 0.11 -1 -1 0.25 0.0201797 0.0182314 169 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 7.76 vpr 64.17 MiB -1 -1 0.48 22220 13 0.58 -1 -1 36628 -1 -1 35 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65712 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 25.4 MiB 0.38 1613 9323 2087 6739 497 64.2 MiB 0.08 0.00 7.89411 -162.823 -7.89411 7.89411 0.99 0.000420296 0.000350564 0.0203794 0.0166006 -1 -1 -1 -1 36 4188 19 6.55708e+06 421925 612192. 2118.31 2.57 0.166581 0.144975 22750 144809 -1 3509 18 1533 4694 254821 58773 6.6399 6.6399 -151.086 -6.6399 0 0 782063. 2706.10 0.34 0.08 0.14 -1 -1 0.34 0.0245667 0.0221306 233 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 11.85 vpr 64.10 MiB -1 -1 0.37 21780 11 0.36 -1 -1 36516 -1 -1 33 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65636 30 32 287 319 1 210 95 17 17 289 -1 unnamed_device 25.1 MiB 0.78 1259 9167 2054 6526 587 64.1 MiB 0.08 0.00 6.6803 -129.394 -6.6803 6.6803 1.11 0.000307177 0.000243879 0.0178982 0.0146269 -1 -1 -1 -1 36 3457 44 6.55708e+06 397815 612192. 2118.31 5.87 0.248167 0.214291 22750 144809 -1 3054 30 1292 4283 378107 142282 5.99344 5.99344 -128.062 -5.99344 0 0 782063. 2706.10 0.32 0.11 0.15 -1 -1 0.32 0.026639 0.0233654 201 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 11.08 vpr 64.16 MiB -1 -1 0.34 21920 15 0.53 -1 -1 36584 -1 -1 29 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65704 32 32 296 328 1 224 93 17 17 289 -1 unnamed_device 25.3 MiB 1.14 1412 8073 1941 5451 681 64.2 MiB 0.12 0.00 9.02973 -184.383 -9.02973 9.02973 1.53 0.000743688 0.000620127 0.0328775 0.0273473 -1 -1 -1 -1 28 3953 42 6.55708e+06 349595 500653. 1732.36 4.47 0.197846 0.170981 21310 115450 -1 3335 16 1632 4925 286354 65603 7.68815 7.68815 -174.435 -7.68815 0 0 612192. 2118.31 0.29 0.10 0.11 -1 -1 0.29 0.0261346 0.0238144 202 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 17.18 vpr 63.96 MiB -1 -1 0.42 22312 13 0.60 -1 -1 36776 -1 -1 30 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65496 32 32 285 317 1 225 94 17 17 289 -1 unnamed_device 25.2 MiB 0.88 1398 9040 2290 6006 744 64.0 MiB 0.08 0.00 7.98903 -170.903 -7.98903 7.98903 0.98 0.000376073 0.000310588 0.0192028 0.0158327 -1 -1 -1 -1 34 3714 34 6.55708e+06 361650 585099. 2024.56 10.51 0.359231 0.309705 22462 138074 -1 3093 48 2033 7210 998086 551834 7.0005 7.0005 -163.715 -7.0005 0 0 742403. 2568.87 0.56 0.52 0.23 -1 -1 0.56 0.0923785 0.0834236 194 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 7.77 vpr 63.75 MiB -1 -1 0.40 21524 12 0.36 -1 -1 36480 -1 -1 29 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65280 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 24.8 MiB 0.89 1189 8934 2259 5724 951 63.8 MiB 0.06 0.00 7.37281 -150.82 -7.37281 7.37281 1.35 0.000278019 0.00022583 0.0151596 0.0123101 -1 -1 -1 -1 28 3038 34 6.55708e+06 349595 500653. 1732.36 1.87 0.097694 0.0844373 21310 115450 -1 2732 17 1165 3200 178344 41874 6.8405 6.8405 -151.077 -6.8405 0 0 612192. 2118.31 0.29 0.06 0.12 -1 -1 0.29 0.0175348 0.0157863 157 154 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 7.10 vpr 63.25 MiB -1 -1 0.32 21828 11 0.31 -1 -1 36268 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 24.7 MiB 0.23 1123 11059 2941 6474 1644 63.3 MiB 0.07 0.00 6.88435 -140.697 -6.88435 6.88435 1.38 0.000241601 0.000188155 0.0173508 0.0140348 -1 -1 -1 -1 34 2634 29 6.55708e+06 253155 585099. 2024.56 2.03 0.130744 0.111721 22462 138074 -1 2360 21 1072 2750 161134 37226 6.10198 6.10198 -137.057 -6.10198 0 0 742403. 2568.87 0.32 0.07 0.13 -1 -1 0.32 0.0204742 0.0182331 145 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 10.28 vpr 63.97 MiB -1 -1 0.50 21728 13 0.59 -1 -1 36508 -1 -1 29 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65508 31 32 294 326 1 225 92 17 17 289 -1 unnamed_device 25.2 MiB 0.85 1353 8165 1745 5313 1107 64.0 MiB 0.12 0.00 7.95223 -162.187 -7.95223 7.95223 1.25 0.000749928 0.000624467 0.0313138 0.0261328 -1 -1 -1 -1 30 3774 24 6.55708e+06 349595 526063. 1820.29 3.39 0.164254 0.141922 21886 126133 -1 3129 20 1574 5108 253820 58875 7.0397 7.0397 -155.244 -7.0397 0 0 666494. 2306.21 0.48 0.09 0.12 -1 -1 0.48 0.0271105 0.0240775 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 7.66 vpr 63.17 MiB -1 -1 0.27 21300 10 0.24 -1 -1 36200 -1 -1 27 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64684 29 32 219 251 1 165 88 17 17 289 -1 unnamed_device 24.7 MiB 0.46 979 6133 1235 4409 489 63.2 MiB 0.05 0.00 5.98168 -119.896 -5.98168 5.98168 1.64 0.00024067 0.000192388 0.0115186 0.00958601 -1 -1 -1 -1 28 2713 32 6.55708e+06 325485 500653. 1732.36 1.91 0.0854039 0.0738169 21310 115450 -1 2298 16 958 2674 168299 39337 5.32872 5.32872 -123.036 -5.32872 0 0 612192. 2118.31 0.44 0.10 0.19 -1 -1 0.44 0.0286877 0.0260275 137 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 9.87 vpr 63.69 MiB -1 -1 0.27 21456 14 0.30 -1 -1 36396 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65220 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 24.7 MiB 0.71 1013 10618 2901 6668 1049 63.7 MiB 0.07 0.00 8.01252 -164.615 -8.01252 8.01252 1.13 0.0002478 0.000195328 0.0171883 0.013988 -1 -1 -1 -1 36 2974 27 6.55708e+06 289320 612192. 2118.31 4.34 0.16407 0.140637 22750 144809 -1 2347 16 1050 3010 159154 38815 7.10243 7.10243 -155.609 -7.10243 0 0 782063. 2706.10 0.39 0.07 0.24 -1 -1 0.39 0.019465 0.0176436 146 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 9.79 vpr 63.81 MiB -1 -1 0.32 21816 13 0.43 -1 -1 36484 -1 -1 30 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65344 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 24.9 MiB 0.66 1277 12063 3078 7002 1983 63.8 MiB 0.09 0.00 7.55489 -160.613 -7.55489 7.55489 1.06 0.000310369 0.000246122 0.021698 0.017472 -1 -1 -1 -1 28 4163 46 6.55708e+06 361650 500653. 1732.36 3.95 0.177384 0.154088 21310 115450 -1 3209 50 1508 4283 633378 328376 6.86804 6.86804 -161.481 -6.86804 0 0 612192. 2118.31 0.28 0.24 0.11 -1 -1 0.28 0.0463962 0.0409632 180 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 7.47 vpr 63.21 MiB -1 -1 0.29 21560 12 0.19 -1 -1 36732 -1 -1 25 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64728 31 32 225 257 1 175 88 17 17 289 -1 unnamed_device 24.6 MiB 0.61 972 13543 3543 8079 1921 63.2 MiB 0.09 0.00 6.46809 -135.985 -6.46809 6.46809 1.53 0.000226796 0.000179406 0.0209932 0.0170894 -1 -1 -1 -1 30 2556 39 6.55708e+06 301375 526063. 1820.29 1.66 0.111606 0.0953352 21886 126133 -1 2210 15 953 2651 129918 31131 5.72972 5.72972 -132.873 -5.72972 0 0 666494. 2306.21 0.37 0.06 0.19 -1 -1 0.37 0.0202842 0.0184095 137 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 8.59 vpr 63.98 MiB -1 -1 0.30 21868 12 0.25 -1 -1 36972 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65516 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 25.0 MiB 0.41 1357 6321 1305 4694 322 64.0 MiB 0.06 0.00 7.2805 -151.118 -7.2805 7.2805 1.09 0.000326254 0.000257059 0.014573 0.012181 -1 -1 -1 -1 36 3232 20 6.55708e+06 313430 612192. 2118.31 3.94 0.189316 0.16428 22750 144809 -1 2786 16 1222 3844 228616 50983 6.23184 6.23184 -141.588 -6.23184 0 0 782063. 2706.10 0.34 0.08 0.13 -1 -1 0.34 0.0241593 0.0220338 195 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 10.46 vpr 63.93 MiB -1 -1 0.37 21832 13 0.39 -1 -1 36496 -1 -1 29 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65464 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 25.1 MiB 0.54 1315 14996 4191 8694 2111 63.9 MiB 0.11 0.00 7.68235 -156.61 -7.68235 7.68235 0.99 0.000370123 0.000286281 0.0293484 0.0239463 -1 -1 -1 -1 36 3681 47 6.55708e+06 349595 612192. 2118.31 4.30 0.259773 0.226315 22750 144809 -1 2885 15 1272 3943 212141 48883 6.8385 6.8385 -148.214 -6.8385 0 0 782063. 2706.10 0.67 0.13 0.25 -1 -1 0.67 0.0373866 0.0340865 191 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 8.29 vpr 63.34 MiB -1 -1 0.32 21888 11 0.32 -1 -1 36044 -1 -1 25 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 24.7 MiB 0.37 1156 7217 1433 5081 703 63.3 MiB 0.05 0.00 6.44106 -147.701 -6.44106 6.44106 0.96 0.000283556 0.000231639 0.0124687 0.010342 -1 -1 -1 -1 26 3273 36 6.55708e+06 301375 477104. 1650.88 3.64 0.107417 0.0937522 21022 109990 -1 2733 15 1095 3130 197849 44014 5.64872 5.64872 -140.63 -5.64872 0 0 585099. 2024.56 0.26 0.07 0.16 -1 -1 0.26 0.0178467 0.016181 148 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 8.71 vpr 63.84 MiB -1 -1 0.28 21768 13 0.28 -1 -1 36740 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65368 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 25.1 MiB 0.36 1221 12568 3500 6849 2219 63.8 MiB 0.08 0.00 7.53241 -157.665 -7.53241 7.53241 0.99 0.000265645 0.000210991 0.0202472 0.0163648 -1 -1 -1 -1 34 3711 44 6.55708e+06 289320 585099. 2024.56 4.25 0.20045 0.173586 22462 138074 -1 2854 19 1197 3376 208775 48579 6.7229 6.7229 -154.751 -6.7229 0 0 742403. 2568.87 0.30 0.06 0.12 -1 -1 0.30 0.0178378 0.0159683 164 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 7.85 vpr 63.97 MiB -1 -1 0.46 21596 13 0.34 -1 -1 36636 -1 -1 28 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65508 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 25.0 MiB 0.89 1325 8372 1977 5648 747 64.0 MiB 0.07 0.00 7.93261 -169.937 -7.93261 7.93261 0.95 0.000303014 0.000242497 0.0161185 0.013265 -1 -1 -1 -1 36 3145 18 6.55708e+06 337540 612192. 2118.31 2.39 0.176283 0.153211 22750 144809 -1 2792 16 1137 3209 161819 38585 7.1573 7.1573 -160.833 -7.1573 0 0 782063. 2706.10 0.36 0.06 0.23 -1 -1 0.36 0.0208315 0.0188831 193 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 7.15 vpr 63.85 MiB -1 -1 0.44 21768 11 0.26 -1 -1 36828 -1 -1 26 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65384 29 32 243 275 1 185 87 17 17 289 -1 unnamed_device 25.1 MiB 0.28 1095 12183 2952 7495 1736 63.9 MiB 0.08 0.00 6.38849 -124.147 -6.38849 6.38849 1.08 0.000254678 0.000202051 0.0192644 0.0156483 -1 -1 -1 -1 34 2951 30 6.55708e+06 313430 585099. 2024.56 2.28 0.133124 0.113874 22462 138074 -1 2461 18 1091 3235 228081 66634 5.42198 5.42198 -116.493 -5.42198 0 0 742403. 2568.87 0.34 0.11 0.22 -1 -1 0.34 0.0291848 0.0260726 159 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 7.34 vpr 63.96 MiB -1 -1 0.42 22532 14 0.45 -1 -1 37348 -1 -1 34 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65500 32 32 318 350 1 250 98 17 17 289 -1 unnamed_device 25.0 MiB 0.43 1560 8198 1613 5991 594 64.0 MiB 0.07 0.00 8.39904 -183.874 -8.39904 8.39904 1.25 0.000343566 0.000273696 0.0171345 0.0142103 -1 -1 -1 -1 30 4322 32 6.55708e+06 409870 526063. 1820.29 1.77 0.116899 0.101329 21886 126133 -1 3416 19 1679 5045 238655 56671 7.24856 7.24856 -174.08 -7.24856 0 0 666494. 2306.21 0.38 0.09 0.14 -1 -1 0.38 0.0290874 0.0263773 224 224 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 5.81 vpr 63.13 MiB -1 -1 0.27 21552 12 0.21 -1 -1 36416 -1 -1 26 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64644 31 32 222 254 1 184 89 17 17 289 -1 unnamed_device 24.6 MiB 0.35 937 6029 1160 4001 868 63.1 MiB 0.05 0.00 6.96386 -146.099 -6.96386 6.96386 1.02 0.000311351 0.000254925 0.011716 0.00989585 -1 -1 -1 -1 30 2769 31 6.55708e+06 313430 526063. 1820.29 1.36 0.0743437 0.0645222 21886 126133 -1 2184 19 979 2530 133098 32980 6.13718 6.13718 -138.917 -6.13718 0 0 666494. 2306.21 0.31 0.06 0.14 -1 -1 0.31 0.0198443 0.0178748 139 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 8.87 vpr 63.95 MiB -1 -1 0.38 22292 13 0.39 -1 -1 36308 -1 -1 29 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65480 32 32 282 314 1 219 93 17 17 289 -1 unnamed_device 25.0 MiB 0.47 1427 9543 2297 6228 1018 63.9 MiB 0.09 0.00 7.70698 -157.067 -7.70698 7.70698 1.02 0.000428577 0.000356721 0.0232103 0.0194995 -1 -1 -1 -1 28 4355 33 6.55708e+06 349595 500653. 1732.36 3.69 0.186918 0.166086 21310 115450 -1 3400 18 1733 5425 348740 79446 6.70864 6.70864 -153.768 -6.70864 0 0 612192. 2118.31 0.45 0.17 0.17 -1 -1 0.45 0.0406638 0.0365375 190 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 7.21 vpr 63.67 MiB -1 -1 0.46 21820 13 0.27 -1 -1 36924 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65196 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 24.7 MiB 0.47 1175 6723 1451 4940 332 63.7 MiB 0.08 0.00 7.59104 -161.75 -7.59104 7.59104 1.12 0.000442114 0.000354985 0.0180819 0.0151743 -1 -1 -1 -1 40 2354 17 6.55708e+06 313430 666494. 2306.21 2.10 0.112931 0.0975536 23614 160646 -1 2309 19 977 2546 136667 31608 6.4381 6.4381 -149.953 -6.4381 0 0 872365. 3018.56 0.44 0.07 0.16 -1 -1 0.44 0.0235101 0.0212509 151 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 8.29 vpr 63.82 MiB -1 -1 0.31 22048 12 0.28 -1 -1 36772 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65352 32 32 269 301 1 198 90 17 17 289 -1 unnamed_device 25.0 MiB 0.45 1330 9135 2220 6292 623 63.8 MiB 0.11 0.00 6.98077 -149.377 -6.98077 6.98077 1.02 0.00048912 0.000393832 0.0277144 0.0227835 -1 -1 -1 -1 30 3422 46 6.55708e+06 313430 526063. 1820.29 3.51 0.181813 0.157706 21886 126133 -1 2714 29 1134 3876 337265 140345 6.43304 6.43304 -147.012 -6.43304 0 0 666494. 2306.21 0.30 0.15 0.12 -1 -1 0.30 0.037543 0.0338122 177 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 9.82 vpr 64.40 MiB -1 -1 0.49 22812 15 0.69 -1 -1 36972 -1 -1 36 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65948 32 32 350 382 1 271 100 17 17 289 -1 unnamed_device 25.4 MiB 0.36 1801 9380 2328 6382 670 64.4 MiB 0.14 0.00 8.42612 -171.773 -8.42612 8.42612 1.07 0.000992817 0.000826346 0.0364161 0.0302157 -1 -1 -1 -1 30 4852 37 6.55708e+06 433980 526063. 1820.29 3.96 0.202803 0.175937 21886 126133 -1 4091 21 2438 8231 462298 101679 7.41256 7.41256 -169.461 -7.41256 0 0 666494. 2306.21 0.49 0.26 0.12 -1 -1 0.49 0.0717248 0.0653935 256 256 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 6.40 vpr 62.85 MiB -1 -1 0.38 21100 10 0.16 -1 -1 36348 -1 -1 18 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64360 30 32 174 206 1 139 80 17 17 289 -1 unnamed_device 24.2 MiB 0.12 895 9024 2291 5391 1342 62.9 MiB 0.05 0.00 5.25257 -121.184 -5.25257 5.25257 0.96 0.000172346 0.000136146 0.0111709 0.00909018 -1 -1 -1 -1 28 2316 41 6.55708e+06 216990 500653. 1732.36 1.90 0.0798474 0.0682596 21310 115450 -1 2035 18 726 1829 113845 26006 4.8312 4.8312 -121.576 -4.8312 0 0 612192. 2118.31 0.45 0.05 0.13 -1 -1 0.45 0.0145866 0.0132284 92 86 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 5.85 vpr 63.26 MiB -1 -1 0.32 21700 13 0.29 -1 -1 36064 -1 -1 25 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64776 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 24.6 MiB 0.25 1032 8919 2164 5388 1367 63.3 MiB 0.06 0.00 7.46729 -149.631 -7.46729 7.46729 1.26 0.000248806 0.000198403 0.0152521 0.0125263 -1 -1 -1 -1 28 2742 21 6.55708e+06 301375 500653. 1732.36 1.42 0.0766029 0.0653268 21310 115450 -1 2581 16 1072 2952 169628 39515 6.88592 6.88592 -148.958 -6.88592 0 0 612192. 2118.31 0.29 0.06 0.11 -1 -1 0.29 0.0173409 0.0153741 143 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 7.93 vpr 64.04 MiB -1 -1 0.31 21760 12 0.26 -1 -1 36312 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65580 32 32 264 296 1 203 90 17 17 289 -1 unnamed_device 25.1 MiB 0.48 1234 5115 926 4061 128 64.0 MiB 0.05 0.00 7.54227 -156.123 -7.54227 7.54227 0.97 0.000271178 0.000215998 0.0101037 0.00839246 -1 -1 -1 -1 36 2946 20 6.55708e+06 313430 612192. 2118.31 2.94 0.167865 0.145679 22750 144809 -1 2609 20 1325 3857 197427 46812 6.31084 6.31084 -146.339 -6.31084 0 0 782063. 2706.10 0.53 0.07 0.22 -1 -1 0.53 0.0228679 0.0203499 172 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 7.52 vpr 63.00 MiB -1 -1 0.27 21572 9 0.20 -1 -1 36084 -1 -1 24 25 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64512 25 32 183 215 1 140 81 17 17 289 -1 unnamed_device 24.5 MiB 0.28 725 12156 3385 6978 1793 63.0 MiB 0.12 0.00 5.27745 -95.2043 -5.27745 5.27745 1.74 0.00042033 0.000349358 0.029142 0.0238378 -1 -1 -1 -1 26 2187 24 6.55708e+06 289320 477104. 1650.88 1.87 0.0928876 0.078591 21022 109990 -1 1846 19 919 2656 157364 37938 4.9534 4.9534 -96.7502 -4.9534 0 0 585099. 2024.56 0.26 0.09 0.11 -1 -1 0.26 0.0260333 0.0234285 111 110 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 8.50 vpr 63.93 MiB -1 -1 0.41 21972 12 0.35 -1 -1 36428 -1 -1 33 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65468 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 25.1 MiB 0.43 1424 11419 2633 7905 881 63.9 MiB 0.09 0.00 7.34317 -159.962 -7.34317 7.34317 1.02 0.00038854 0.000318327 0.0232444 0.0190491 -1 -1 -1 -1 36 3763 23 6.55708e+06 397815 612192. 2118.31 3.48 0.162998 0.140425 22750 144809 -1 3168 17 1492 4298 232708 54498 6.31284 6.31284 -150.037 -6.31284 0 0 782063. 2706.10 0.36 0.08 0.18 -1 -1 0.36 0.0247633 0.0221747 212 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 23.88 vpr 63.99 MiB -1 -1 0.37 22264 13 0.57 -1 -1 36480 -1 -1 31 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65528 31 32 290 322 1 228 94 17 17 289 -1 unnamed_device 25.2 MiB 0.54 1528 10531 2641 6672 1218 64.0 MiB 0.09 0.00 8.32074 -170.063 -8.32074 8.32074 1.08 0.000397866 0.000325221 0.0239945 0.0199478 -1 -1 -1 -1 34 3941 26 6.55708e+06 373705 585099. 2024.56 18.32 0.329406 0.28238 22462 138074 -1 3438 17 1381 4188 259074 57085 7.3193 7.3193 -162.047 -7.3193 0 0 742403. 2568.87 0.44 0.12 0.16 -1 -1 0.44 0.0359694 0.03294 200 199 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 5.67 vpr 64.02 MiB -1 -1 0.21 21436 1 0.03 -1 -1 33944 -1 -1 32 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65552 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 25.2 MiB 0.35 1021 13017 3203 8186 1628 64.0 MiB 0.11 0.00 5.56529 -159.911 -5.56529 5.56529 0.99 0.000262042 0.000209334 0.0174063 0.0141423 -1 -1 -1 -1 32 2485 24 6.64007e+06 401856 554710. 1919.41 1.14 0.0768703 0.0652357 22834 132086 -1 2178 21 1579 2366 153039 36543 4.64968 4.64968 -151.131 -4.64968 0 0 701300. 2426.64 0.34 0.06 0.14 -1 -1 0.34 0.0160783 0.0141966 154 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.99 vpr 64.14 MiB -1 -1 0.20 21392 1 0.04 -1 -1 33844 -1 -1 25 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65676 30 32 363 293 1 196 87 17 17 289 -1 unnamed_device 25.3 MiB 0.36 1071 13527 3636 8473 1418 64.1 MiB 0.10 0.00 4.97921 -144.408 -4.97921 4.97921 0.97 0.000238803 0.000193386 0.0186601 0.015077 -1 -1 -1 -1 32 2399 23 6.64007e+06 313950 554710. 1919.41 1.01 0.0633653 0.0530196 22834 132086 -1 2149 20 1658 2519 162674 39380 4.22689 4.22689 -145.337 -4.22689 0 0 701300. 2426.64 0.32 0.07 0.14 -1 -1 0.32 0.0201902 0.0180317 141 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 6.17 vpr 63.65 MiB -1 -1 0.20 21440 1 0.04 -1 -1 33860 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65176 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 25.0 MiB 0.37 1084 15639 4927 8621 2091 63.6 MiB 0.13 0.00 4.35433 -126.133 -4.35433 4.35433 1.59 0.000353368 0.000291955 0.0217877 0.0179552 -1 -1 -1 -1 32 2438 19 6.64007e+06 288834 554710. 1919.41 1.25 0.0699429 0.0595596 22834 132086 -1 2059 19 1091 1550 105201 24017 3.66183 3.66183 -123.368 -3.66183 0 0 701300. 2426.64 0.32 0.05 0.13 -1 -1 0.32 0.0145392 0.0129226 126 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 5.32 vpr 63.88 MiB -1 -1 0.22 21504 1 0.06 -1 -1 33624 -1 -1 27 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65412 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 25.2 MiB 0.14 931 15103 4868 7954 2281 63.9 MiB 0.11 0.00 4.52953 -121.776 -4.52953 4.52953 1.05 0.00019656 0.000155738 0.0174707 0.0140635 -1 -1 -1 -1 32 2287 23 6.64007e+06 339066 554710. 1919.41 1.16 0.0700707 0.0594773 22834 132086 -1 1914 23 1465 2740 192952 43744 3.67063 3.67063 -116.076 -3.67063 0 0 701300. 2426.64 0.39 0.08 0.16 -1 -1 0.39 0.0184129 0.0163026 126 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.89 vpr 64.08 MiB -1 -1 0.22 21580 1 0.06 -1 -1 33800 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65616 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 25.2 MiB 0.16 1007 10071 2662 6608 801 64.1 MiB 0.08 0.00 4.57112 -132.997 -4.57112 4.57112 0.92 0.000203708 0.000161888 0.0128959 0.0104931 -1 -1 -1 -1 32 2498 20 6.64007e+06 288834 554710. 1919.41 0.96 0.053404 0.0450429 22834 132086 -1 2122 21 1503 2874 185659 42276 3.64943 3.64943 -130.19 -3.64943 0 0 701300. 2426.64 0.30 0.07 0.14 -1 -1 0.30 0.0166273 0.0146895 130 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 5.30 vpr 64.21 MiB -1 -1 0.27 21392 1 0.06 -1 -1 33776 -1 -1 34 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65748 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 25.4 MiB 0.21 1017 13373 3190 9207 976 64.2 MiB 0.11 0.00 3.5011 -120.17 -3.5011 3.5011 0.99 0.000318473 0.00026043 0.0171614 0.0139947 -1 -1 -1 -1 28 2759 36 6.64007e+06 426972 500653. 1732.36 1.31 0.0862329 0.0726462 21970 115934 -1 2279 18 1387 2237 156657 37609 2.89817 2.89817 -120.057 -2.89817 0 0 612192. 2118.31 0.28 0.06 0.11 -1 -1 0.28 0.0162124 0.0141661 142 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.61 vpr 63.41 MiB -1 -1 0.20 21408 1 0.05 -1 -1 34356 -1 -1 19 27 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64928 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 24.9 MiB 0.14 699 11034 3536 5995 1503 63.4 MiB 0.07 0.00 3.75638 -102.609 -3.75638 3.75638 0.94 0.000156739 0.000123123 0.0131456 0.0106723 -1 -1 -1 -1 32 1595 18 6.64007e+06 238602 554710. 1919.41 0.87 0.0417151 0.0348347 22834 132086 -1 1412 20 879 1541 105739 24721 3.09756 3.09756 -96.0776 -3.09756 0 0 701300. 2426.64 0.31 0.04 0.13 -1 -1 0.31 0.0115122 0.0101614 93 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 5.62 vpr 63.45 MiB -1 -1 0.18 21640 1 0.03 -1 -1 33768 -1 -1 31 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64968 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 24.7 MiB 0.21 827 11383 2423 8400 560 63.4 MiB 0.08 0.00 3.48559 -101.391 -3.48559 3.48559 1.10 0.000211519 0.000168259 0.0119728 0.00969488 -1 -1 -1 -1 28 2163 36 6.64007e+06 389298 500653. 1732.36 1.29 0.0670566 0.0567176 21970 115934 -1 1858 21 1080 1973 129274 30214 2.87017 2.87017 -99.5446 -2.87017 0 0 612192. 2118.31 0.30 0.05 0.15 -1 -1 0.30 0.0147154 0.0129521 115 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 5.57 vpr 63.82 MiB -1 -1 0.22 21488 1 0.04 -1 -1 34160 -1 -1 20 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65352 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 25.0 MiB 0.40 888 14123 4595 7521 2007 63.8 MiB 0.09 0.00 3.62422 -120.034 -3.62422 3.62422 1.08 0.000187515 0.000146379 0.0174094 0.0140366 -1 -1 -1 -1 32 1992 19 6.64007e+06 251160 554710. 1919.41 1.10 0.0554197 0.0466476 22834 132086 -1 1743 19 1121 1661 106825 24557 2.99817 2.99817 -113.252 -2.99817 0 0 701300. 2426.64 0.41 0.06 0.16 -1 -1 0.41 0.0187606 0.016777 111 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 5.16 vpr 63.52 MiB -1 -1 0.33 21600 1 0.04 -1 -1 33748 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 25.0 MiB 0.24 874 11631 3631 6742 1258 63.5 MiB 0.10 0.00 3.92955 -127.77 -3.92955 3.92955 0.95 0.000189701 0.000150054 0.01562 0.0126926 -1 -1 -1 -1 32 1957 19 6.64007e+06 213486 554710. 1919.41 1.03 0.0525554 0.0441712 22834 132086 -1 1753 19 1044 1681 109300 25609 2.90177 2.90177 -115.584 -2.90177 0 0 701300. 2426.64 0.34 0.06 0.13 -1 -1 0.34 0.0152293 0.0134552 112 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 5.31 vpr 63.82 MiB -1 -1 0.33 21556 1 0.04 -1 -1 33372 -1 -1 17 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65352 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 24.9 MiB 0.18 728 11571 3255 7389 927 63.8 MiB 0.08 0.00 4.13115 -112.218 -4.13115 4.13115 0.99 0.00019662 0.000157478 0.0166224 0.0136254 -1 -1 -1 -1 28 1735 19 6.64007e+06 213486 500653. 1732.36 1.07 0.0606006 0.0517093 21970 115934 -1 1482 19 805 1293 87516 20285 2.86597 2.86597 -102.428 -2.86597 0 0 612192. 2118.31 0.39 0.05 0.14 -1 -1 0.39 0.0153816 0.0137322 98 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 5.44 vpr 63.54 MiB -1 -1 0.26 21364 1 0.05 -1 -1 33692 -1 -1 18 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 25.0 MiB 0.43 793 12008 4621 6063 1324 63.5 MiB 0.09 0.00 3.82041 -120.517 -3.82041 3.82041 1.09 0.000206546 0.00016439 0.0165982 0.0136384 -1 -1 -1 -1 32 2253 40 6.64007e+06 226044 554710. 1919.41 1.09 0.0618556 0.0518993 22834 132086 -1 1803 21 1195 1619 115534 26931 3.04337 3.04337 -115.258 -3.04337 0 0 701300. 2426.64 0.31 0.05 0.16 -1 -1 0.31 0.0126872 0.0111863 109 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 5.32 vpr 64.04 MiB -1 -1 0.21 21500 1 0.05 -1 -1 33892 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65576 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 25.3 MiB 0.39 1104 18028 6323 9464 2241 64.0 MiB 0.14 0.00 4.4826 -145.148 -4.4826 4.4826 0.94 0.000209899 0.000165632 0.0218027 0.0175323 -1 -1 -1 -1 32 2419 20 6.64007e+06 301392 554710. 1919.41 0.97 0.0592191 0.0492291 22834 132086 -1 2198 21 1658 2485 165389 37416 3.29783 3.29783 -129.319 -3.29783 0 0 701300. 2426.64 0.30 0.06 0.12 -1 -1 0.30 0.0171025 0.0151608 139 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 5.28 vpr 64.12 MiB -1 -1 0.25 21504 1 0.06 -1 -1 33764 -1 -1 31 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65656 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 25.1 MiB 0.20 965 15215 3853 10047 1315 64.1 MiB 0.13 0.00 4.76344 -140.281 -4.76344 4.76344 0.96 0.000216134 0.000170764 0.0181941 0.0146872 -1 -1 -1 -1 28 2304 23 6.64007e+06 389298 500653. 1732.36 0.97 0.0576001 0.047902 21970 115934 -1 2045 22 1662 2823 167404 40668 3.88183 3.88183 -136.686 -3.88183 0 0 612192. 2118.31 0.31 0.08 0.12 -1 -1 0.31 0.0224895 0.0200196 134 61 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.69 vpr 63.23 MiB -1 -1 0.19 21300 1 0.04 -1 -1 33776 -1 -1 21 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64752 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 24.7 MiB 0.16 748 11118 2695 7379 1044 63.2 MiB 0.07 0.00 3.28519 -93.7186 -3.28519 3.28519 1.02 0.000177763 0.000143001 0.0123985 0.0100246 -1 -1 -1 -1 28 1645 23 6.64007e+06 263718 500653. 1732.36 0.88 0.044401 0.0373413 21970 115934 -1 1486 16 782 1301 86789 20385 2.71577 2.71577 -91.5176 -2.71577 0 0 612192. 2118.31 0.27 0.04 0.11 -1 -1 0.27 0.01224 0.0110447 98 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 5.02 vpr 63.95 MiB -1 -1 0.22 21472 1 0.05 -1 -1 33820 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65488 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 25.2 MiB 0.26 1002 9914 2245 7192 477 64.0 MiB 0.09 0.00 4.06227 -126.501 -4.06227 4.06227 1.04 0.000339478 0.000280459 0.0150671 0.0122767 -1 -1 -1 -1 32 2466 22 6.64007e+06 276276 554710. 1919.41 1.00 0.0625471 0.0525543 22834 132086 -1 2152 20 1479 2608 179323 41071 3.09436 3.09436 -120.061 -3.09436 0 0 701300. 2426.64 0.32 0.06 0.13 -1 -1 0.32 0.0175048 0.0154791 133 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.42 vpr 64.18 MiB -1 -1 0.19 21340 1 0.05 -1 -1 33692 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65720 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 25.2 MiB 0.36 1138 14679 4370 8457 1852 64.2 MiB 0.11 0.00 4.43584 -143.418 -4.43584 4.43584 1.02 0.000208117 0.000164792 0.0181344 0.0146421 -1 -1 -1 -1 30 2626 19 6.64007e+06 288834 526063. 1820.29 0.98 0.0603549 0.0505747 22546 126617 -1 2242 21 1375 2016 134012 29343 3.26883 3.26883 -128.611 -3.26883 0 0 666494. 2306.21 0.36 0.07 0.17 -1 -1 0.36 0.0224568 0.0201398 138 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 5.32 vpr 63.82 MiB -1 -1 0.30 21340 1 0.05 -1 -1 33492 -1 -1 29 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65352 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 25.0 MiB 0.26 793 7443 1484 5603 356 63.8 MiB 0.06 0.00 2.85064 -101.719 -2.85064 2.85064 1.07 0.000198513 0.000156054 0.00909122 0.00743855 -1 -1 -1 -1 30 1881 18 6.64007e+06 364182 526063. 1820.29 0.90 0.0436512 0.0367 22546 126617 -1 1524 20 1018 1637 84819 20502 2.06951 2.06951 -94.0823 -2.06951 0 0 666494. 2306.21 0.33 0.05 0.13 -1 -1 0.33 0.0163235 0.0143174 110 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 4.87 vpr 63.29 MiB -1 -1 0.22 21284 1 0.05 -1 -1 33884 -1 -1 15 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64812 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 24.7 MiB 0.09 601 7249 1675 5111 463 63.3 MiB 0.05 0.00 2.38033 -78.5571 -2.38033 2.38033 1.07 0.000226234 0.000187174 0.00846696 0.00685607 -1 -1 -1 -1 28 1432 21 6.64007e+06 188370 500653. 1732.36 0.93 0.041199 0.0342952 21970 115934 -1 1285 21 703 1012 85737 19690 2.04611 2.04611 -83.9383 -2.04611 0 0 612192. 2118.31 0.32 0.07 0.11 -1 -1 0.32 0.0196938 0.0172901 81 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.90 vpr 63.76 MiB -1 -1 0.20 21368 1 0.04 -1 -1 34160 -1 -1 20 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65288 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 25.2 MiB 0.32 927 14123 4588 7430 2105 63.8 MiB 0.11 0.00 4.95484 -148.86 -4.95484 4.95484 0.99 0.000188824 0.000149089 0.0186224 0.0151145 -1 -1 -1 -1 30 2054 21 6.64007e+06 251160 526063. 1820.29 0.95 0.0564355 0.0468617 22546 126617 -1 1848 20 956 1399 83300 19321 3.50023 3.50023 -130.959 -3.50023 0 0 666494. 2306.21 0.31 0.04 0.12 -1 -1 0.31 0.0130819 0.0114957 128 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.97 vpr 63.84 MiB -1 -1 0.20 21504 1 0.04 -1 -1 33988 -1 -1 31 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65368 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 24.9 MiB 0.14 927 7007 1409 5318 280 63.8 MiB 0.07 0.00 4.20815 -131.502 -4.20815 4.20815 1.01 0.00023098 0.000185719 0.00998554 0.00820313 -1 -1 -1 -1 30 2145 21 6.64007e+06 389298 526063. 1820.29 1.14 0.0561432 0.0479782 22546 126617 -1 1871 22 1181 1998 116468 26613 3.49343 3.49343 -124.596 -3.49343 0 0 666494. 2306.21 0.30 0.05 0.14 -1 -1 0.30 0.0163134 0.0143153 135 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 5.27 vpr 64.20 MiB -1 -1 0.29 21660 1 0.04 -1 -1 33828 -1 -1 25 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65736 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 25.3 MiB 0.38 1165 13949 4134 8420 1395 64.2 MiB 0.12 0.00 4.61182 -142.746 -4.61182 4.61182 1.07 0.00028112 0.00022959 0.0230304 0.0189787 -1 -1 -1 -1 32 2716 19 6.64007e+06 313950 554710. 1919.41 1.02 0.0716707 0.0603843 22834 132086 -1 2294 18 1476 2310 151067 35062 3.86002 3.86002 -132.307 -3.86002 0 0 701300. 2426.64 0.32 0.06 0.13 -1 -1 0.32 0.0169851 0.0149407 144 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 5.51 vpr 62.85 MiB -1 -1 0.18 21264 1 0.05 -1 -1 34164 -1 -1 18 26 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64356 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 24.4 MiB 0.19 372 9836 3040 4897 1899 62.8 MiB 0.05 0.00 2.3975 -64.4977 -2.3975 2.3975 0.99 0.000125903 9.8552e-05 0.01115 0.00910046 -1 -1 -1 -1 34 906 24 6.64007e+06 226044 585099. 2024.56 1.76 0.0606909 0.0512023 23122 138558 -1 765 15 510 696 40243 12227 1.85511 1.85511 -61.8909 -1.85511 0 0 742403. 2568.87 0.34 0.02 0.14 -1 -1 0.34 0.00739461 0.00658817 77 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.87 vpr 63.39 MiB -1 -1 0.29 21440 1 0.04 -1 -1 33884 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64908 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 24.9 MiB 0.13 995 9571 2665 6351 555 63.4 MiB 0.08 0.00 4.78226 -126.055 -4.78226 4.78226 0.96 0.000205893 0.000165719 0.0121023 0.00991669 -1 -1 -1 -1 28 2148 21 6.64007e+06 263718 500653. 1732.36 1.00 0.0515538 0.0439022 21970 115934 -1 1974 21 1150 2159 136149 31256 3.72363 3.72363 -120.986 -3.72363 0 0 612192. 2118.31 0.31 0.06 0.12 -1 -1 0.31 0.0155218 0.0138177 118 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.81 vpr 63.03 MiB -1 -1 0.19 21208 1 0.06 -1 -1 33524 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 24.6 MiB 0.08 542 9374 3354 4039 1981 63.0 MiB 0.05 0.00 2.60773 -75.9678 -2.60773 2.60773 0.90 0.000126078 9.904e-05 0.00962654 0.00777554 -1 -1 -1 -1 26 1286 38 6.64007e+06 175812 477104. 1650.88 1.06 0.0406548 0.0340705 21682 110474 -1 1078 13 466 537 40953 9922 2.06131 2.06131 -73.6644 -2.06131 0 0 585099. 2024.56 0.27 0.02 0.17 -1 -1 0.27 0.00680188 0.00608055 79 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.90 vpr 63.76 MiB -1 -1 0.30 21596 1 0.05 -1 -1 34012 -1 -1 30 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65292 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 25.2 MiB 0.14 888 9892 2278 7158 456 63.8 MiB 0.08 0.00 4.63801 -125.739 -4.63801 4.63801 0.93 0.000226897 0.000183114 0.0120034 0.00980608 -1 -1 -1 -1 26 2284 26 6.64007e+06 376740 477104. 1650.88 1.04 0.0531114 0.0448842 21682 110474 -1 1858 22 1109 1983 144744 33533 3.81383 3.81383 -119.339 -3.81383 0 0 585099. 2024.56 0.29 0.07 0.11 -1 -1 0.29 0.0200248 0.0179077 123 24 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.70 vpr 63.59 MiB -1 -1 0.17 21280 1 0.03 -1 -1 33756 -1 -1 31 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65120 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 25.1 MiB 0.13 1023 7871 1717 5540 614 63.6 MiB 0.07 0.00 3.86807 -111.494 -3.86807 3.86807 0.93 0.000192525 0.000151807 0.00904337 0.00736805 -1 -1 -1 -1 30 2195 22 6.64007e+06 389298 526063. 1820.29 0.99 0.0479549 0.0406088 22546 126617 -1 1865 18 997 1812 96454 22629 2.80997 2.80997 -103.812 -2.80997 0 0 666494. 2306.21 0.34 0.04 0.13 -1 -1 0.34 0.0132852 0.0117745 128 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 5.19 vpr 64.09 MiB -1 -1 0.24 21580 1 0.07 -1 -1 33828 -1 -1 27 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65632 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 25.2 MiB 0.22 1020 17431 5202 10159 2070 64.1 MiB 0.14 0.00 4.78258 -136.405 -4.78258 4.78258 0.90 0.000212434 0.000167779 0.0224256 0.0179565 -1 -1 -1 -1 32 2211 20 6.64007e+06 339066 554710. 1919.41 0.95 0.0606468 0.0502497 22834 132086 -1 1999 22 1307 2307 139998 33525 3.95603 3.95603 -130.892 -3.95603 0 0 701300. 2426.64 0.41 0.14 0.15 -1 -1 0.41 0.0419981 0.0379528 126 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.80 vpr 63.41 MiB -1 -1 0.26 21432 1 0.07 -1 -1 33604 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64932 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 24.7 MiB 0.12 785 11260 3393 5970 1897 63.4 MiB 0.07 0.00 3.03896 -100.907 -3.03896 3.03896 0.94 0.000176898 0.00013967 0.0136204 0.0110501 -1 -1 -1 -1 32 1803 19 6.64007e+06 200928 554710. 1919.41 0.91 0.0451775 0.0379823 22834 132086 -1 1509 18 768 1281 82415 19190 2.69497 2.69497 -101.097 -2.69497 0 0 701300. 2426.64 0.32 0.04 0.12 -1 -1 0.32 0.0127569 0.0112808 101 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 5.06 vpr 63.28 MiB -1 -1 0.32 21604 1 0.04 -1 -1 33544 -1 -1 23 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64800 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 24.8 MiB 0.12 760 10873 2730 7151 992 63.3 MiB 0.07 0.00 3.24119 -98.8846 -3.24119 3.24119 0.98 0.000228736 0.000184866 0.0130461 0.0105578 -1 -1 -1 -1 32 1618 23 6.64007e+06 288834 554710. 1919.41 0.95 0.0475561 0.0394843 22834 132086 -1 1566 17 817 1243 85514 19258 2.68277 2.68277 -96.8564 -2.68277 0 0 701300. 2426.64 0.48 0.07 0.14 -1 -1 0.48 0.0185708 0.0165051 97 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.97 vpr 63.43 MiB -1 -1 0.20 21612 1 0.04 -1 -1 33908 -1 -1 23 28 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64956 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 24.8 MiB 0.19 598 14123 3741 8412 1970 63.4 MiB 0.09 0.00 3.43604 -92.6832 -3.43604 3.43604 1.07 0.000169708 0.000132942 0.0160666 0.0128136 -1 -1 -1 -1 28 1721 21 6.64007e+06 288834 500653. 1732.36 0.95 0.0525397 0.0436457 21970 115934 -1 1490 19 897 1577 103958 25003 2.68077 2.68077 -91.3985 -2.68077 0 0 612192. 2118.31 0.36 0.07 0.11 -1 -1 0.36 0.0187451 0.0164501 98 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.98 vpr 63.60 MiB -1 -1 0.20 21168 1 0.08 -1 -1 33572 -1 -1 19 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65124 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 24.9 MiB 0.12 743 5843 1254 4169 420 63.6 MiB 0.05 0.00 3.98815 -115.073 -3.98815 3.98815 0.99 0.000221873 0.000166483 0.00852825 0.00705345 -1 -1 -1 -1 30 1789 19 6.64007e+06 238602 526063. 1820.29 0.90 0.0393539 0.0332551 22546 126617 -1 1545 19 905 1489 79062 19142 2.74897 2.74897 -104.355 -2.74897 0 0 666494. 2306.21 0.29 0.04 0.11 -1 -1 0.29 0.0126004 0.0111114 110 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.98 vpr 63.53 MiB -1 -1 0.20 21316 1 0.05 -1 -1 33664 -1 -1 27 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65056 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 24.8 MiB 0.11 870 7728 1633 5460 635 63.5 MiB 0.06 0.00 3.60767 -107.985 -3.60767 3.60767 0.95 0.000176222 0.000139593 0.00864728 0.0070793 -1 -1 -1 -1 30 1852 20 6.64007e+06 339066 526063. 1820.29 0.89 0.03885 0.0327273 22546 126617 -1 1604 20 683 1201 64521 14942 2.70157 2.70157 -101.758 -2.70157 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.012621 0.0110495 103 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 5.08 vpr 63.55 MiB -1 -1 0.19 21492 1 0.05 -1 -1 33776 -1 -1 26 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65072 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 24.8 MiB 0.23 695 8727 2118 5729 880 63.5 MiB 0.07 0.00 3.3589 -102.835 -3.3589 3.3589 0.97 0.000188065 0.000150524 0.0101366 0.00826139 -1 -1 -1 -1 28 1809 23 6.64007e+06 326508 500653. 1732.36 0.86 0.0422636 0.0354255 21970 115934 -1 1598 20 885 1313 76615 19126 2.49117 2.49117 -97.9731 -2.49117 0 0 612192. 2118.31 0.26 0.04 0.11 -1 -1 0.26 0.0117765 0.0103287 105 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 6.73 vpr 64.33 MiB -1 -1 0.19 21552 1 0.04 -1 -1 33776 -1 -1 38 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65872 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 25.4 MiB 0.24 1108 10812 2420 7290 1102 64.3 MiB 0.10 0.00 4.35696 -124.357 -4.35696 4.35696 1.12 0.000281467 0.000232586 0.0135953 0.01126 -1 -1 -1 -1 26 3426 39 6.64007e+06 477204 477104. 1650.88 2.25 0.0816647 0.0694832 21682 110474 -1 2530 19 1336 2472 192577 43808 3.82982 3.82982 -127.968 -3.82982 0 0 585099. 2024.56 0.30 0.07 0.12 -1 -1 0.30 0.0175832 0.0156085 151 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 5.44 vpr 64.26 MiB -1 -1 0.24 21768 1 0.04 -1 -1 34128 -1 -1 37 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65804 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 25.4 MiB 0.21 971 9971 2311 7104 556 64.3 MiB 0.09 0.00 3.87558 -129.13 -3.87558 3.87558 1.19 0.00023749 0.000185749 0.0130968 0.010588 -1 -1 -1 -1 26 2669 33 6.64007e+06 464646 477104. 1650.88 1.10 0.0692894 0.0584043 21682 110474 -1 2141 19 1539 2437 158729 37370 3.54497 3.54497 -129.363 -3.54497 0 0 585099. 2024.56 0.26 0.05 0.11 -1 -1 0.26 0.0155324 0.0135934 147 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 5.18 vpr 63.69 MiB -1 -1 0.22 21612 1 0.04 -1 -1 33476 -1 -1 19 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65220 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 25.2 MiB 0.34 962 12186 3847 6704 1635 63.7 MiB 0.09 0.00 4.35701 -128.587 -4.35701 4.35701 1.08 0.000188717 0.000148844 0.0153062 0.012332 -1 -1 -1 -1 32 2058 21 6.64007e+06 238602 554710. 1919.41 0.97 0.0505647 0.0420132 22834 132086 -1 1817 18 977 1401 95494 21988 3.12563 3.12563 -115.954 -3.12563 0 0 701300. 2426.64 0.33 0.04 0.17 -1 -1 0.33 0.0135693 0.0119612 112 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 5.62 vpr 63.98 MiB -1 -1 0.34 21336 1 0.05 -1 -1 33972 -1 -1 25 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65520 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 25.2 MiB 0.23 1023 13933 4615 7223 2095 64.0 MiB 0.11 0.00 4.04757 -131.412 -4.04757 4.04757 1.02 0.000218812 0.000170736 0.0185025 0.0148328 -1 -1 -1 -1 32 2494 18 6.64007e+06 313950 554710. 1919.41 1.01 0.0581831 0.0482367 22834 132086 -1 2105 20 1612 2777 194031 44279 3.15237 3.15237 -115.474 -3.15237 0 0 701300. 2426.64 0.32 0.07 0.13 -1 -1 0.32 0.0163181 0.0144194 138 61 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 6.34 vpr 63.86 MiB -1 -1 0.29 21776 1 0.04 -1 -1 33920 -1 -1 29 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65392 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 25.5 MiB 0.55 1128 17687 5057 9627 3003 63.9 MiB 0.16 0.00 5.89333 -173.14 -5.89333 5.89333 1.39 0.000220093 0.000173501 0.0272758 0.0223691 -1 -1 -1 -1 32 3236 33 6.64007e+06 364182 554710. 1919.41 1.43 0.0980846 0.0833721 22834 132086 -1 2469 21 2342 3476 223308 54942 4.78815 4.78815 -164.404 -4.78815 0 0 701300. 2426.64 0.32 0.08 0.17 -1 -1 0.32 0.0192009 0.0169749 172 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 6.20 vpr 64.26 MiB -1 -1 0.22 21800 1 0.04 -1 -1 33796 -1 -1 27 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65804 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 25.3 MiB 0.49 1191 15768 5423 8594 1751 64.3 MiB 0.13 0.00 5.08361 -153.384 -5.08361 5.08361 1.06 0.000226041 0.000179125 0.0212007 0.0171848 -1 -1 -1 -1 32 2716 22 6.64007e+06 339066 554710. 1919.41 1.58 0.0895883 0.0769305 22834 132086 -1 2377 22 1795 2845 225337 48102 4.51948 4.51948 -148.412 -4.51948 0 0 701300. 2426.64 0.50 0.09 0.20 -1 -1 0.50 0.0215889 0.0190242 164 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 5.47 vpr 64.18 MiB -1 -1 0.20 21572 1 0.04 -1 -1 34060 -1 -1 31 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65716 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 25.3 MiB 0.24 1006 12661 3249 8412 1000 64.2 MiB 0.16 0.01 4.68524 -135.636 -4.68524 4.68524 1.03 0.000722622 0.000625663 0.0250127 0.0210209 -1 -1 -1 -1 32 2355 20 6.64007e+06 389298 554710. 1919.41 1.21 0.0832415 0.0717902 22834 132086 -1 2083 21 944 1573 101119 23699 3.58023 3.58023 -126.148 -3.58023 0 0 701300. 2426.64 0.32 0.05 0.15 -1 -1 0.32 0.0158948 0.0139738 135 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 5.56 vpr 63.61 MiB -1 -1 0.26 21404 1 0.03 -1 -1 33824 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65132 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 25.0 MiB 0.53 1073 14679 4707 8091 1881 63.6 MiB 0.11 0.00 4.36796 -119.855 -4.36796 4.36796 0.99 0.000189789 0.000150342 0.0171864 0.0139773 -1 -1 -1 -1 26 2749 26 6.64007e+06 288834 477104. 1650.88 1.29 0.0601886 0.0509328 21682 110474 -1 2275 22 1385 2049 156725 35071 3.92503 3.92503 -125.203 -3.92503 0 0 585099. 2024.56 0.29 0.07 0.11 -1 -1 0.29 0.0227766 0.0202842 119 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 5.65 vpr 64.54 MiB -1 -1 0.25 21608 1 0.06 -1 -1 33928 -1 -1 40 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66088 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 25.6 MiB 0.25 1249 19868 5433 11877 2558 64.5 MiB 0.16 0.00 5.1415 -166.814 -5.1415 5.1415 0.97 0.000262999 0.00020529 0.0246624 0.019761 -1 -1 -1 -1 32 2828 25 6.64007e+06 502320 554710. 1919.41 1.21 0.101357 0.086184 22834 132086 -1 2459 19 1579 2444 152376 34828 3.91929 3.91929 -146.959 -3.91929 0 0 701300. 2426.64 0.36 0.08 0.14 -1 -1 0.36 0.0253847 0.0225425 174 87 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 5.03 vpr 63.30 MiB -1 -1 0.20 21584 1 0.04 -1 -1 33648 -1 -1 21 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64820 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 24.7 MiB 0.14 803 5025 1005 3649 371 63.3 MiB 0.04 0.00 3.83987 -104.278 -3.83987 3.83987 1.00 0.000170776 0.000135656 0.00648923 0.00539808 -1 -1 -1 -1 30 1786 19 6.64007e+06 263718 526063. 1820.29 0.96 0.0382359 0.0323089 22546 126617 -1 1640 18 794 1429 83385 18942 2.83677 2.83677 -98.8728 -2.83677 0 0 666494. 2306.21 0.38 0.06 0.14 -1 -1 0.38 0.0185946 0.0165297 101 28 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 5.83 vpr 64.27 MiB -1 -1 0.21 21472 1 0.04 -1 -1 33632 -1 -1 25 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65812 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 25.5 MiB 0.38 1162 10228 2647 6642 939 64.3 MiB 0.09 0.00 5.14752 -155.108 -5.14752 5.14752 0.91 0.000208813 0.000165112 0.013527 0.0110163 -1 -1 -1 -1 26 2969 31 6.64007e+06 313950 477104. 1650.88 2.00 0.0949306 0.0823421 21682 110474 -1 2516 19 1413 2079 155667 35015 4.39628 4.39628 -150.288 -4.39628 0 0 585099. 2024.56 0.24 0.05 0.10 -1 -1 0.24 0.014872 0.0131642 144 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.16 vpr 64.04 MiB -1 -1 0.24 21584 1 0.04 -1 -1 33728 -1 -1 33 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65572 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 25.2 MiB 0.25 884 8755 1783 6202 770 64.0 MiB 0.07 0.00 3.97129 -116.286 -3.97129 3.97129 0.94 0.000211094 0.000165612 0.0106346 0.00864227 -1 -1 -1 -1 30 2199 23 6.64007e+06 414414 526063. 1820.29 1.19 0.0625556 0.0533276 22546 126617 -1 1729 19 894 1557 79184 20282 3.00716 3.00716 -105.065 -3.00716 0 0 666494. 2306.21 0.30 0.04 0.12 -1 -1 0.30 0.0143951 0.0127001 131 53 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 5.18 vpr 63.77 MiB -1 -1 0.25 21256 1 0.05 -1 -1 33536 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65296 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 25.2 MiB 0.14 912 5938 1237 4353 348 63.8 MiB 0.06 0.00 4.13756 -120.743 -4.13756 4.13756 1.00 0.000222576 0.000180028 0.00843335 0.00698851 -1 -1 -1 -1 32 2242 21 6.64007e+06 301392 554710. 1919.41 1.02 0.053062 0.04547 22834 132086 -1 1917 19 1172 2160 138053 31963 3.58142 3.58142 -118.401 -3.58142 0 0 701300. 2426.64 0.34 0.06 0.15 -1 -1 0.34 0.016291 0.0145915 123 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 5.48 vpr 64.12 MiB -1 -1 0.18 21448 1 0.04 -1 -1 34040 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65660 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 25.3 MiB 0.38 1010 13933 3725 7818 2390 64.1 MiB 0.11 0.00 4.75998 -138.258 -4.75998 4.75998 1.00 0.00029087 0.00022484 0.0188229 0.0149619 -1 -1 -1 -1 32 2399 17 6.64007e+06 301392 554710. 1919.41 1.01 0.0595673 0.0498736 22834 132086 -1 2066 21 1220 1691 122509 28327 3.22937 3.22937 -122.017 -3.22937 0 0 701300. 2426.64 0.34 0.06 0.13 -1 -1 0.34 0.0187494 0.0167229 138 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 5.50 vpr 64.06 MiB -1 -1 0.19 21564 1 0.04 -1 -1 33884 -1 -1 32 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65600 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 25.3 MiB 0.25 1025 10827 2395 7683 749 64.1 MiB 0.11 0.00 3.7957 -125.338 -3.7957 3.7957 0.87 0.000238755 0.000190582 0.0141727 0.011622 -1 -1 -1 -1 26 2743 22 6.64007e+06 401856 477104. 1650.88 1.70 0.0722645 0.0623888 21682 110474 -1 2294 21 1421 2427 174311 39299 3.11037 3.11037 -123.615 -3.11037 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.0163805 0.0144285 133 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 5.09 vpr 64.07 MiB -1 -1 0.22 21484 1 0.04 -1 -1 33868 -1 -1 37 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65612 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 25.2 MiB 0.24 1100 11381 2833 7714 834 64.1 MiB 0.10 0.00 4.776 -146.002 -4.776 4.776 1.01 0.000230039 0.000182892 0.0141904 0.0116 -1 -1 -1 -1 30 2323 18 6.64007e+06 464646 526063. 1820.29 0.94 0.0555601 0.0467584 22546 126617 -1 2024 20 953 1446 75237 18047 3.35083 3.35083 -126.151 -3.35083 0 0 666494. 2306.21 0.46 0.08 0.12 -1 -1 0.46 0.0318364 0.0282967 145 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.66 vpr 63.50 MiB -1 -1 0.21 21496 1 0.04 -1 -1 33904 -1 -1 29 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 24.9 MiB 0.14 831 7023 1481 5311 231 63.5 MiB 0.06 0.00 4.19967 -120.534 -4.19967 4.19967 0.89 0.000188041 0.000148682 0.00905889 0.00752255 -1 -1 -1 -1 30 2034 22 6.64007e+06 364182 526063. 1820.29 0.94 0.0439327 0.0370242 22546 126617 -1 1614 21 1040 1872 100357 23807 3.57043 3.57043 -112.869 -3.57043 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0137281 0.0120905 122 24 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 5.40 vpr 64.20 MiB -1 -1 0.19 21432 1 0.04 -1 -1 33776 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65740 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 25.2 MiB 0.45 1052 7888 1681 5591 616 64.2 MiB 0.08 0.00 5.2222 -143.082 -5.2222 5.2222 1.09 0.000318555 0.000263924 0.013931 0.0116803 -1 -1 -1 -1 28 2639 22 6.64007e+06 301392 500653. 1732.36 1.08 0.0632308 0.0538295 21970 115934 -1 2239 17 1340 1967 134731 31386 3.71362 3.71362 -131.242 -3.71362 0 0 612192. 2118.31 0.31 0.06 0.12 -1 -1 0.31 0.0160942 0.0142582 133 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 5.29 vpr 64.23 MiB -1 -1 0.22 21816 1 0.06 -1 -1 33676 -1 -1 25 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65776 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 25.4 MiB 0.39 1063 10423 2679 6644 1100 64.2 MiB 0.10 0.00 5.14867 -149.83 -5.14867 5.14867 1.02 0.000261212 0.000210272 0.0159837 0.013108 -1 -1 -1 -1 32 2686 22 6.64007e+06 313950 554710. 1919.41 1.02 0.0615707 0.0519101 22834 132086 -1 2409 19 1510 2389 160710 37915 4.00948 4.00948 -139.798 -4.00948 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0161929 0.0143796 148 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 5.01 vpr 64.05 MiB -1 -1 0.21 21880 1 0.05 -1 -1 33960 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65592 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 25.2 MiB 0.27 998 9347 2521 6007 819 64.1 MiB 0.08 0.00 4.34527 -132.181 -4.34527 4.34527 0.98 0.000217039 0.000171002 0.0140711 0.0114638 -1 -1 -1 -1 32 2644 20 6.64007e+06 276276 554710. 1919.41 0.97 0.0561712 0.0471862 22834 132086 -1 2163 18 1402 2519 159715 37276 3.50943 3.50943 -128.166 -3.50943 0 0 701300. 2426.64 0.31 0.05 0.13 -1 -1 0.31 0.0154815 0.0137143 136 77 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 4.91 vpr 62.69 MiB -1 -1 0.18 21192 1 0.05 -1 -1 33744 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 24.2 MiB 0.10 707 15103 5445 7308 2350 62.7 MiB 0.10 0.00 3.43127 -100.64 -3.43127 3.43127 1.05 0.000170607 0.000134842 0.0162845 0.0131314 -1 -1 -1 -1 30 1669 21 6.64007e+06 301392 526063. 1820.29 1.01 0.0485893 0.0406008 22546 126617 -1 1410 19 742 1197 79773 17941 2.56677 2.56677 -90.9898 -2.56677 0 0 666494. 2306.21 0.31 0.04 0.12 -1 -1 0.31 0.0121051 0.010708 97 23 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 5.27 vpr 64.19 MiB -1 -1 0.28 21420 1 0.04 -1 -1 34136 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65732 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 25.2 MiB 0.33 879 16907 6072 8286 2549 64.2 MiB 0.12 0.00 4.05536 -136.666 -4.05536 4.05536 0.99 0.000216949 0.000173156 0.0204331 0.016361 -1 -1 -1 -1 30 2363 22 6.64007e+06 276276 526063. 1820.29 1.06 0.0643564 0.0537226 22546 126617 -1 1963 18 1339 1924 128164 29238 3.32757 3.32757 -129.337 -3.32757 0 0 666494. 2306.21 0.31 0.05 0.13 -1 -1 0.31 0.0146209 0.0130095 127 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 6.08 vpr 64.00 MiB -1 -1 0.27 21764 1 0.04 -1 -1 34100 -1 -1 29 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65540 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 25.6 MiB 0.40 1389 17943 5716 10178 2049 64.0 MiB 0.17 0.00 5.4603 -164.178 -5.4603 5.4603 1.18 0.000282336 0.000220511 0.0250041 0.0204041 -1 -1 -1 -1 28 3504 25 6.64007e+06 364182 500653. 1732.36 1.52 0.0959882 0.0817493 21970 115934 -1 2796 23 2045 3229 234229 51765 4.64188 4.64188 -157.599 -4.64188 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.0202234 0.0178275 169 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 5.19 vpr 63.91 MiB -1 -1 0.28 21560 1 0.04 -1 -1 33716 -1 -1 32 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65444 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 25.0 MiB 0.19 1016 14331 3274 9718 1339 63.9 MiB 0.15 0.00 4.34509 -136.539 -4.34509 4.34509 1.11 0.000437252 0.000363122 0.0219095 0.017954 -1 -1 -1 -1 30 2229 19 6.64007e+06 401856 526063. 1820.29 0.98 0.0621095 0.0521602 22546 126617 -1 1863 19 994 1580 102791 22250 3.10256 3.10256 -116.251 -3.10256 0 0 666494. 2306.21 0.33 0.04 0.12 -1 -1 0.33 0.0136407 0.0120306 133 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.74 vpr 63.42 MiB -1 -1 0.19 21704 1 0.04 -1 -1 34156 -1 -1 26 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64944 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 24.7 MiB 0.11 644 6718 1441 4611 666 63.4 MiB 0.06 0.00 3.45804 -101.577 -3.45804 3.45804 1.04 0.000224951 0.000184746 0.00872935 0.00722499 -1 -1 -1 -1 32 1698 21 6.64007e+06 326508 554710. 1919.41 0.98 0.0410031 0.0345336 22834 132086 -1 1490 19 949 1542 94421 23457 2.70277 2.70277 -98.9378 -2.70277 0 0 701300. 2426.64 0.34 0.04 0.13 -1 -1 0.34 0.0136758 0.0120616 104 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 6.33 vpr 64.05 MiB -1 -1 0.37 21604 1 0.06 -1 -1 34004 -1 -1 27 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65584 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 25.5 MiB 0.73 1258 17023 5454 8906 2663 64.0 MiB 0.17 0.00 6.52766 -186.909 -6.52766 6.52766 1.14 0.000326834 0.000267197 0.0332912 0.0278021 -1 -1 -1 -1 32 3239 24 6.64007e+06 339066 554710. 1919.41 1.27 0.102575 0.0873617 22834 132086 -1 2640 21 2024 2853 204494 46202 5.44434 5.44434 -176.026 -5.44434 0 0 701300. 2426.64 0.36 0.08 0.14 -1 -1 0.36 0.0244253 0.0216205 170 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 5.16 vpr 64.02 MiB -1 -1 0.20 21552 1 0.04 -1 -1 34160 -1 -1 33 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65560 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 25.1 MiB 0.21 911 6091 1101 4753 237 64.0 MiB 0.06 0.00 4.60401 -138.195 -4.60401 4.60401 1.07 0.000212894 0.000169549 0.0087458 0.0072979 -1 -1 -1 -1 26 2408 24 6.64007e+06 414414 477104. 1650.88 1.31 0.0697118 0.0608015 21682 110474 -1 2032 21 1490 2333 156428 36434 3.77103 3.77103 -130.469 -3.77103 0 0 585099. 2024.56 0.27 0.06 0.11 -1 -1 0.27 0.0164961 0.0143616 130 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.85 vpr 63.58 MiB -1 -1 0.19 21180 1 0.05 -1 -1 33872 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65108 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 25.0 MiB 0.14 820 12375 3515 6889 1971 63.6 MiB 0.08 0.00 3.58247 -102.606 -3.58247 3.58247 0.97 0.000159828 0.000126602 0.0121084 0.00973774 -1 -1 -1 -1 26 1980 30 6.64007e+06 288834 477104. 1650.88 1.06 0.051103 0.0428844 21682 110474 -1 1821 19 887 1524 111639 25164 2.89497 2.89497 -103.885 -2.89497 0 0 585099. 2024.56 0.27 0.05 0.10 -1 -1 0.27 0.0120726 0.0105132 100 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 5.05 vpr 64.29 MiB -1 -1 0.23 21640 1 0.04 -1 -1 33820 -1 -1 34 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65836 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 25.5 MiB 0.20 1051 10223 2392 7301 530 64.3 MiB 0.10 0.00 5.62381 -137.312 -5.62381 5.62381 1.04 0.000244483 0.000192777 0.013702 0.011257 -1 -1 -1 -1 32 2518 24 6.64007e+06 426972 554710. 1919.41 1.12 0.0618896 0.0527029 22834 132086 -1 2171 22 1308 2453 164918 36700 4.71868 4.71868 -136.031 -4.71868 0 0 701300. 2426.64 0.32 0.06 0.13 -1 -1 0.32 0.0164181 0.0144813 139 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.59 vpr 63.52 MiB -1 -1 0.17 21200 1 0.05 -1 -1 33872 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65048 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 25.0 MiB 0.12 692 7404 1537 5210 657 63.5 MiB 0.05 0.00 3.45624 -104.082 -3.45624 3.45624 0.95 0.000173701 0.000138716 0.00922463 0.00745744 -1 -1 -1 -1 28 2049 24 6.64007e+06 251160 500653. 1732.36 1.07 0.047535 0.0400948 21970 115934 -1 1646 19 1091 1918 121122 30138 2.91397 2.91397 -107.034 -2.91397 0 0 612192. 2118.31 0.28 0.05 0.12 -1 -1 0.28 0.0132526 0.0117916 104 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 5.14 vpr 63.41 MiB -1 -1 0.20 21336 1 0.04 -1 -1 33924 -1 -1 33 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64928 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 24.7 MiB 0.17 661 13271 3491 8020 1760 63.4 MiB 0.10 0.00 4.08278 -107.388 -4.08278 4.08278 0.93 0.000199285 0.000157717 0.0145086 0.0116369 -1 -1 -1 -1 26 2062 20 6.64007e+06 414414 477104. 1650.88 1.26 0.063371 0.0547314 21682 110474 -1 1617 21 1029 1765 107385 26371 3.22137 3.22137 -105.887 -3.22137 0 0 585099. 2024.56 0.26 0.05 0.11 -1 -1 0.26 0.0140264 0.0123441 105 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 5.28 vpr 64.01 MiB -1 -1 0.30 21624 1 0.06 -1 -1 34096 -1 -1 26 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65544 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 25.2 MiB 0.41 1040 14871 4665 7654 2552 64.0 MiB 0.12 0.00 4.65946 -136.342 -4.65946 4.65946 0.89 0.000223462 0.000177486 0.0203526 0.0164873 -1 -1 -1 -1 32 2493 25 6.64007e+06 326508 554710. 1919.41 1.03 0.0656415 0.055207 22834 132086 -1 2225 21 1545 2329 154866 35209 3.58443 3.58443 -123.394 -3.58443 0 0 701300. 2426.64 0.31 0.06 0.15 -1 -1 0.31 0.01679 0.0148203 139 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 5.35 vpr 63.92 MiB -1 -1 0.33 21428 1 0.06 -1 -1 33612 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65452 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 25.0 MiB 0.22 791 5938 1168 4585 185 63.9 MiB 0.06 0.00 4.46745 -132.755 -4.46745 4.46745 1.08 0.000297987 0.000243786 0.0111913 0.00935995 -1 -1 -1 -1 30 1971 24 6.64007e+06 301392 526063. 1820.29 1.04 0.0626591 0.0529236 22546 126617 -1 1686 19 1164 1845 114531 26463 3.69283 3.69283 -126.907 -3.69283 0 0 666494. 2306.21 0.34 0.05 0.15 -1 -1 0.34 0.0172578 0.0150821 130 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.88 vpr 63.88 MiB -1 -1 0.22 21536 1 0.04 -1 -1 34028 -1 -1 28 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65416 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 25.2 MiB 0.19 1028 16652 5035 9308 2309 63.9 MiB 0.14 0.00 4.7434 -142.045 -4.7434 4.7434 0.97 0.000229766 0.00018499 0.0243846 0.0198378 -1 -1 -1 -1 32 2433 20 6.64007e+06 351624 554710. 1919.41 1.00 0.06708 0.0561858 22834 132086 -1 2181 18 1038 1785 133597 29133 3.69062 3.69062 -131.911 -3.69062 0 0 701300. 2426.64 0.33 0.05 0.13 -1 -1 0.33 0.0149977 0.0132236 133 51 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 5.50 vpr 63.62 MiB -1 -1 0.21 21616 1 0.05 -1 -1 33724 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65144 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 25.1 MiB 0.34 745 12681 3505 7128 2048 63.6 MiB 0.09 0.00 4.79432 -130.688 -4.79432 4.79432 0.99 0.000181527 0.000144851 0.01493 0.0121232 -1 -1 -1 -1 26 2345 22 6.64007e+06 213486 477104. 1650.88 1.51 0.0630247 0.0539543 21682 110474 -1 1909 21 1162 1601 123415 29052 3.57743 3.57743 -122.857 -3.57743 0 0 585099. 2024.56 0.27 0.05 0.11 -1 -1 0.27 0.0129238 0.0112415 105 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 5.91 vpr 63.90 MiB -1 -1 0.21 21444 1 0.04 -1 -1 34148 -1 -1 19 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65432 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 25.0 MiB 0.36 900 13966 4576 7232 2158 63.9 MiB 0.11 0.00 3.96736 -127.124 -3.96736 3.96736 1.09 0.000210367 0.000163778 0.0196495 0.0159537 -1 -1 -1 -1 32 2026 17 6.64007e+06 238602 554710. 1919.41 1.02 0.0604069 0.0503752 22834 132086 -1 1807 19 1202 1749 124457 27558 3.21857 3.21857 -118.219 -3.21857 0 0 701300. 2426.64 0.35 0.05 0.14 -1 -1 0.35 0.0147232 0.0127028 113 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 5.42 vpr 63.77 MiB -1 -1 0.21 21548 1 0.04 -1 -1 33736 -1 -1 33 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65304 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 24.9 MiB 0.18 869 11759 2827 8114 818 63.8 MiB 0.09 0.00 3.56047 -98.9603 -3.56047 3.56047 0.94 0.000201374 0.000158843 0.0130786 0.0105954 -1 -1 -1 -1 26 2387 27 6.64007e+06 414414 477104. 1650.88 1.52 0.0706386 0.0608294 21682 110474 -1 1918 19 1142 2056 143001 34435 2.91597 2.91597 -101.585 -2.91597 0 0 585099. 2024.56 0.28 0.08 0.11 -1 -1 0.28 0.0217736 0.019609 123 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.88 vpr 63.54 MiB -1 -1 0.20 21680 1 0.04 -1 -1 33968 -1 -1 35 28 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65068 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 24.8 MiB 0.17 923 12623 3556 7108 1959 63.5 MiB 0.10 0.00 4.42192 -107.107 -4.42192 4.42192 1.00 0.000255489 0.000212243 0.0161879 0.013428 -1 -1 -1 -1 26 2229 19 6.64007e+06 439530 477104. 1650.88 1.18 0.0586732 0.0496731 21682 110474 -1 1849 19 1008 1743 122228 27424 3.61562 3.61562 -105.168 -3.61562 0 0 585099. 2024.56 0.28 0.05 0.11 -1 -1 0.28 0.0140926 0.0123268 115 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.75 vpr 63.85 MiB -1 -1 0.21 21492 1 0.04 -1 -1 34116 -1 -1 18 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65384 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 25.1 MiB 0.18 685 9712 2247 6957 508 63.9 MiB 0.08 0.00 3.90078 -114.184 -3.90078 3.90078 0.96 0.000194964 0.000153905 0.0128951 0.0104153 -1 -1 -1 -1 28 1963 19 6.64007e+06 226044 500653. 1732.36 0.97 0.0472529 0.0394904 21970 115934 -1 1789 22 1400 2435 194018 45480 2.98097 2.98097 -109.97 -2.98097 0 0 612192. 2118.31 0.28 0.07 0.12 -1 -1 0.28 0.0167959 0.0148587 109 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 5.24 vpr 64.14 MiB -1 -1 0.33 21572 1 0.06 -1 -1 33652 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65680 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 25.2 MiB 0.32 936 13105 4260 6168 2677 64.1 MiB 0.10 0.00 3.98936 -131.555 -3.98936 3.98936 0.97 0.000199998 0.000157201 0.0167419 0.0135232 -1 -1 -1 -1 32 2239 20 6.64007e+06 263718 554710. 1919.41 0.94 0.0522702 0.043464 22834 132086 -1 1962 19 1286 1879 129465 29535 3.32603 3.32603 -126.53 -3.32603 0 0 701300. 2426.64 0.31 0.05 0.13 -1 -1 0.31 0.0146123 0.0129545 121 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 5.03 vpr 63.73 MiB -1 -1 0.29 21532 1 0.03 -1 -1 33688 -1 -1 32 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65256 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 25.1 MiB 0.13 1072 16295 4636 9641 2018 63.7 MiB 0.12 0.00 4.60183 -132.105 -4.60183 4.60183 1.04 0.000213155 0.00017331 0.0174468 0.0142043 -1 -1 -1 -1 32 2390 21 6.64007e+06 401856 554710. 1919.41 1.03 0.0555501 0.0466911 22834 132086 -1 1993 19 1289 2315 142374 33933 3.74683 3.74683 -120.579 -3.74683 0 0 701300. 2426.64 0.31 0.05 0.15 -1 -1 0.31 0.0133827 0.0118626 127 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 5.46 vpr 64.12 MiB -1 -1 0.20 21352 1 0.03 -1 -1 33876 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65656 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 25.3 MiB 0.41 1141 10618 2698 7154 766 64.1 MiB 0.10 0.00 5.38066 -169.108 -5.38066 5.38066 0.96 0.000239227 0.000192527 0.0143549 0.0117283 -1 -1 -1 -1 32 2845 21 6.64007e+06 301392 554710. 1919.41 1.30 0.0678073 0.0579195 22834 132086 -1 2481 20 1517 2218 154934 35578 4.34488 4.34488 -156.254 -4.34488 0 0 701300. 2426.64 0.33 0.06 0.13 -1 -1 0.33 0.0173967 0.0154004 146 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 5.13 vpr 64.04 MiB -1 -1 0.22 21492 1 0.04 -1 -1 33816 -1 -1 34 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65572 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 25.2 MiB 0.23 1093 17423 4766 10394 2263 64.0 MiB 0.16 0.00 5.20872 -147.682 -5.20872 5.20872 1.03 0.000346247 0.000289088 0.0288426 0.0235489 -1 -1 -1 -1 32 2500 30 6.64007e+06 426972 554710. 1919.41 1.10 0.0859762 0.0716294 22834 132086 -1 2186 21 1268 2336 152601 35655 4.01948 4.01948 -136.855 -4.01948 0 0 701300. 2426.64 0.29 0.06 0.15 -1 -1 0.29 0.0194958 0.0172282 144 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 6.91 vpr 64.18 MiB -1 -1 0.20 21468 1 0.04 -1 -1 33444 -1 -1 37 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65720 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 25.3 MiB 0.19 1020 5976 1067 4592 317 64.2 MiB 0.07 0.00 4.48481 -139.253 -4.48481 4.48481 0.98 0.000287704 0.000206342 0.0103034 0.00861627 -1 -1 -1 -1 26 3164 36 6.64007e+06 464646 477104. 1650.88 3.09 0.103807 0.0901925 21682 110474 -1 2547 19 1531 2648 211155 48182 3.93303 3.93303 -141.066 -3.93303 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0176421 0.015685 140 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.79 vpr 63.58 MiB -1 -1 0.24 21552 1 0.05 -1 -1 33912 -1 -1 19 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65104 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 24.9 MiB 0.16 720 9706 2873 5961 872 63.6 MiB 0.07 0.00 3.87875 -113.748 -3.87875 3.87875 0.91 0.00018793 0.000151889 0.0114303 0.00926962 -1 -1 -1 -1 26 1992 21 6.64007e+06 238602 477104. 1650.88 1.06 0.049573 0.0421375 21682 110474 -1 1698 18 953 1613 112771 26555 2.90297 2.90297 -105.777 -2.90297 0 0 585099. 2024.56 0.26 0.05 0.12 -1 -1 0.26 0.0129574 0.0114093 104 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 5.81 vpr 64.20 MiB -1 -1 0.22 21484 1 0.05 -1 -1 34016 -1 -1 23 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65736 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 25.4 MiB 0.24 943 11431 3023 6401 2007 64.2 MiB 0.11 0.00 4.78844 -139.402 -4.78844 4.78844 1.08 0.00029841 0.000242872 0.0231366 0.0192215 -1 -1 -1 -1 32 2212 20 6.64007e+06 288834 554710. 1919.41 1.15 0.0847929 0.0722824 22834 132086 -1 1966 20 1597 2426 179462 40072 3.71863 3.71863 -132.49 -3.71863 0 0 701300. 2426.64 0.55 0.12 0.21 -1 -1 0.55 0.0337151 0.0299312 138 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 5.91 vpr 64.20 MiB -1 -1 0.19 21540 1 0.04 -1 -1 33796 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65740 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 25.4 MiB 0.31 1173 16170 4393 9836 1941 64.2 MiB 0.15 0.00 5.44166 -158.46 -5.44166 5.44166 1.00 0.000224564 0.00018008 0.0224828 0.0182688 -1 -1 -1 -1 26 2974 49 6.64007e+06 326508 477104. 1650.88 2.03 0.0938843 0.0797855 21682 110474 -1 2414 21 1521 2276 183268 40328 4.33689 4.33689 -148.154 -4.33689 0 0 585099. 2024.56 0.24 0.06 0.11 -1 -1 0.24 0.0145687 0.0127676 140 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 5.55 vpr 64.17 MiB -1 -1 0.33 21560 1 0.04 -1 -1 33908 -1 -1 30 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65708 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 25.3 MiB 0.40 1216 15003 5067 8222 1714 64.2 MiB 0.12 0.00 5.37715 -156.166 -5.37715 5.37715 0.91 0.000248258 0.000167092 0.0198686 0.0160921 -1 -1 -1 -1 30 2440 19 6.64007e+06 376740 526063. 1820.29 0.97 0.0592141 0.0495749 22546 126617 -1 2046 18 972 1556 95320 21315 4.16988 4.16988 -141.14 -4.16988 0 0 666494. 2306.21 0.56 0.09 0.20 -1 -1 0.56 0.0306007 0.0274704 148 47 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 5.67 vpr 64.10 MiB -1 -1 0.23 21504 1 0.04 -1 -1 33804 -1 -1 33 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65636 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 25.3 MiB 0.34 895 9815 2159 6479 1177 64.1 MiB 0.09 0.00 4.45681 -130.071 -4.45681 4.45681 1.08 0.00040942 0.000342841 0.017266 0.0142703 -1 -1 -1 -1 32 2077 19 6.64007e+06 414414 554710. 1919.41 1.17 0.068373 0.057863 22834 132086 -1 1875 20 1234 2049 117187 28580 3.30083 3.30083 -119.653 -3.30083 0 0 701300. 2426.64 0.51 0.07 0.14 -1 -1 0.51 0.0239819 0.0214752 135 83 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 5.24 vpr 64.05 MiB -1 -1 0.23 21412 1 0.06 -1 -1 33960 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65592 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 25.3 MiB 0.21 1069 14407 4171 8795 1441 64.1 MiB 0.11 0.00 4.99084 -144.739 -4.99084 4.99084 0.95 0.000221906 0.000176164 0.019619 0.015894 -1 -1 -1 -1 32 2668 20 6.64007e+06 263718 554710. 1919.41 0.99 0.0594309 0.0497162 22834 132086 -1 2353 19 1391 2494 178708 39579 3.75062 3.75062 -139.109 -3.75062 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0192183 0.0172455 134 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 5.17 vpr 64.16 MiB -1 -1 0.26 21308 1 0.09 -1 -1 34096 -1 -1 31 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65700 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 25.4 MiB 0.23 991 14168 3722 8736 1710 64.2 MiB 0.10 0.00 4.90164 -138.394 -4.90164 4.90164 0.95 0.000240485 0.000190466 0.0175885 0.0141857 -1 -1 -1 -1 26 2358 19 6.64007e+06 389298 477104. 1650.88 0.87 0.0554864 0.0462143 21682 110474 -1 2059 21 1193 1929 132387 29914 3.62843 3.62843 -127.623 -3.62843 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0161528 0.0141862 132 85 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.70 vpr 63.33 MiB -1 -1 0.25 21144 1 0.05 -1 -1 33904 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 24.9 MiB 0.11 698 12416 3955 6725 1736 63.3 MiB 0.08 0.00 3.88758 -112.734 -3.88758 3.88758 1.00 0.000156936 0.000123515 0.0135271 0.0108882 -1 -1 -1 -1 28 1776 22 6.64007e+06 188370 500653. 1732.36 1.00 0.0562446 0.0477065 21970 115934 -1 1610 16 827 1253 97467 22192 3.16737 3.16737 -109.621 -3.16737 0 0 612192. 2118.31 0.29 0.04 0.11 -1 -1 0.29 0.0112291 0.00983157 96 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.93 vpr 64.20 MiB -1 -1 0.22 21388 1 0.06 -1 -1 33736 -1 -1 32 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65744 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 25.4 MiB 0.32 964 13455 3168 8058 2229 64.2 MiB 0.10 0.00 4.65236 -138.008 -4.65236 4.65236 0.96 0.000211846 0.000166759 0.0153179 0.0123404 -1 -1 -1 -1 32 2266 21 6.64007e+06 401856 554710. 1919.41 0.99 0.0540971 0.0450169 22834 132086 -1 1834 21 1297 2159 133098 31359 3.72183 3.72183 -126.441 -3.72183 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0161499 0.0142039 132 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 5.19 vpr 64.10 MiB -1 -1 0.22 21588 1 0.04 -1 -1 34024 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65640 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 25.2 MiB 0.36 1060 10103 2308 6560 1235 64.1 MiB 0.09 0.00 4.84241 -152.382 -4.84241 4.84241 1.04 0.000243823 0.000195012 0.0163721 0.0134288 -1 -1 -1 -1 32 2649 24 6.64007e+06 276276 554710. 1919.41 1.05 0.0649357 0.054855 22834 132086 -1 2387 22 1966 3185 227280 52170 4.04423 4.04423 -149.366 -4.04423 0 0 701300. 2426.64 0.32 0.08 0.16 -1 -1 0.32 0.0200206 0.01744 148 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 5.35 vpr 63.52 MiB -1 -1 0.22 21636 1 0.04 -1 -1 33848 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65044 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 24.8 MiB 0.36 933 13992 4098 8142 1752 63.5 MiB 0.09 0.00 4.31784 -124.298 -4.31784 4.31784 0.99 0.000188288 0.000149867 0.0167278 0.0134338 -1 -1 -1 -1 26 2333 27 6.64007e+06 251160 477104. 1650.88 1.37 0.0608165 0.0508398 21682 110474 -1 2014 20 1088 1443 117053 25629 3.30403 3.30403 -118.207 -3.30403 0 0 585099. 2024.56 0.25 0.05 0.10 -1 -1 0.25 0.0144553 0.0127746 109 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 5.84 vpr 63.48 MiB -1 -1 0.20 21168 1 0.05 -1 -1 33860 -1 -1 21 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65008 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 24.9 MiB 0.20 781 9417 2297 6451 669 63.5 MiB 0.07 0.00 3.81035 -109.522 -3.81035 3.81035 0.99 0.000163905 0.000129827 0.0101809 0.00828012 -1 -1 -1 -1 32 1805 21 6.64007e+06 263718 554710. 1919.41 1.21 0.072009 0.0621269 22834 132086 -1 1623 22 1006 1686 116113 26730 2.91397 2.91397 -103.946 -2.91397 0 0 701300. 2426.64 0.30 0.04 0.13 -1 -1 0.30 0.0115767 0.0101536 106 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 5.45 vpr 64.18 MiB -1 -1 0.23 21704 1 0.05 -1 -1 34084 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65716 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 25.3 MiB 0.41 894 10542 2833 7069 640 64.2 MiB 0.09 0.00 5.11544 -156.533 -5.11544 5.11544 1.03 0.000213087 0.000169043 0.0137478 0.0112115 -1 -1 -1 -1 28 2905 29 6.64007e+06 326508 500653. 1732.36 1.18 0.0590217 0.0496444 21970 115934 -1 2270 21 1717 2234 150681 36479 4.29109 4.29109 -151.66 -4.29109 0 0 612192. 2118.31 0.29 0.05 0.13 -1 -1 0.29 0.0152406 0.013412 144 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 6.51 vpr 64.13 MiB -1 -1 0.23 21520 1 0.04 -1 -1 34016 -1 -1 29 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65672 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 25.3 MiB 0.44 1216 13953 3630 8615 1708 64.1 MiB 0.10 0.00 5.10413 -156.46 -5.10413 5.10413 1.03 0.00021696 0.000170254 0.0167898 0.0135009 -1 -1 -1 -1 26 3309 49 6.64007e+06 364182 477104. 1650.88 2.08 0.0779992 0.0653382 21682 110474 -1 2648 21 1678 2630 217673 46245 4.63868 4.63868 -154.565 -4.63868 0 0 585099. 2024.56 0.35 0.08 0.12 -1 -1 0.35 0.0191522 0.0170585 155 56 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 6.64 vpr 64.30 MiB -1 -1 0.21 21524 1 0.04 -1 -1 33568 -1 -1 36 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65844 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 25.4 MiB 0.26 1246 17036 4529 10969 1538 64.3 MiB 0.14 0.00 5.4761 -148.295 -5.4761 5.4761 1.32 0.000222564 0.000177006 0.0201653 0.0164469 -1 -1 -1 -1 26 3134 35 6.64007e+06 452088 477104. 1650.88 1.73 0.0860022 0.0733867 21682 110474 -1 2607 21 1733 3199 243499 53638 4.55949 4.55949 -150.976 -4.55949 0 0 585099. 2024.56 0.49 0.15 0.18 -1 -1 0.49 0.0369427 0.0328685 153 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.84 vpr 63.95 MiB -1 -1 0.20 21488 1 0.04 -1 -1 34076 -1 -1 32 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65488 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 25.1 MiB 0.19 874 9892 2506 6506 880 64.0 MiB 0.08 0.00 3.51924 -103.944 -3.51924 3.51924 1.04 0.000195795 0.000154413 0.0110961 0.00905201 -1 -1 -1 -1 30 1855 19 6.64007e+06 401856 526063. 1820.29 0.90 0.0447582 0.0376064 22546 126617 -1 1645 19 1016 1803 85739 21372 2.80477 2.80477 -98.9098 -2.80477 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0136392 0.0120547 121 52 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.59 vpr 63.35 MiB -1 -1 0.25 21568 1 0.04 -1 -1 34048 -1 -1 21 27 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64872 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 24.8 MiB 0.11 565 12120 3265 7503 1352 63.4 MiB 0.07 0.00 3.49724 -93.0073 -3.49724 3.49724 1.03 0.000169753 0.000135028 0.0143122 0.0115101 -1 -1 -1 -1 28 1552 21 6.64007e+06 263718 500653. 1732.36 0.90 0.0472616 0.0391207 21970 115934 -1 1349 20 1009 1487 99406 23958 2.83997 2.83997 -92.1671 -2.83997 0 0 612192. 2118.31 0.29 0.04 0.12 -1 -1 0.29 0.0120089 0.0104757 97 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 6.88 vpr 64.02 MiB -1 -1 0.23 21820 1 0.04 -1 -1 33960 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65560 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 25.5 MiB 0.40 1324 16572 5072 8808 2692 64.0 MiB 0.18 0.00 4.42635 -141.521 -4.42635 4.42635 1.59 0.00121267 0.00107701 0.0369494 0.0309745 -1 -1 -1 -1 32 3259 35 6.64007e+06 326508 554710. 1919.41 1.59 0.136479 0.117122 22834 132086 -1 2737 20 1821 3112 227397 48414 4.03623 4.03623 -137.329 -4.03623 0 0 701300. 2426.64 0.29 0.07 0.23 -1 -1 0.29 0.0169385 0.0148813 170 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 5.45 vpr 63.98 MiB -1 -1 0.23 21860 1 0.05 -1 -1 34032 -1 -1 23 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65512 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 25.2 MiB 0.47 1050 12371 3182 7852 1337 64.0 MiB 0.15 0.00 5.43386 -156.366 -5.43386 5.43386 1.09 0.000351519 0.000276414 0.0250944 0.0201231 -1 -1 -1 -1 32 2467 20 6.64007e+06 288834 554710. 1919.41 1.16 0.0738519 0.0614409 22834 132086 -1 2222 23 1450 2394 179772 39496 4.42648 4.42648 -147.66 -4.42648 0 0 701300. 2426.64 0.32 0.07 0.14 -1 -1 0.32 0.0187015 0.0163149 152 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 5.82 vpr 63.92 MiB -1 -1 0.21 21584 1 0.04 -1 -1 34160 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65452 32 32 331 280 1 174 84 17 17 289 -1 unnamed_device 25.1 MiB 0.40 941 14175 4029 8632 1514 63.9 MiB 0.11 0.00 4.2933 -133.018 -4.2933 4.2933 1.38 0.000198776 0.00015713 0.0207467 0.0169777 -1 -1 -1 -1 32 2137 21 6.64007e+06 251160 554710. 1919.41 1.18 0.0701079 0.0591558 22834 132086 -1 2004 23 1337 1980 158485 34343 3.51963 3.51963 -132.516 -3.51963 0 0 701300. 2426.64 0.32 0.05 0.13 -1 -1 0.32 0.0147302 0.0128595 130 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 5.08 vpr 64.29 MiB -1 -1 0.23 21532 1 0.04 -1 -1 33584 -1 -1 30 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65832 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 25.3 MiB 0.14 1025 10744 3084 7154 506 64.3 MiB 0.09 0.00 5.21217 -134.409 -5.21217 5.21217 1.04 0.000331779 0.000278081 0.0144183 0.0118358 -1 -1 -1 -1 30 2184 21 6.64007e+06 376740 526063. 1820.29 1.01 0.0598104 0.0503249 22546 126617 -1 1937 18 867 1471 89050 19926 3.73062 3.73062 -118.693 -3.73062 0 0 666494. 2306.21 0.32 0.05 0.19 -1 -1 0.32 0.0164859 0.014733 126 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 5.35 vpr 64.09 MiB -1 -1 0.21 21340 1 0.04 -1 -1 33672 -1 -1 34 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65632 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 25.3 MiB 0.26 1033 6757 1363 4872 522 64.1 MiB 0.07 0.00 5.06104 -138.99 -5.06104 5.06104 1.03 0.000363582 0.000312568 0.0113947 0.0096555 -1 -1 -1 -1 26 2574 21 6.64007e+06 426972 477104. 1650.88 1.33 0.103937 0.0921241 21682 110474 -1 2282 20 1591 2581 146564 35944 3.83083 3.83083 -132.863 -3.83083 0 0 585099. 2024.56 0.29 0.06 0.11 -1 -1 0.29 0.0186627 0.0164756 145 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 5.36 vpr 63.89 MiB -1 -1 0.22 21320 1 0.04 -1 -1 34148 -1 -1 31 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65424 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 25.0 MiB 0.22 1000 10173 2480 6565 1128 63.9 MiB 0.12 0.00 3.68089 -112.079 -3.68089 3.68089 1.02 0.000444252 0.000360705 0.0216755 0.0182489 -1 -1 -1 -1 32 2189 21 6.64007e+06 389298 554710. 1919.41 1.11 0.0855121 0.0731107 22834 132086 -1 1934 21 992 1861 125297 27515 2.93217 2.93217 -104.52 -2.93217 0 0 701300. 2426.64 0.41 0.07 0.17 -1 -1 0.41 0.0232143 0.0207969 124 51 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 5.60 vpr 64.41 MiB -1 -1 0.27 21612 1 0.04 -1 -1 33768 -1 -1 25 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65960 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 25.5 MiB 0.43 1181 8207 1889 5862 456 64.4 MiB 0.09 0.00 5.21333 -162.921 -5.21333 5.21333 1.03 0.000226497 0.000177397 0.0119918 0.00982629 -1 -1 -1 -1 32 2916 22 6.64007e+06 313950 554710. 1919.41 1.32 0.0706068 0.0607564 22834 132086 -1 2540 21 1769 2749 219470 47322 4.11269 4.11269 -146.472 -4.11269 0 0 701300. 2426.64 0.31 0.07 0.12 -1 -1 0.31 0.0180291 0.0158781 148 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 5.98 vpr 64.14 MiB -1 -1 0.24 21904 1 0.05 -1 -1 33800 -1 -1 36 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65680 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 25.3 MiB 0.25 1091 17268 5141 9536 2591 64.1 MiB 0.13 0.00 4.75546 -148.32 -4.75546 4.75546 0.98 0.000234527 0.000184907 0.0206967 0.0168222 -1 -1 -1 -1 26 2685 30 6.64007e+06 452088 477104. 1650.88 1.65 0.0999205 0.0863977 21682 110474 -1 2255 18 1257 1979 128650 29661 3.48203 3.48203 -130.715 -3.48203 0 0 585099. 2024.56 0.36 0.08 0.12 -1 -1 0.36 0.0258526 0.023349 144 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.67 vpr 62.21 MiB -1 -1 0.23 21348 1 0.03 -1 -1 33916 -1 -1 17 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 63704 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 23.6 MiB 0.11 588 12030 3358 7039 1633 62.2 MiB 0.07 0.00 3.76255 -108.245 -3.76255 3.76255 0.98 0.000166741 0.000130966 0.013853 0.0111491 -1 -1 -1 -1 30 1348 20 6.64007e+06 213486 526063. 1820.29 0.95 0.0449142 0.0375031 22546 126617 -1 1205 18 807 1162 78445 17743 2.56837 2.56837 -95.382 -2.56837 0 0 666494. 2306.21 0.31 0.04 0.13 -1 -1 0.31 0.0122402 0.0106425 91 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 5.08 vpr 62.81 MiB -1 -1 0.24 21564 1 0.03 -1 -1 34056 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 310 266 1 176 85 17 17 289 -1 unnamed_device 23.8 MiB 0.30 778 6037 1272 4427 338 62.8 MiB 0.07 0.00 4.48879 -126.842 -4.48879 4.48879 0.99 0.000416213 0.000323244 0.0114506 0.00954607 -1 -1 -1 -1 32 2251 23 6.64007e+06 263718 554710. 1919.41 1.10 0.0593538 0.0500414 22834 132086 -1 1743 18 964 1268 93490 22694 3.24503 3.24503 -119.32 -3.24503 0 0 701300. 2426.64 0.34 0.04 0.13 -1 -1 0.34 0.0116991 0.0103031 118 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 5.10 vpr 63.98 MiB -1 -1 0.20 21436 1 0.05 -1 -1 33752 -1 -1 37 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65512 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 25.0 MiB 0.15 1008 6132 1183 4581 368 64.0 MiB 0.06 0.00 4.78944 -127.311 -4.78944 4.78944 0.95 0.000208465 0.000165707 0.00769296 0.00640021 -1 -1 -1 -1 26 2494 22 6.64007e+06 464646 477104. 1650.88 1.17 0.0580782 0.050279 21682 110474 -1 2169 20 1399 2498 165534 38412 3.93603 3.93603 -128.563 -3.93603 0 0 585099. 2024.56 0.35 0.06 0.11 -1 -1 0.35 0.0154133 0.0136646 129 33 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 5.34 vpr 63.46 MiB -1 -1 0.22 21368 1 0.04 -1 -1 33864 -1 -1 22 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64988 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 24.7 MiB 0.35 764 14303 4579 7529 2195 63.5 MiB 0.10 0.00 4.38281 -116.371 -4.38281 4.38281 1.05 0.000167696 0.000132554 0.0160852 0.0129068 -1 -1 -1 -1 28 2083 19 6.64007e+06 276276 500653. 1732.36 1.20 0.071621 0.0616544 21970 115934 -1 1681 20 1101 1443 96185 22508 3.23483 3.23483 -107.841 -3.23483 0 0 612192. 2118.31 0.26 0.04 0.12 -1 -1 0.26 0.0117702 0.0103844 109 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 5.19 vpr 63.41 MiB -1 -1 0.29 21540 1 0.05 -1 -1 34048 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 24.8 MiB 0.17 868 10406 2691 6847 868 63.4 MiB 0.08 0.00 3.9428 -121.707 -3.9428 3.9428 1.07 0.00018647 0.000148549 0.0127478 0.0103692 -1 -1 -1 -1 32 1810 20 6.64007e+06 213486 554710. 1919.41 1.01 0.0586914 0.0497791 22834 132086 -1 1706 20 1156 2003 136026 30795 2.79857 2.79857 -109.128 -2.79857 0 0 701300. 2426.64 0.38 0.06 0.14 -1 -1 0.38 0.015585 0.013868 108 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 5.24 vpr 64.14 MiB -1 -1 0.23 21568 1 0.05 -1 -1 34056 -1 -1 36 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65684 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 25.4 MiB 0.19 875 8079 1601 6137 341 64.1 MiB 0.08 0.00 4.17918 -122.781 -4.17918 4.17918 0.98 0.000223805 0.000177197 0.0103629 0.00850379 -1 -1 -1 -1 28 2410 36 6.64007e+06 452088 500653. 1732.36 1.24 0.0695457 0.0590886 21970 115934 -1 1875 21 1356 2240 134886 34729 3.20157 3.20157 -114.587 -3.20157 0 0 612192. 2118.31 0.29 0.06 0.11 -1 -1 0.29 0.016628 0.0145558 136 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.90 vpr 63.56 MiB -1 -1 0.19 21612 1 0.04 -1 -1 33728 -1 -1 20 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65084 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 24.8 MiB 0.29 883 11423 3367 6862 1194 63.6 MiB 0.08 0.00 4.01573 -121.888 -4.01573 4.01573 1.01 0.000173812 0.000137483 0.0136947 0.0111471 -1 -1 -1 -1 26 2117 20 6.64007e+06 251160 477104. 1650.88 0.89 0.0469238 0.0394518 21682 110474 -1 1747 20 1087 1540 101106 24211 3.08363 3.08363 -115.072 -3.08363 0 0 585099. 2024.56 0.27 0.04 0.11 -1 -1 0.27 0.0124043 0.0109474 107 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 5.08 vpr 64.23 MiB -1 -1 0.20 21600 1 0.04 -1 -1 33860 -1 -1 32 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65772 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 25.2 MiB 0.21 851 8418 1678 5980 760 64.2 MiB 0.07 0.00 3.82753 -117.666 -3.82753 3.82753 0.97 0.000225004 0.000179121 0.0114195 0.00938454 -1 -1 -1 -1 28 2478 22 6.64007e+06 401856 500653. 1732.36 1.13 0.0599613 0.0513133 21970 115934 -1 1955 23 1317 2265 161744 43770 2.98117 2.98117 -112.322 -2.98117 0 0 612192. 2118.31 0.28 0.07 0.12 -1 -1 0.28 0.0200224 0.0176059 127 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 5.27 vpr 64.20 MiB -1 -1 0.21 21804 1 0.05 -1 -1 33820 -1 -1 32 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65736 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 25.4 MiB 0.32 974 12839 3425 8126 1288 64.2 MiB 0.10 0.00 4.34696 -135.951 -4.34696 4.34696 1.06 0.000228512 0.00018017 0.0161538 0.0130422 -1 -1 -1 -1 32 2188 19 6.64007e+06 401856 554710. 1919.41 0.95 0.0580896 0.0484063 22834 132086 -1 1958 21 1309 1812 123981 28855 3.33103 3.33103 -127.587 -3.33103 0 0 701300. 2426.64 0.35 0.05 0.13 -1 -1 0.35 0.0177756 0.0157005 138 91 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 5.16 vpr 63.85 MiB -1 -1 0.20 21480 1 0.04 -1 -1 33688 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65384 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 24.9 MiB 0.23 712 8656 2009 6156 491 63.9 MiB 0.07 0.00 3.3851 -102.924 -3.3851 3.3851 1.13 0.000188809 0.000148886 0.0121513 0.00977863 -1 -1 -1 -1 28 2051 39 6.64007e+06 213486 500653. 1732.36 1.04 0.0517484 0.0427169 21970 115934 -1 1784 17 1002 1552 122933 29414 2.93417 2.93417 -107.966 -2.93417 0 0 612192. 2118.31 0.33 0.05 0.12 -1 -1 0.33 0.0142102 0.0124128 104 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.97 vpr 63.70 MiB -1 -1 0.20 21616 1 0.04 -1 -1 33804 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65232 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 25.1 MiB 0.31 948 9385 2467 6027 891 63.7 MiB 0.08 0.00 4.44818 -138.832 -4.44818 4.44818 1.00 0.000204311 0.000163276 0.0113835 0.00918296 -1 -1 -1 -1 32 2287 21 6.64007e+06 263718 554710. 1919.41 0.98 0.0469897 0.0391875 22834 132086 -1 2029 21 1119 1638 128993 28031 3.39203 3.39203 -129.192 -3.39203 0 0 701300. 2426.64 0.31 0.05 0.13 -1 -1 0.31 0.0144236 0.0125839 117 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 5.23 vpr 63.98 MiB -1 -1 0.31 21496 1 0.04 -1 -1 33964 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65520 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 25.0 MiB 0.34 1058 7767 1828 5291 648 64.0 MiB 0.07 0.00 4.73583 -140.794 -4.73583 4.73583 0.99 0.000204029 0.000162164 0.0108528 0.00894485 -1 -1 -1 -1 32 2491 22 6.64007e+06 288834 554710. 1919.41 1.09 0.0519949 0.0441782 22834 132086 -1 2097 21 1513 2026 141902 33771 3.92523 3.92523 -134.778 -3.92523 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0153113 0.0134877 130 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.82 vpr 63.94 MiB -1 -1 0.19 21424 1 0.04 -1 -1 33912 -1 -1 29 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65476 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 25.1 MiB 0.23 961 12753 3692 7785 1276 63.9 MiB 0.10 0.00 4.75755 -125.045 -4.75755 4.75755 1.02 0.000207631 0.000166508 0.0160739 0.0132038 -1 -1 -1 -1 32 1971 18 6.64007e+06 364182 554710. 1919.41 0.95 0.0562672 0.047464 22834 132086 -1 1845 19 807 1354 87570 20360 3.28883 3.28883 -110.424 -3.28883 0 0 701300. 2426.64 0.31 0.05 0.13 -1 -1 0.31 0.0167016 0.0149137 122 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 6.24 vpr 64.20 MiB -1 -1 0.20 21592 1 0.04 -1 -1 34104 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65740 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 25.2 MiB 0.43 846 9643 2135 6651 857 64.2 MiB 0.10 0.00 5.52409 -167.953 -5.52409 5.52409 1.02 0.000238583 0.000188463 0.0151312 0.0123654 -1 -1 -1 -1 34 2787 38 6.64007e+06 301392 585099. 2024.56 2.18 0.118619 0.100601 23122 138558 -1 1936 24 1573 2308 150807 38792 4.46809 4.46809 -156.232 -4.46809 0 0 742403. 2568.87 0.30 0.06 0.13 -1 -1 0.30 0.0185594 0.0162769 154 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 5.01 vpr 63.35 MiB -1 -1 0.27 21184 1 0.05 -1 -1 33660 -1 -1 18 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64872 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 24.9 MiB 0.18 599 7956 1801 5879 276 63.4 MiB 0.06 0.00 3.65226 -97.6941 -3.65226 3.65226 0.97 0.000190565 0.000150085 0.00942531 0.00774206 -1 -1 -1 -1 32 1638 19 6.64007e+06 226044 554710. 1919.41 0.96 0.0388896 0.0328137 22834 132086 -1 1460 18 787 1272 92647 21532 2.73697 2.73697 -94.3223 -2.73697 0 0 701300. 2426.64 0.36 0.04 0.14 -1 -1 0.36 0.0118549 0.0104435 96 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 5.43 vpr 64.33 MiB -1 -1 0.24 21600 1 0.04 -1 -1 33936 -1 -1 34 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65876 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 25.3 MiB 0.22 954 8873 1826 6622 425 64.3 MiB 0.08 0.00 4.24713 -140.193 -4.24713 4.24713 1.05 0.00023769 0.000187586 0.0117671 0.00955573 -1 -1 -1 -1 28 2572 31 6.64007e+06 426972 500653. 1732.36 1.22 0.0680236 0.0576681 21970 115934 -1 2175 22 1537 2339 173372 39376 3.93503 3.93503 -141.075 -3.93503 0 0 612192. 2118.31 0.36 0.08 0.15 -1 -1 0.36 0.0222961 0.0195268 145 90 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 5.14 vpr 63.83 MiB -1 -1 0.22 21560 1 0.04 -1 -1 33952 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65360 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 25.0 MiB 0.33 874 12856 4533 6666 1657 63.8 MiB 0.09 0.00 3.54047 -123.335 -3.54047 3.54047 1.01 0.000213253 0.000167159 0.0183628 0.0147903 -1 -1 -1 -1 32 1825 21 6.64007e+06 213486 554710. 1919.41 0.96 0.0594558 0.0495771 22834 132086 -1 1655 20 1321 1938 116061 28088 3.01617 3.01617 -121.412 -3.01617 0 0 701300. 2426.64 0.29 0.06 0.14 -1 -1 0.29 0.0182957 0.0161487 114 96 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 5.36 vpr 63.93 MiB -1 -1 0.33 21500 1 0.06 -1 -1 33864 -1 -1 32 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65460 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 25.1 MiB 0.20 1033 11265 2868 7471 926 63.9 MiB 0.10 0.00 4.43584 -135.56 -4.43584 4.43584 0.92 0.0002199 0.00017203 0.014604 0.0118784 -1 -1 -1 -1 28 2229 14 6.64007e+06 401856 500653. 1732.36 1.10 0.0595779 0.0506728 21970 115934 -1 2115 16 925 1438 98496 22347 3.21363 3.21363 -121.41 -3.21363 0 0 612192. 2118.31 0.28 0.05 0.11 -1 -1 0.28 0.0157475 0.0141297 131 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 6.94 vpr 64.02 MiB -1 -1 0.34 21944 1 0.04 -1 -1 33896 -1 -1 27 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65556 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 25.6 MiB 0.75 1323 13963 4525 7204 2234 64.0 MiB 0.16 0.00 6.49387 -193.63 -6.49387 6.49387 1.34 0.000331439 0.000275352 0.0261285 0.0219094 -1 -1 -1 -1 30 3412 26 6.64007e+06 339066 526063. 1820.29 1.71 0.102584 0.0887611 22546 126617 -1 2684 24 1644 2427 183612 38569 5.12274 5.12274 -170.078 -5.12274 0 0 666494. 2306.21 0.35 0.09 0.12 -1 -1 0.35 0.0261895 0.0229144 170 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 5.43 vpr 63.61 MiB -1 -1 0.21 21240 1 0.04 -1 -1 33836 -1 -1 18 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65132 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 25.1 MiB 0.26 724 10744 2740 6987 1017 63.6 MiB 0.06 0.00 3.31307 -103.05 -3.31307 3.31307 1.04 0.000147902 0.000116257 0.0110141 0.00883102 -1 -1 -1 -1 32 1572 19 6.64007e+06 226044 554710. 1919.41 0.97 0.0409312 0.0340667 22834 132086 -1 1483 13 658 840 62111 14307 2.32491 2.32491 -94.088 -2.32491 0 0 701300. 2426.64 0.34 0.03 0.14 -1 -1 0.34 0.00919577 0.00818263 87 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.91 vpr 63.53 MiB -1 -1 0.33 21556 1 0.04 -1 -1 33684 -1 -1 16 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65052 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 24.8 MiB 0.11 653 10370 2942 6125 1303 63.5 MiB 0.07 0.00 4.12598 -117.274 -4.12598 4.12598 0.99 0.000203431 0.000163226 0.0139423 0.0113538 -1 -1 -1 -1 26 1686 20 6.64007e+06 200928 477104. 1650.88 0.98 0.0549514 0.0463637 21682 110474 -1 1476 18 837 1320 110296 24299 2.92297 2.92297 -108.566 -2.92297 0 0 585099. 2024.56 0.25 0.04 0.11 -1 -1 0.25 0.012556 0.0111293 92 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 5.01 vpr 62.90 MiB -1 -1 0.24 21556 1 0.03 -1 -1 33696 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 24.4 MiB 0.12 882 10687 2740 7287 660 62.9 MiB 0.08 0.00 3.50309 -113.66 -3.50309 3.50309 1.06 0.000193155 0.000153084 0.0131685 0.0106646 -1 -1 -1 -1 32 1995 21 6.64007e+06 263718 554710. 1919.41 1.00 0.0523799 0.0439953 22834 132086 -1 1900 18 1046 1918 134410 29742 2.72357 2.72357 -108.004 -2.72357 0 0 701300. 2426.64 0.32 0.05 0.13 -1 -1 0.32 0.0135881 0.0118835 115 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 5.06 vpr 63.26 MiB -1 -1 0.22 21412 1 0.06 -1 -1 33808 -1 -1 27 25 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64780 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 24.6 MiB 0.10 444 9966 3251 4492 2223 63.3 MiB 0.05 0.00 3.40927 -77.6354 -3.40927 3.40927 1.04 0.000140809 0.000110927 0.00964516 0.00780802 -1 -1 -1 -1 28 1484 27 6.64007e+06 339066 500653. 1732.36 1.12 0.0428725 0.0360897 21970 115934 -1 1248 20 772 1308 108617 28461 2.96837 2.96837 -79.7493 -2.96837 0 0 612192. 2118.31 0.27 0.04 0.11 -1 -1 0.27 0.0104154 0.00922943 89 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 5.23 vpr 64.00 MiB -1 -1 0.22 21388 1 0.04 -1 -1 33808 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65532 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 25.2 MiB 0.36 946 11431 2748 6950 1733 64.0 MiB 0.09 0.00 4.37233 -131.494 -4.37233 4.37233 1.00 0.000263354 0.000214285 0.0168416 0.0137292 -1 -1 -1 -1 32 2550 23 6.64007e+06 263718 554710. 1919.41 1.01 0.0655731 0.0552376 22834 132086 -1 2069 20 1308 2361 139562 33439 3.60963 3.60963 -126.176 -3.60963 0 0 701300. 2426.64 0.32 0.06 0.13 -1 -1 0.32 0.018475 0.0160623 136 72 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.01 vpr 64.22 MiB -1 -1 0.22 21844 1 0.06 -1 -1 34132 -1 -1 35 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65764 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 25.3 MiB 0.24 961 9998 2423 6940 635 64.2 MiB 0.09 0.00 4.49598 -142.588 -4.49598 4.49598 0.95 0.000241488 0.000191424 0.0138518 0.0113675 -1 -1 -1 -1 32 2313 19 6.64007e+06 439530 554710. 1919.41 0.95 0.0547129 0.0455445 22834 132086 -1 1958 17 1274 1962 116698 27985 3.33083 3.33083 -125.991 -3.33083 0 0 701300. 2426.64 0.34 0.05 0.16 -1 -1 0.34 0.0161459 0.0142364 143 90 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 5.29 vpr 64.05 MiB -1 -1 0.23 21492 1 0.06 -1 -1 33880 -1 -1 30 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65588 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 25.2 MiB 0.57 1143 17347 5477 9563 2307 64.1 MiB 0.14 0.00 5.20258 -155.488 -5.20258 5.20258 0.96 0.000274734 0.000221509 0.0207637 0.0168695 -1 -1 -1 -1 28 2696 21 6.65987e+06 380340 500653. 1732.36 1.00 0.0626627 0.0526058 21970 115934 -1 2338 20 1526 2351 162828 36705 4.16677 4.16677 -147.593 -4.16677 0 0 612192. 2118.31 0.31 0.06 0.11 -1 -1 0.31 0.0170185 0.0151521 152 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 5.43 vpr 64.19 MiB -1 -1 0.27 21612 1 0.06 -1 -1 33908 -1 -1 24 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65728 30 32 363 293 1 196 86 17 17 289 -1 unnamed_device 25.3 MiB 0.41 826 5567 1093 3716 758 64.2 MiB 0.05 0.00 4.85795 -137.996 -4.85795 4.85795 1.02 0.00021593 0.000170161 0.00936925 0.00782824 -1 -1 -1 -1 32 2525 24 6.65987e+06 304272 554710. 1919.41 1.02 0.0543588 0.0459697 22834 132086 -1 2014 20 1764 2669 182543 47594 4.14603 4.14603 -135.897 -4.14603 0 0 701300. 2426.64 0.32 0.06 0.13 -1 -1 0.32 0.0169299 0.0150218 140 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 5.45 vpr 63.50 MiB -1 -1 0.21 21712 1 0.04 -1 -1 34132 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65028 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 24.8 MiB 0.28 1079 15639 5051 8379 2209 63.5 MiB 0.11 0.00 4.11181 -120.963 -4.11181 4.11181 1.14 0.000189987 0.000150018 0.0185659 0.0150576 -1 -1 -1 -1 32 2479 22 6.65987e+06 291594 554710. 1919.41 1.14 0.0744293 0.0627948 22834 132086 -1 2143 21 1316 1863 128998 30148 3.48731 3.48731 -116.645 -3.48731 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0139163 0.0123224 126 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 5.42 vpr 63.67 MiB -1 -1 0.26 21548 1 0.04 -1 -1 33992 -1 -1 27 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65196 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 25.0 MiB 0.21 937 15298 4951 7764 2583 63.7 MiB 0.12 0.00 4.29337 -115.569 -4.29337 4.29337 1.03 0.00019685 0.000155796 0.020236 0.016536 -1 -1 -1 -1 32 2306 30 6.65987e+06 342306 554710. 1919.41 1.05 0.066181 0.0558676 22834 132086 -1 1985 25 1504 2799 219919 50220 3.42411 3.42411 -111.097 -3.42411 0 0 701300. 2426.64 0.42 0.07 0.13 -1 -1 0.42 0.0157669 0.0138077 126 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 5.57 vpr 63.96 MiB -1 -1 0.20 21524 1 0.05 -1 -1 33920 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65496 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 25.3 MiB 0.21 1058 13911 3755 8078 2078 64.0 MiB 0.13 0.00 4.32255 -126.417 -4.32255 4.32255 1.04 0.000210081 0.000166405 0.0204754 0.0167115 -1 -1 -1 -1 32 2541 47 6.65987e+06 291594 554710. 1919.41 1.40 0.0922247 0.0790323 22834 132086 -1 2322 23 1597 3125 272365 58938 3.64831 3.64831 -124.147 -3.64831 0 0 701300. 2426.64 0.35 0.09 0.13 -1 -1 0.35 0.0212871 0.018745 130 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 5.47 vpr 63.91 MiB -1 -1 0.31 21560 1 0.04 -1 -1 34076 -1 -1 33 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65444 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 25.0 MiB 0.33 858 7201 1481 5496 224 63.9 MiB 0.08 0.00 3.30984 -111.675 -3.30984 3.30984 1.06 0.000223118 0.000177228 0.0107146 0.0089289 -1 -1 -1 -1 28 2339 24 6.65987e+06 418374 500653. 1732.36 1.22 0.0591409 0.0501912 21970 115934 -1 2009 20 1311 2041 126370 33362 3.01731 3.01731 -111.009 -3.01731 0 0 612192. 2118.31 0.28 0.06 0.12 -1 -1 0.28 0.0174678 0.0151561 141 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.87 vpr 63.41 MiB -1 -1 0.21 21468 1 0.04 -1 -1 34072 -1 -1 18 27 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64932 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 24.8 MiB 0.16 601 11976 3191 7496 1289 63.4 MiB 0.09 0.00 3.61795 -96.0414 -3.61795 3.61795 1.09 0.000190844 0.000151325 0.0183522 0.0149355 -1 -1 -1 -1 28 1542 20 6.65987e+06 228204 500653. 1732.36 0.96 0.0564805 0.0476777 21970 115934 -1 1408 20 793 1327 101908 22870 2.80071 2.80071 -94.1372 -2.80071 0 0 612192. 2118.31 0.31 0.05 0.12 -1 -1 0.31 0.014874 0.0130699 94 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 5.12 vpr 63.51 MiB -1 -1 0.21 21384 1 0.04 -1 -1 33700 -1 -1 31 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65032 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 24.9 MiB 0.19 811 9892 2186 7284 422 63.5 MiB 0.07 0.00 3.36433 -96.8901 -3.36433 3.36433 0.94 0.000201284 0.000160345 0.0108992 0.00878783 -1 -1 -1 -1 28 2347 24 6.65987e+06 393018 500653. 1732.36 1.38 0.057181 0.0486882 21970 115934 -1 1905 19 1011 1801 131698 30370 2.71485 2.71485 -95.6397 -2.71485 0 0 612192. 2118.31 0.26 0.05 0.10 -1 -1 0.26 0.0128759 0.0113856 115 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 5.30 vpr 63.75 MiB -1 -1 0.35 21472 1 0.05 -1 -1 33836 -1 -1 19 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65276 31 32 317 271 1 169 82 17 17 289 -1 unnamed_device 24.9 MiB 0.29 927 8804 2219 5962 623 63.7 MiB 0.07 0.00 3.4209 -115.766 -3.4209 3.4209 1.00 0.000214778 0.000172015 0.0123141 0.0100703 -1 -1 -1 -1 30 1946 21 6.65987e+06 240882 526063. 1820.29 1.00 0.0534342 0.0450337 22546 126617 -1 1679 22 876 1290 75993 17565 2.91031 2.91031 -109.66 -2.91031 0 0 666494. 2306.21 0.36 0.05 0.18 -1 -1 0.36 0.0170021 0.0147864 112 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.97 vpr 63.37 MiB -1 -1 0.19 21528 1 0.04 -1 -1 33820 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 24.9 MiB 0.42 719 10056 2390 7132 534 63.4 MiB 0.08 0.00 3.74029 -120.95 -3.74029 3.74029 0.94 0.000201688 0.000160176 0.0136315 0.0110771 -1 -1 -1 -1 28 2074 23 6.65987e+06 215526 500653. 1732.36 1.08 0.0640771 0.0541029 21970 115934 -1 1782 18 1142 1764 119209 29314 2.82871 2.82871 -113.841 -2.82871 0 0 612192. 2118.31 0.33 0.07 0.11 -1 -1 0.33 0.0185251 0.0165222 113 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 5.28 vpr 63.60 MiB -1 -1 0.32 21348 1 0.03 -1 -1 34136 -1 -1 17 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65124 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 24.9 MiB 0.37 575 5994 1238 4012 744 63.6 MiB 0.05 0.00 4.00989 -106.137 -4.00989 4.00989 1.03 0.00023233 0.000188038 0.00914136 0.00751987 -1 -1 -1 -1 32 1593 22 6.65987e+06 215526 554710. 1919.41 0.99 0.0500588 0.0421829 22834 132086 -1 1313 15 696 1067 62289 16243 2.70271 2.70271 -97.1718 -2.70271 0 0 701300. 2426.64 0.34 0.04 0.14 -1 -1 0.34 0.0128956 0.0114825 98 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 5.60 vpr 63.57 MiB -1 -1 0.20 21680 1 0.05 -1 -1 33864 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65092 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 25.0 MiB 0.33 795 6381 1346 4871 164 63.6 MiB 0.06 0.00 3.75729 -117.97 -3.75729 3.75729 1.01 0.000187526 0.000147758 0.00908277 0.00752482 -1 -1 -1 -1 28 2308 31 6.65987e+06 215526 500653. 1732.36 1.45 0.0735359 0.064043 21970 115934 -1 1893 16 1083 1444 121416 28692 2.92331 2.92331 -107.84 -2.92331 0 0 612192. 2118.31 0.31 0.05 0.21 -1 -1 0.31 0.0120498 0.0107571 106 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 5.64 vpr 64.14 MiB -1 -1 0.21 21512 1 0.05 -1 -1 33976 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65680 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 25.2 MiB 0.50 1032 9253 2342 6405 506 64.1 MiB 0.09 0.00 4.35378 -139.852 -4.35378 4.35378 0.98 0.000223018 0.000177097 0.0139518 0.0115179 -1 -1 -1 -1 32 2591 17 6.65987e+06 304272 554710. 1919.41 1.18 0.0658643 0.0565817 22834 132086 -1 2306 24 1781 2644 208357 48038 3.49111 3.49111 -130.916 -3.49111 0 0 701300. 2426.64 0.43 0.08 0.15 -1 -1 0.43 0.0206307 0.0181532 139 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 5.19 vpr 64.05 MiB -1 -1 0.21 21536 1 0.04 -1 -1 34092 -1 -1 30 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65588 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 25.2 MiB 0.28 904 11170 2626 8078 466 64.1 MiB 0.09 0.00 4.4708 -131.273 -4.4708 4.4708 1.04 0.000219459 0.000173615 0.014438 0.0117766 -1 -1 -1 -1 28 2436 21 6.65987e+06 380340 500653. 1732.36 1.11 0.0637349 0.0540783 21970 115934 -1 2247 23 1751 2879 209966 48329 3.76071 3.76071 -132.119 -3.76071 0 0 612192. 2118.31 0.28 0.08 0.12 -1 -1 0.28 0.019816 0.0175394 133 61 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 5.40 vpr 63.37 MiB -1 -1 0.27 21100 1 0.03 -1 -1 33528 -1 -1 21 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64888 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 24.8 MiB 0.37 775 11118 2644 7385 1089 63.4 MiB 0.07 0.00 3.16393 -91.7211 -3.16393 3.16393 1.00 0.000181808 0.000145431 0.012512 0.0101952 -1 -1 -1 -1 26 1874 19 6.65987e+06 266238 477104. 1650.88 1.04 0.0572575 0.0491675 21682 110474 -1 1569 19 924 1516 104371 25434 2.84691 2.84691 -93.5767 -2.84691 0 0 585099. 2024.56 0.29 0.05 0.11 -1 -1 0.29 0.0145335 0.012816 98 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 5.78 vpr 63.87 MiB -1 -1 0.24 21272 1 0.04 -1 -1 34148 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65404 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 25.1 MiB 0.59 1049 12733 3859 6982 1892 63.9 MiB 0.11 0.00 4.04739 -126.772 -4.04739 4.04739 1.05 0.000236508 0.000188286 0.0200991 0.0164663 -1 -1 -1 -1 32 2511 22 6.65987e+06 266238 554710. 1919.41 1.43 0.0852414 0.0732998 22834 132086 -1 2238 23 1445 2718 191051 43605 3.35377 3.35377 -121.168 -3.35377 0 0 701300. 2426.64 0.33 0.07 0.13 -1 -1 0.33 0.0198299 0.0174322 132 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.50 vpr 63.91 MiB -1 -1 0.21 21504 1 0.04 -1 -1 33684 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65448 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 25.1 MiB 0.40 1072 15523 5016 8339 2168 63.9 MiB 0.12 0.00 4.31458 -139.763 -4.31458 4.31458 0.91 0.000213337 0.000169806 0.0220797 0.01809 -1 -1 -1 -1 28 2915 21 6.65987e+06 266238 500653. 1732.36 1.25 0.0794588 0.0684275 21970 115934 -1 2316 19 1401 1989 160493 35788 3.26677 3.26677 -127.853 -3.26677 0 0 612192. 2118.31 0.33 0.07 0.15 -1 -1 0.33 0.0193526 0.0173998 137 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 5.20 vpr 63.85 MiB -1 -1 0.22 21428 1 0.04 -1 -1 33612 -1 -1 29 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65380 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 25.0 MiB 0.28 861 11433 2956 7633 844 63.8 MiB 0.08 0.00 2.85064 -102.994 -2.85064 2.85064 0.93 0.000233087 0.000188016 0.0140473 0.0114104 -1 -1 -1 -1 26 2153 22 6.65987e+06 367662 477104. 1650.88 1.11 0.0647541 0.0554807 21682 110474 -1 1816 19 977 1497 110865 25449 2.14751 2.14751 -97.7734 -2.14751 0 0 585099. 2024.56 0.32 0.05 0.13 -1 -1 0.32 0.0170404 0.0151823 110 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 4.52 vpr 63.00 MiB -1 -1 0.19 21216 1 0.04 -1 -1 33620 -1 -1 15 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64512 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 24.4 MiB 0.11 640 7086 1644 4840 602 63.0 MiB 0.04 0.00 2.24807 -77.7472 -2.24807 2.24807 0.90 0.000146079 0.000114661 0.00814634 0.0066777 -1 -1 -1 -1 32 1491 20 6.65987e+06 190170 554710. 1919.41 0.90 0.0334735 0.0280832 22834 132086 -1 1296 14 579 811 59607 14185 1.89185 1.89185 -79.7993 -1.89185 0 0 701300. 2426.64 0.38 0.05 0.14 -1 -1 0.38 0.0137347 0.0123977 81 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 5.64 vpr 63.55 MiB -1 -1 0.19 21416 1 0.04 -1 -1 33956 -1 -1 19 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65080 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 25.0 MiB 0.74 819 13254 3680 8313 1261 63.6 MiB 0.09 0.00 4.81074 -140.485 -4.81074 4.81074 0.98 0.000182772 0.000143938 0.0156644 0.0126589 -1 -1 -1 -1 28 2127 22 6.65987e+06 240882 500653. 1732.36 0.98 0.0553489 0.0466088 21970 115934 -1 1797 18 1099 1584 108008 26189 3.47917 3.47917 -126.534 -3.47917 0 0 612192. 2118.31 0.41 0.06 0.14 -1 -1 0.41 0.0166378 0.0149701 127 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 5.75 vpr 63.93 MiB -1 -1 0.19 21608 1 0.04 -1 -1 33928 -1 -1 31 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65468 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 25.1 MiB 0.32 945 6791 1317 5158 316 63.9 MiB 0.07 0.00 4.14893 -130.493 -4.14893 4.14893 1.03 0.000229934 0.000183929 0.0102179 0.00839391 -1 -1 -1 -1 30 2169 21 6.65987e+06 393018 526063. 1820.29 0.99 0.0537387 0.0454371 22546 126617 -1 1899 17 974 1626 91978 21788 3.32623 3.32623 -121.056 -3.32623 0 0 666494. 2306.21 0.36 0.05 0.14 -1 -1 0.36 0.0183332 0.0165565 135 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 5.83 vpr 64.18 MiB -1 -1 0.28 21660 1 0.04 -1 -1 33952 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65724 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 25.2 MiB 0.45 1176 13911 3816 8065 2030 64.2 MiB 0.12 0.00 4.32644 -135.935 -4.32644 4.32644 0.97 0.000222889 0.000175002 0.0192369 0.0154748 -1 -1 -1 -1 28 3219 21 6.65987e+06 291594 500653. 1732.36 1.69 0.0731442 0.0615214 21970 115934 -1 2732 29 1773 2745 359148 134849 3.93331 3.93331 -139.547 -3.93331 0 0 612192. 2118.31 0.28 0.12 0.11 -1 -1 0.28 0.0243917 0.0212008 142 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 5.26 vpr 62.88 MiB -1 -1 0.22 21252 1 0.05 -1 -1 34152 -1 -1 18 26 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64388 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 24.4 MiB 0.32 372 9836 3070 4693 2073 62.9 MiB 0.04 0.00 2.3895 -62.8108 -2.3895 2.3895 1.02 0.000130123 9.9219e-05 0.00953184 0.00773235 -1 -1 -1 -1 32 1048 32 6.65987e+06 228204 554710. 1919.41 1.10 0.0423533 0.0358409 22834 132086 -1 748 15 526 715 37159 11103 1.85405 1.85405 -60.2178 -1.85405 0 0 701300. 2426.64 0.36 0.03 0.13 -1 -1 0.36 0.00864527 0.00780219 77 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 5.23 vpr 63.53 MiB -1 -1 0.20 21316 1 0.06 -1 -1 33824 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65056 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 25.0 MiB 0.26 1008 10873 2978 7123 772 63.5 MiB 0.08 0.00 4.661 -123.259 -4.661 4.661 1.08 0.000200696 0.000161014 0.0134188 0.0110138 -1 -1 -1 -1 28 2311 31 6.65987e+06 266238 500653. 1732.36 1.01 0.0547584 0.0463224 21970 115934 -1 2059 21 1264 2355 164435 38396 3.79397 3.79397 -121.606 -3.79397 0 0 612192. 2118.31 0.27 0.05 0.11 -1 -1 0.27 0.0142969 0.0126592 118 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.86 vpr 62.88 MiB -1 -1 0.17 21108 1 0.04 -1 -1 33504 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64384 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 24.4 MiB 0.10 415 10370 2863 4808 2699 62.9 MiB 0.05 0.00 2.54569 -72.1104 -2.54569 2.54569 1.01 0.000130829 0.000101365 0.0105454 0.00855625 -1 -1 -1 -1 30 1192 29 6.65987e+06 177492 526063. 1820.29 0.97 0.0395417 0.0332815 22546 126617 -1 819 15 404 445 27960 7884 1.81985 1.81985 -66.7912 -1.81985 0 0 666494. 2306.21 0.30 0.03 0.12 -1 -1 0.30 0.00871213 0.00788207 79 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 5.21 vpr 63.51 MiB -1 -1 0.19 21476 1 0.03 -1 -1 33812 -1 -1 30 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 24.9 MiB 0.18 867 9679 2178 7022 479 63.5 MiB 0.08 0.00 4.41865 -121.229 -4.41865 4.41865 0.95 0.000263056 0.000215728 0.0120938 0.00982149 -1 -1 -1 -1 28 2090 22 6.65987e+06 380340 500653. 1732.36 1.41 0.079142 0.0692696 21970 115934 -1 1804 18 1065 1787 114117 27349 3.19965 3.19965 -107.663 -3.19965 0 0 612192. 2118.31 0.28 0.05 0.16 -1 -1 0.28 0.0147574 0.0130306 123 24 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.93 vpr 63.55 MiB -1 -1 0.22 21536 1 0.05 -1 -1 33940 -1 -1 31 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 25.0 MiB 0.20 1032 8303 1834 5800 669 63.5 MiB 0.12 0.00 3.62555 -107.534 -3.62555 3.62555 0.97 0.000545184 0.000445061 0.0187074 0.0156264 -1 -1 -1 -1 30 2260 22 6.65987e+06 393018 526063. 1820.29 0.98 0.0575672 0.0486652 22546 126617 -1 1950 19 961 1748 104695 23724 2.60951 2.60951 -101.656 -2.60951 0 0 666494. 2306.21 0.30 0.05 0.14 -1 -1 0.30 0.0144722 0.0127854 128 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 5.09 vpr 63.92 MiB -1 -1 0.21 21484 1 0.03 -1 -1 33864 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65456 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 24.8 MiB 0.29 1026 15366 4954 8031 2381 63.9 MiB 0.14 0.00 4.40163 -128.768 -4.40163 4.40163 1.03 0.000263784 0.000190982 0.0218191 0.017596 -1 -1 -1 -1 28 2536 22 6.65987e+06 329628 500653. 1732.36 1.17 0.0701533 0.0586005 21970 115934 -1 2239 29 1748 3059 300303 101990 3.99999 3.99999 -130.531 -3.99999 0 0 612192. 2118.31 0.28 0.10 0.12 -1 -1 0.28 0.0213118 0.0184515 125 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 5.53 vpr 63.36 MiB -1 -1 0.18 21580 1 0.04 -1 -1 33784 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64880 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 24.7 MiB 0.17 743 11260 3712 5303 2245 63.4 MiB 0.08 0.00 2.93487 -98.1536 -2.93487 2.93487 1.18 0.000188792 0.000149802 0.0152322 0.012446 -1 -1 -1 -1 32 1913 21 6.65987e+06 202848 554710. 1919.41 1.06 0.0516998 0.0435992 22834 132086 -1 1645 17 907 1417 116532 28198 2.87311 2.87311 -105.642 -2.87311 0 0 701300. 2426.64 0.30 0.04 0.16 -1 -1 0.30 0.0117534 0.0104467 101 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.83 vpr 63.41 MiB -1 -1 0.22 21448 1 0.04 -1 -1 33684 -1 -1 23 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64932 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 24.7 MiB 0.14 765 12733 3276 8152 1305 63.4 MiB 0.07 0.00 2.99867 -95.3722 -2.99867 2.99867 1.04 0.00016599 0.00013095 0.013425 0.0108516 -1 -1 -1 -1 32 1733 17 6.65987e+06 291594 554710. 1919.41 1.01 0.045989 0.0387781 22834 132086 -1 1567 19 957 1467 111882 25763 2.66145 2.66145 -94.3977 -2.66145 0 0 701300. 2426.64 0.30 0.05 0.14 -1 -1 0.30 0.0130256 0.0115622 97 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.70 vpr 63.15 MiB -1 -1 0.22 21624 1 0.04 -1 -1 33856 -1 -1 23 28 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64668 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 24.5 MiB 0.15 635 14123 3811 8579 1733 63.2 MiB 0.09 0.00 3.31478 -92.4847 -3.31478 3.31478 0.99 0.00018014 0.000143849 0.0166834 0.0135061 -1 -1 -1 -1 28 1810 27 6.65987e+06 291594 500653. 1732.36 0.92 0.0506914 0.0419816 21970 115934 -1 1551 19 950 1652 120534 27810 2.73271 2.73271 -92.4594 -2.73271 0 0 612192. 2118.31 0.31 0.07 0.11 -1 -1 0.31 0.0181138 0.0159989 98 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.86 vpr 63.42 MiB -1 -1 0.30 21160 1 0.04 -1 -1 33892 -1 -1 19 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 24.7 MiB 0.17 727 6383 1361 4583 439 63.4 MiB 0.05 0.00 3.74563 -110.014 -3.74563 3.74563 0.98 0.000185158 0.000147915 0.00854162 0.00685416 -1 -1 -1 -1 32 1960 23 6.65987e+06 240882 554710. 1919.41 0.99 0.0446567 0.0374986 22834 132086 -1 1796 20 1192 1921 150188 35568 2.96611 2.96611 -110.14 -2.96611 0 0 701300. 2426.64 0.32 0.05 0.16 -1 -1 0.32 0.0133883 0.0118285 110 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 5.47 vpr 63.25 MiB -1 -1 0.19 21432 1 0.05 -1 -1 34076 -1 -1 27 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64768 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 24.6 MiB 0.14 616 5517 989 3982 546 63.2 MiB 0.05 0.00 3.36515 -97.3921 -3.36515 3.36515 1.18 0.000188438 0.000149843 0.00748619 0.00626029 -1 -1 -1 -1 28 1967 34 6.65987e+06 342306 500653. 1732.36 1.29 0.0740593 0.0649757 21970 115934 -1 1505 20 992 1649 104792 27138 2.58045 2.58045 -96.2333 -2.58045 0 0 612192. 2118.31 0.32 0.05 0.12 -1 -1 0.32 0.0139329 0.0123381 103 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.96 vpr 63.40 MiB -1 -1 0.26 21420 1 0.04 -1 -1 33824 -1 -1 25 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64920 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 24.9 MiB 0.32 865 14450 4409 7950 2091 63.4 MiB 0.10 0.00 3.27578 -105.17 -3.27578 3.27578 1.02 0.00023531 0.00017796 0.0169217 0.0136787 -1 -1 -1 -1 28 1896 21 6.65987e+06 316950 500653. 1732.36 0.94 0.0495404 0.0412537 21970 115934 -1 1678 20 1051 1598 111541 25786 2.24065 2.24065 -91.6407 -2.24065 0 0 612192. 2118.31 0.30 0.04 0.12 -1 -1 0.30 0.0133686 0.0117987 105 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 5.33 vpr 63.97 MiB -1 -1 0.21 21332 1 0.05 -1 -1 34124 -1 -1 37 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65504 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 25.1 MiB 0.43 1216 16551 4115 10400 2036 64.0 MiB 0.13 0.00 3.87192 -114.947 -3.87192 3.87192 1.02 0.000236832 0.000189906 0.0195282 0.0159844 -1 -1 -1 -1 32 2878 21 6.65987e+06 469086 554710. 1919.41 0.99 0.0642627 0.0539004 22834 132086 -1 2430 20 1422 2539 179933 40402 3.68939 3.68939 -116.203 -3.68939 0 0 701300. 2426.64 0.35 0.07 0.15 -1 -1 0.35 0.0187286 0.0166673 150 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 6.04 vpr 63.86 MiB -1 -1 0.21 21536 1 0.04 -1 -1 33804 -1 -1 36 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65392 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 25.0 MiB 0.34 918 16804 4626 9521 2657 63.9 MiB 0.14 0.00 3.76954 -123.355 -3.76954 3.76954 1.19 0.000353965 0.000284297 0.0242504 0.0197085 -1 -1 -1 -1 26 2803 43 6.65987e+06 456408 477104. 1650.88 1.57 0.103704 0.0874397 21682 110474 -1 2202 22 1787 2772 200753 48070 3.09111 3.09111 -121.86 -3.09111 0 0 585099. 2024.56 0.32 0.07 0.12 -1 -1 0.32 0.0184838 0.0162755 146 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 5.42 vpr 62.53 MiB -1 -1 0.20 21396 1 0.04 -1 -1 33556 -1 -1 17 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64032 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 24.1 MiB 0.63 795 7304 1575 5379 350 62.5 MiB 0.06 0.00 4.09732 -119.878 -4.09732 4.09732 1.02 0.000176779 0.000139104 0.00970252 0.00795085 -1 -1 -1 -1 28 2295 28 6.65987e+06 215526 500653. 1732.36 1.18 0.050986 0.0435131 21970 115934 -1 1888 21 1171 1638 142248 31897 2.88337 2.88337 -109.949 -2.88337 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0131063 0.0115533 109 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 5.20 vpr 63.11 MiB -1 -1 0.22 21396 1 0.04 -1 -1 33880 -1 -1 24 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64624 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 24.2 MiB 0.42 944 8727 2152 5844 731 63.1 MiB 0.11 0.00 3.92632 -125.266 -3.92632 3.92632 1.02 0.000499625 0.000414567 0.0180208 0.0149472 -1 -1 -1 -1 32 2324 22 6.65987e+06 304272 554710. 1919.41 1.01 0.0579779 0.0487019 22834 132086 -1 2075 19 1422 2441 175051 40721 2.95717 2.95717 -112.585 -2.95717 0 0 701300. 2426.64 0.34 0.06 0.14 -1 -1 0.34 0.0159553 0.0141183 137 61 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 5.72 vpr 63.91 MiB -1 -1 0.27 21776 1 0.04 -1 -1 33736 -1 -1 27 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65444 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 25.5 MiB 0.62 1273 15165 4552 8275 2338 63.9 MiB 0.17 0.00 5.69001 -171.445 -5.69001 5.69001 1.01 0.000271144 0.000217418 0.028814 0.023982 -1 -1 -1 -1 32 3146 25 6.65987e+06 342306 554710. 1919.41 1.22 0.0871291 0.0740623 22834 132086 -1 2682 25 2424 3699 270469 60854 4.91423 4.91423 -167.458 -4.91423 0 0 701300. 2426.64 0.32 0.10 0.14 -1 -1 0.32 0.0238823 0.020945 170 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 6.69 vpr 64.18 MiB -1 -1 0.23 21580 1 0.06 -1 -1 33860 -1 -1 25 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65724 31 32 383 305 1 209 88 17 17 289 -1 unnamed_device 25.5 MiB 1.33 1100 16468 4969 9311 2188 64.2 MiB 0.14 0.00 4.92247 -149.927 -4.92247 4.92247 1.33 0.000239076 0.000190163 0.0266384 0.0218535 -1 -1 -1 -1 28 2844 20 6.65987e+06 316950 500653. 1732.36 1.18 0.0855625 0.072451 21970 115934 -1 2478 19 1689 2547 182737 41274 4.31102 4.31102 -150.151 -4.31102 0 0 612192. 2118.31 0.28 0.07 0.11 -1 -1 0.28 0.0198133 0.0178176 162 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 6.26 vpr 63.95 MiB -1 -1 0.20 21564 1 0.05 -1 -1 33892 -1 -1 29 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65480 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 25.1 MiB 0.55 1122 13754 3789 8484 1481 63.9 MiB 0.13 0.00 4.34966 -130.317 -4.34966 4.34966 0.99 0.00037749 0.000317338 0.0233402 0.0193844 -1 -1 -1 -1 28 2691 26 6.65987e+06 367662 500653. 1732.36 1.55 0.0905349 0.077959 21970 115934 -1 2330 25 1556 2709 313045 123001 3.08231 3.08231 -118.242 -3.08231 0 0 612192. 2118.31 0.30 0.14 0.12 -1 -1 0.30 0.0295598 0.026602 133 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 5.94 vpr 63.72 MiB -1 -1 0.31 21612 1 0.04 -1 -1 33920 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65252 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 25.1 MiB 0.29 922 8780 2172 6205 403 63.7 MiB 0.07 0.00 4.1266 -111.615 -4.1266 4.1266 1.05 0.000186119 0.000147103 0.0106879 0.0087129 -1 -1 -1 -1 26 2735 26 6.65987e+06 278916 477104. 1650.88 1.78 0.0605723 0.0514452 21682 110474 -1 2172 23 1525 2279 180283 42061 3.61865 3.61865 -116.354 -3.61865 0 0 585099. 2024.56 0.29 0.08 0.11 -1 -1 0.29 0.0218666 0.0195236 118 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 5.94 vpr 64.18 MiB -1 -1 0.25 21800 1 0.06 -1 -1 34148 -1 -1 38 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65720 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 25.8 MiB 0.46 1225 11764 2792 7889 1083 64.2 MiB 0.11 0.00 4.86514 -158.575 -4.86514 4.86514 1.22 0.000285867 0.000229446 0.0163593 0.0133778 -1 -1 -1 -1 28 3027 30 6.65987e+06 481764 500653. 1732.36 1.36 0.0918822 0.078505 21970 115934 -1 2643 23 1724 2712 187683 42451 3.79291 3.79291 -146.352 -3.79291 0 0 612192. 2118.31 0.29 0.08 0.12 -1 -1 0.29 0.0240298 0.0213049 172 87 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.83 vpr 63.30 MiB -1 -1 0.30 21576 1 0.03 -1 -1 33508 -1 -1 21 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64816 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 24.7 MiB 0.27 792 5391 1113 3866 412 63.3 MiB 0.05 0.00 3.45892 -98.948 -3.45892 3.45892 0.99 0.000190241 0.00015215 0.00794021 0.00656053 -1 -1 -1 -1 30 1740 20 6.65987e+06 266238 526063. 1820.29 0.93 0.0419392 0.0352388 22546 126617 -1 1534 20 903 1518 93928 21198 2.63765 2.63765 -97.0397 -2.63765 0 0 666494. 2306.21 0.32 0.04 0.12 -1 -1 0.32 0.0129484 0.0112974 101 28 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 5.81 vpr 63.94 MiB -1 -1 0.25 21628 1 0.05 -1 -1 33988 -1 -1 23 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65472 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 25.1 MiB 0.37 1177 11804 3160 7260 1384 63.9 MiB 0.15 0.00 4.89669 -145.469 -4.89669 4.89669 1.02 0.000426217 0.000363292 0.0313203 0.0265484 -1 -1 -1 -1 28 3159 30 6.65987e+06 291594 500653. 1732.36 1.45 0.0917393 0.0784341 21970 115934 -1 2513 22 1308 1851 143445 31289 4.01251 4.01251 -136.733 -4.01251 0 0 612192. 2118.31 0.33 0.07 0.13 -1 -1 0.33 0.020697 0.0183428 142 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.78 vpr 63.97 MiB -1 -1 0.20 21508 1 0.04 -1 -1 33864 -1 -1 33 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65504 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 25.1 MiB 0.29 868 8311 1653 6113 545 64.0 MiB 0.07 0.00 3.91407 -115.086 -3.91407 3.91407 0.99 0.000270283 0.000223334 0.0102687 0.00837494 -1 -1 -1 -1 30 2509 26 6.65987e+06 418374 526063. 1820.29 1.45 0.0792187 0.0686447 22546 126617 -1 1679 16 859 1555 81649 20422 2.90591 2.90591 -105.542 -2.90591 0 0 666494. 2306.21 0.41 0.06 0.14 -1 -1 0.41 0.0182752 0.0165236 131 53 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 5.09 vpr 63.46 MiB -1 -1 0.18 21548 1 0.04 -1 -1 33688 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64988 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 24.9 MiB 0.22 846 6328 1287 4843 198 63.5 MiB 0.06 0.00 3.96153 -117.52 -3.96153 3.96153 1.02 0.000193026 0.000152925 0.00847067 0.00697451 -1 -1 -1 -1 28 2304 21 6.65987e+06 304272 500653. 1732.36 1.12 0.0617549 0.0536258 21970 115934 -1 1981 23 1418 2697 199285 46458 3.71659 3.71659 -122.806 -3.71659 0 0 612192. 2118.31 0.31 0.06 0.12 -1 -1 0.31 0.0161867 0.0142004 123 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 5.27 vpr 63.99 MiB -1 -1 0.21 21328 1 0.04 -1 -1 34092 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65524 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 25.1 MiB 0.45 1090 7835 1660 5643 532 64.0 MiB 0.08 0.00 4.46734 -132.214 -4.46734 4.46734 1.02 0.000205159 0.000162705 0.0134293 0.0109819 -1 -1 -1 -1 32 2503 28 6.65987e+06 278916 554710. 1919.41 1.03 0.0651839 0.0554538 22834 132086 -1 2254 16 1127 1532 112414 26836 3.20591 3.20591 -119.029 -3.20591 0 0 701300. 2426.64 0.32 0.05 0.18 -1 -1 0.32 0.0148755 0.0131789 136 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 6.32 vpr 63.97 MiB -1 -1 0.22 21632 1 0.04 -1 -1 33812 -1 -1 31 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65504 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 25.1 MiB 0.63 1025 8951 2023 6429 499 64.0 MiB 0.08 0.00 3.78594 -122.94 -3.78594 3.78594 1.09 0.000231515 0.000185545 0.0124475 0.010335 -1 -1 -1 -1 26 2851 30 6.65987e+06 393018 477104. 1650.88 1.84 0.0906537 0.077767 21682 110474 -1 2246 22 1338 2263 183303 40174 3.11131 3.11131 -122.127 -3.11131 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.0167684 0.014701 132 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 5.55 vpr 64.07 MiB -1 -1 0.37 21548 1 0.06 -1 -1 33916 -1 -1 36 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65604 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 25.2 MiB 0.49 1095 17268 5091 9567 2610 64.1 MiB 0.20 0.00 4.49052 -137.752 -4.49052 4.49052 1.01 0.000241311 0.000191972 0.0322572 0.0263685 -1 -1 -1 -1 32 2596 25 6.65987e+06 456408 554710. 1919.41 1.01 0.0802965 0.0670007 22834 132086 -1 2232 21 1219 1845 147581 32927 3.21151 3.21151 -122.058 -3.21151 0 0 701300. 2426.64 0.32 0.06 0.13 -1 -1 0.32 0.0194108 0.0170617 144 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.87 vpr 63.59 MiB -1 -1 0.21 21672 1 0.04 -1 -1 33816 -1 -1 29 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65112 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 24.9 MiB 0.20 881 8493 1904 6212 377 63.6 MiB 0.07 0.00 3.98836 -116.947 -3.98836 3.98836 0.94 0.000196262 0.000156046 0.0107836 0.00886253 -1 -1 -1 -1 32 2229 29 6.65987e+06 367662 554710. 1919.41 1.02 0.0505654 0.0425756 22834 132086 -1 1823 23 1298 2235 165203 37734 3.31585 3.31585 -112.024 -3.31585 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0161437 0.0142277 122 24 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 5.12 vpr 63.88 MiB -1 -1 0.22 21372 1 0.05 -1 -1 34152 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65412 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 25.1 MiB 0.27 1058 6423 1250 4686 487 63.9 MiB 0.06 0.00 4.75229 -137.839 -4.75229 4.75229 0.99 0.00022337 0.000178442 0.00913919 0.00756932 -1 -1 -1 -1 32 2530 23 6.65987e+06 291594 554710. 1919.41 0.96 0.0483734 0.0409092 22834 132086 -1 2237 21 1668 2440 175489 41742 3.71071 3.71071 -129.186 -3.71071 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0169293 0.0151165 133 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 6.36 vpr 64.09 MiB -1 -1 0.26 21800 1 0.05 -1 -1 33884 -1 -1 23 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65632 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 25.2 MiB 0.71 1053 14450 4497 7379 2574 64.1 MiB 0.15 0.00 4.75055 -138.917 -4.75055 4.75055 1.09 0.000234971 0.000188422 0.0246482 0.0199338 -1 -1 -1 -1 34 2568 25 6.65987e+06 291594 585099. 2024.56 1.73 0.117731 0.098934 23122 138558 -1 2239 20 1331 2062 163732 34849 3.99831 3.99831 -126.897 -3.99831 0 0 742403. 2568.87 0.35 0.06 0.14 -1 -1 0.35 0.0188291 0.0167479 146 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 5.28 vpr 64.03 MiB -1 -1 0.22 21488 1 0.05 -1 -1 34184 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65568 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 25.2 MiB 0.35 901 8269 1876 5929 464 64.0 MiB 0.08 0.00 3.98149 -123.442 -3.98149 3.98149 0.95 0.000220892 0.000174602 0.0127458 0.0104703 -1 -1 -1 -1 32 2648 25 6.65987e+06 266238 554710. 1919.41 1.09 0.065438 0.0555498 22834 132086 -1 2151 21 1523 2669 176931 42791 3.46425 3.46425 -121.172 -3.46425 0 0 701300. 2426.64 0.32 0.06 0.14 -1 -1 0.32 0.0182481 0.0160657 135 77 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 4.96 vpr 63.25 MiB -1 -1 0.19 21124 1 0.04 -1 -1 33752 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64768 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 24.7 MiB 0.11 757 15103 5160 7628 2315 63.2 MiB 0.09 0.00 3.22598 -97.9932 -3.22598 3.22598 1.00 0.000166303 0.000131302 0.0161346 0.0130204 -1 -1 -1 -1 30 1807 20 6.65987e+06 304272 526063. 1820.29 0.96 0.0499144 0.0419849 22546 126617 -1 1524 20 745 1219 73327 17031 2.44445 2.44445 -89.72 -2.44445 0 0 666494. 2306.21 0.31 0.04 0.13 -1 -1 0.31 0.0114486 0.0100669 97 23 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 5.22 vpr 63.92 MiB -1 -1 0.21 21376 1 0.05 -1 -1 33832 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65452 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 25.1 MiB 0.26 854 11979 3325 7498 1156 63.9 MiB 0.10 0.00 4.00764 -134.08 -4.00764 4.00764 1.01 0.000204085 0.000161078 0.0168256 0.0136378 -1 -1 -1 -1 30 2108 23 6.65987e+06 253560 526063. 1820.29 0.94 0.054079 0.0450648 22546 126617 -1 1862 17 1081 1505 80425 19493 3.45017 3.45017 -131.307 -3.45017 0 0 666494. 2306.21 0.33 0.07 0.13 -1 -1 0.33 0.019215 0.0171603 125 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 5.63 vpr 63.92 MiB -1 -1 0.26 21768 1 0.06 -1 -1 33928 -1 -1 28 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65452 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 25.4 MiB 0.42 1274 10235 2657 6661 917 63.9 MiB 0.10 0.00 5.13258 -155.405 -5.13258 5.13258 1.01 0.000258834 0.000209281 0.01548 0.0127824 -1 -1 -1 -1 32 3405 33 6.65987e+06 354984 554710. 1919.41 1.25 0.0812547 0.0693963 22834 132086 -1 2767 22 2176 3438 289117 62894 4.34411 4.34411 -147.372 -4.34411 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.0201568 0.0178381 168 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 5.21 vpr 63.91 MiB -1 -1 0.20 21368 1 0.04 -1 -1 34084 -1 -1 31 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65444 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 25.1 MiB 0.29 873 6359 1089 5003 267 63.9 MiB 0.06 0.00 4.1576 -127.981 -4.1576 4.1576 0.98 0.000326861 0.000275341 0.0101119 0.00849556 -1 -1 -1 -1 26 2804 32 6.65987e+06 393018 477104. 1650.88 1.19 0.0541591 0.045742 21682 110474 -1 2011 20 1285 2168 156274 38621 3.16251 3.16251 -116.567 -3.16251 0 0 585099. 2024.56 0.28 0.06 0.12 -1 -1 0.28 0.0166645 0.0148188 133 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 5.25 vpr 63.41 MiB -1 -1 0.22 21504 1 0.07 -1 -1 33996 -1 -1 26 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64936 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 24.9 MiB 0.20 662 8278 1864 5308 1106 63.4 MiB 0.06 0.00 3.33678 -99.7803 -3.33678 3.33678 0.93 0.000211349 0.000173341 0.00958487 0.00785663 -1 -1 -1 -1 26 2015 33 6.65987e+06 329628 477104. 1650.88 1.23 0.0483867 0.0407605 21682 110474 -1 1722 23 1271 2045 155617 37080 2.92991 2.92991 -104.001 -2.92991 0 0 585099. 2024.56 0.29 0.06 0.12 -1 -1 0.29 0.0141926 0.0124075 104 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 6.00 vpr 63.86 MiB -1 -1 0.26 21844 1 0.06 -1 -1 34076 -1 -1 25 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65396 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 25.5 MiB 0.80 1210 14939 4355 8110 2474 63.9 MiB 0.15 0.00 6.10992 -175.031 -6.10992 6.10992 0.99 0.000288167 0.000219132 0.0292164 0.0242384 -1 -1 -1 -1 32 3372 31 6.65987e+06 316950 554710. 1919.41 1.17 0.090254 0.0761931 22834 132086 -1 2596 21 1928 2778 201964 46743 4.86497 4.86497 -160.032 -4.86497 0 0 701300. 2426.64 0.31 0.07 0.14 -1 -1 0.31 0.020048 0.0176894 168 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 5.22 vpr 63.99 MiB -1 -1 0.20 21624 1 0.04 -1 -1 34060 -1 -1 32 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65524 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 25.2 MiB 0.31 931 10389 2832 6808 749 64.0 MiB 0.09 0.00 4.39794 -132.47 -4.39794 4.39794 1.03 0.000239739 0.000191007 0.0154654 0.0128191 -1 -1 -1 -1 32 2200 23 6.65987e+06 405696 554710. 1919.41 0.96 0.0544956 0.0458029 22834 132086 -1 1960 20 1371 2131 135826 33635 3.60951 3.60951 -126.111 -3.60951 0 0 701300. 2426.64 0.33 0.05 0.21 -1 -1 0.33 0.0150171 0.0131763 130 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 5.04 vpr 63.24 MiB -1 -1 0.22 21056 1 0.06 -1 -1 34144 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 24.7 MiB 0.15 660 6999 1482 4945 572 63.2 MiB 0.07 0.00 3.21869 -92.7316 -3.21869 3.21869 0.98 0.000286777 0.000227316 0.0104553 0.00861892 -1 -1 -1 -1 30 1799 25 6.65987e+06 291594 526063. 1820.29 1.00 0.0444685 0.037635 22546 126617 -1 1447 15 697 1154 70483 17453 2.53419 2.53419 -89.4513 -2.53419 0 0 666494. 2306.21 0.29 0.03 0.13 -1 -1 0.29 0.00958353 0.00860516 100 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 8.93 vpr 63.91 MiB -1 -1 0.23 21500 1 0.06 -1 -1 33912 -1 -1 34 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65448 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 25.0 MiB 0.34 1092 11573 2759 8065 749 63.9 MiB 0.10 0.00 5.1174 -127.812 -5.1174 5.1174 0.99 0.000263823 0.000209435 0.0137303 0.0112622 -1 -1 -1 -1 28 2696 41 6.65987e+06 431052 500653. 1732.36 4.47 0.14119 0.118276 21970 115934 -1 2246 23 1372 2717 178803 40499 4.27899 4.27899 -128.398 -4.27899 0 0 612192. 2118.31 0.27 0.06 0.13 -1 -1 0.27 0.0179023 0.015707 139 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 5.09 vpr 63.23 MiB -1 -1 0.28 21088 1 0.04 -1 -1 33888 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 24.6 MiB 0.18 658 7038 1455 4830 753 63.2 MiB 0.05 0.00 3.29684 -98.8102 -3.29684 3.29684 1.05 0.000171984 0.000137849 0.00907092 0.00746583 -1 -1 -1 -1 28 2106 37 6.65987e+06 253560 500653. 1732.36 1.09 0.051537 0.0437971 21970 115934 -1 1711 17 1024 1691 111688 29187 2.78065 2.78065 -105.082 -2.78065 0 0 612192. 2118.31 0.27 0.05 0.11 -1 -1 0.27 0.0128225 0.0114706 104 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 5.09 vpr 63.44 MiB -1 -1 0.31 21332 1 0.05 -1 -1 34100 -1 -1 33 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64960 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 24.9 MiB 0.21 665 12623 3525 7434 1664 63.4 MiB 0.09 0.00 3.96152 -101.883 -3.96152 3.96152 1.05 0.000194627 0.000156124 0.0128394 0.0104145 -1 -1 -1 -1 28 1809 20 6.65987e+06 418374 500653. 1732.36 0.91 0.0459807 0.0385608 21970 115934 -1 1537 18 926 1622 96600 24110 2.72171 2.72171 -94.4656 -2.72171 0 0 612192. 2118.31 0.27 0.04 0.11 -1 -1 0.27 0.0115447 0.010135 105 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 5.69 vpr 63.96 MiB -1 -1 0.23 21556 1 0.04 -1 -1 33736 -1 -1 24 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65500 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 25.1 MiB 0.38 1014 15523 4859 8256 2408 64.0 MiB 0.12 0.00 4.24664 -124.159 -4.24664 4.24664 1.19 0.000216157 0.000172503 0.0207212 0.0168393 -1 -1 -1 -1 32 2519 21 6.65987e+06 304272 554710. 1919.41 0.96 0.0610155 0.051077 22834 132086 -1 2110 26 1456 2226 166870 38789 3.18497 3.18497 -112.254 -3.18497 0 0 701300. 2426.64 0.46 0.11 0.13 -1 -1 0.46 0.0333136 0.0293483 138 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 5.90 vpr 63.97 MiB -1 -1 0.21 21492 1 0.04 -1 -1 33852 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65504 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 25.2 MiB 0.30 813 6133 1250 4669 214 64.0 MiB 0.06 0.00 4.31499 -129.627 -4.31499 4.31499 1.23 0.000269975 0.000223102 0.0112372 0.00940652 -1 -1 -1 -1 30 1973 21 6.65987e+06 304272 526063. 1820.29 1.33 0.0794649 0.0682408 22546 126617 -1 1695 21 1155 1730 101267 23759 3.45917 3.45917 -120.941 -3.45917 0 0 666494. 2306.21 0.30 0.04 0.12 -1 -1 0.30 0.0154706 0.0136382 130 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 5.96 vpr 63.91 MiB -1 -1 0.20 21496 1 0.03 -1 -1 34036 -1 -1 27 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65440 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 25.1 MiB 0.33 1032 14575 3712 8961 1902 63.9 MiB 0.23 0.00 4.48612 -136.801 -4.48612 4.48612 1.11 0.000607566 0.000515473 0.0408731 0.0345344 -1 -1 -1 -1 32 2663 22 6.65987e+06 342306 554710. 1919.41 1.33 0.103819 0.0888744 22834 132086 -1 2268 22 1461 2460 182454 41825 3.81371 3.81371 -134.147 -3.81371 0 0 701300. 2426.64 0.44 0.07 0.22 -1 -1 0.44 0.019072 0.0165955 132 51 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 5.46 vpr 63.38 MiB -1 -1 0.18 21640 1 0.03 -1 -1 33600 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64900 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 24.9 MiB 0.30 845 7820 1849 5541 430 63.4 MiB 0.07 0.00 4.62977 -131.711 -4.62977 4.62977 1.30 0.00024974 0.000208256 0.0124178 0.0103584 -1 -1 -1 -1 30 1850 19 6.65987e+06 202848 526063. 1820.29 1.20 0.0592105 0.0512825 22546 126617 -1 1669 17 719 977 60179 14057 3.03551 3.03551 -110.068 -3.03551 0 0 666494. 2306.21 0.34 0.04 0.16 -1 -1 0.34 0.0133709 0.0119262 103 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 5.30 vpr 63.85 MiB -1 -1 0.19 21500 1 0.04 -1 -1 34216 -1 -1 19 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65380 31 32 319 272 1 169 82 17 17 289 -1 unnamed_device 25.0 MiB 0.41 770 10050 2757 6264 1029 63.8 MiB 0.08 0.00 3.69598 -115.146 -3.69598 3.69598 1.16 0.000210058 0.00016823 0.0131906 0.0106775 -1 -1 -1 -1 32 2129 24 6.65987e+06 240882 554710. 1919.41 1.07 0.0501723 0.0418632 22834 132086 -1 1830 22 1219 1808 127557 30445 3.02177 3.02177 -109.858 -3.02177 0 0 701300. 2426.64 0.31 0.05 0.14 -1 -1 0.31 0.0154211 0.0134335 112 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 5.23 vpr 63.72 MiB -1 -1 0.20 21596 1 0.04 -1 -1 33664 -1 -1 33 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65252 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 24.8 MiB 0.33 862 12839 3032 8956 851 63.7 MiB 0.17 0.00 3.34001 -95.8914 -3.34001 3.34001 0.95 0.000379586 0.000305241 0.0301603 0.0253995 -1 -1 -1 -1 30 1980 21 6.65987e+06 418374 526063. 1820.29 1.12 0.0745038 0.0632953 22546 126617 -1 1669 18 962 1743 95030 22615 2.43511 2.43511 -91.9636 -2.43511 0 0 666494. 2306.21 0.30 0.05 0.13 -1 -1 0.30 0.0146981 0.0129087 123 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 5.71 vpr 63.41 MiB -1 -1 0.30 21496 1 0.04 -1 -1 33760 -1 -1 35 28 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64932 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 24.9 MiB 0.25 923 12623 3487 7239 1897 63.4 MiB 0.14 0.00 4.05815 -100.085 -4.05815 4.05815 1.17 0.000282317 0.000225409 0.0206415 0.0168795 -1 -1 -1 -1 26 2151 41 6.65987e+06 443730 477104. 1650.88 1.29 0.0900948 0.0773508 21682 110474 -1 1846 35 1346 2687 324830 124278 3.61745 3.61745 -101.557 -3.61745 0 0 585099. 2024.56 0.25 0.16 0.14 -1 -1 0.25 0.0285601 0.0246591 115 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 5.76 vpr 63.70 MiB -1 -1 0.22 21504 1 0.04 -1 -1 34148 -1 -1 17 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65232 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 24.9 MiB 0.23 738 13937 5869 7500 568 63.7 MiB 0.10 0.00 3.86584 -113.256 -3.86584 3.86584 1.11 0.000198986 0.000157697 0.0197244 0.0160906 -1 -1 -1 -1 28 1945 22 6.65987e+06 215526 500653. 1732.36 1.43 0.0754204 0.0647044 21970 115934 -1 1763 19 1171 2031 154935 35450 3.26357 3.26357 -110.084 -3.26357 0 0 612192. 2118.31 0.40 0.09 0.18 -1 -1 0.40 0.0253958 0.0228188 108 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 5.40 vpr 63.80 MiB -1 -1 0.21 21404 1 0.04 -1 -1 33516 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65332 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 24.8 MiB 0.26 969 14724 4160 8401 2163 63.8 MiB 0.10 0.00 3.82038 -130.284 -3.82038 3.82038 0.96 0.000198817 0.000156115 0.0184689 0.0148604 -1 -1 -1 -1 32 2443 23 6.65987e+06 253560 554710. 1919.41 1.13 0.0664438 0.0561061 22834 132086 -1 2030 19 1209 1753 133147 30661 2.98331 2.98331 -122.095 -2.98331 0 0 701300. 2426.64 0.39 0.07 0.14 -1 -1 0.39 0.0210895 0.0188883 120 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 5.49 vpr 63.50 MiB -1 -1 0.25 21324 1 0.05 -1 -1 33936 -1 -1 32 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65020 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 24.8 MiB 0.19 1063 16295 4388 9974 1933 63.5 MiB 0.12 0.00 4.27726 -124.126 -4.27726 4.27726 0.94 0.000201635 0.000160029 0.0169531 0.0137914 -1 -1 -1 -1 32 2368 21 6.65987e+06 405696 554710. 1919.41 1.18 0.0746875 0.0642367 22834 132086 -1 2139 23 1457 2604 179250 41684 3.24771 3.24771 -115.163 -3.24771 0 0 701300. 2426.64 0.35 0.06 0.15 -1 -1 0.35 0.0155445 0.0137738 127 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 5.68 vpr 63.90 MiB -1 -1 0.19 21448 1 0.04 -1 -1 33780 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65436 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 25.0 MiB 0.46 1170 8402 2051 5537 814 63.9 MiB 0.09 0.00 5.08418 -160.146 -5.08418 5.08418 1.10 0.000226 0.000180791 0.0129789 0.0107277 -1 -1 -1 -1 28 3046 20 6.65987e+06 278916 500653. 1732.36 1.26 0.0681114 0.0586855 21970 115934 -1 2524 22 1589 2280 166814 38342 4.15751 4.15751 -149.968 -4.15751 0 0 612192. 2118.31 0.30 0.07 0.16 -1 -1 0.30 0.0188744 0.0167625 144 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 6.43 vpr 64.08 MiB -1 -1 0.22 21492 1 0.06 -1 -1 34048 -1 -1 32 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65620 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 25.2 MiB 0.28 1091 17397 4924 9824 2649 64.1 MiB 0.13 0.00 5.003 -142.071 -5.003 5.003 1.08 0.000251914 0.000203004 0.0222578 0.0180648 -1 -1 -1 -1 26 2904 33 6.65987e+06 405696 477104. 1650.88 1.95 0.0885723 0.0752874 21682 110474 -1 2489 23 1573 2975 231239 53660 4.26683 4.26683 -144.295 -4.26683 0 0 585099. 2024.56 0.32 0.14 0.12 -1 -1 0.32 0.0396274 0.0360269 142 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 5.94 vpr 64.05 MiB -1 -1 0.25 21344 1 0.06 -1 -1 33760 -1 -1 37 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65588 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 25.1 MiB 0.35 1091 6681 1303 5078 300 64.1 MiB 0.07 0.00 4.26912 -136.659 -4.26912 4.26912 1.04 0.000233561 0.000185446 0.00919908 0.00760708 -1 -1 -1 -1 28 2817 25 6.65987e+06 469086 500653. 1732.36 1.51 0.0738565 0.0639349 21970 115934 -1 2390 24 1458 2683 207005 46217 3.57931 3.57931 -129.096 -3.57931 0 0 612192. 2118.31 0.37 0.10 0.13 -1 -1 0.37 0.0306445 0.0276156 140 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 5.28 vpr 63.36 MiB -1 -1 0.21 21540 1 0.05 -1 -1 33636 -1 -1 19 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64876 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 24.9 MiB 0.35 870 11106 2831 6524 1751 63.4 MiB 0.08 0.00 3.61906 -110.424 -3.61906 3.61906 1.13 0.000171557 0.00013531 0.0129918 0.0105766 -1 -1 -1 -1 30 1839 21 6.65987e+06 240882 526063. 1820.29 0.89 0.0444424 0.0372435 22546 126617 -1 1563 18 819 1314 75712 17626 2.45705 2.45705 -95.6578 -2.45705 0 0 666494. 2306.21 0.35 0.05 0.12 -1 -1 0.35 0.0153349 0.0137147 105 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.83 vpr 64.07 MiB -1 -1 0.22 21456 1 0.04 -1 -1 34144 -1 -1 21 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65604 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 25.2 MiB 0.31 978 15203 5869 8044 1290 64.1 MiB 0.12 0.00 4.78844 -136.276 -4.78844 4.78844 0.94 0.000235561 0.000187208 0.021382 0.0172448 -1 -1 -1 -1 30 2196 21 6.65987e+06 266238 526063. 1820.29 0.97 0.0695662 0.0583859 22546 126617 -1 1952 18 1077 1734 113396 24849 3.37542 3.37542 -122.74 -3.37542 0 0 666494. 2306.21 0.30 0.05 0.13 -1 -1 0.30 0.01619 0.0143558 137 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 6.59 vpr 63.75 MiB -1 -1 0.28 21572 1 0.05 -1 -1 33844 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65284 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 24.9 MiB 0.41 1105 10813 2684 6840 1289 63.8 MiB 0.10 0.00 4.95137 -146.216 -4.95137 4.95137 1.04 0.000220262 0.000176323 0.0145835 0.0119484 -1 -1 -1 -1 26 3219 39 6.65987e+06 304272 477104. 1650.88 2.26 0.0860942 0.0738399 21682 110474 -1 2516 21 1882 2878 255132 54414 3.74651 3.74651 -135.317 -3.74651 0 0 585099. 2024.56 0.28 0.11 0.11 -1 -1 0.28 0.0248897 0.0221261 138 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 5.69 vpr 64.04 MiB -1 -1 0.20 21468 1 0.04 -1 -1 33984 -1 -1 28 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65572 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 25.2 MiB 0.67 1080 15187 4594 8064 2529 64.0 MiB 0.11 0.00 5.08067 -147.956 -5.08067 5.08067 1.06 0.000207707 0.000164258 0.0182516 0.0148224 -1 -1 -1 -1 32 2590 22 6.65987e+06 354984 554710. 1919.41 0.98 0.0586214 0.04934 22834 132086 -1 2166 20 1488 2320 169566 38315 4.27397 4.27397 -141.786 -4.27397 0 0 701300. 2426.64 0.36 0.08 0.13 -1 -1 0.36 0.0244213 0.0220599 146 47 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 6.10 vpr 63.82 MiB -1 -1 0.21 21552 1 0.04 -1 -1 33924 -1 -1 31 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65352 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 25.0 MiB 1.32 986 11433 3001 7531 901 63.8 MiB 0.10 0.00 4.29269 -128.336 -4.29269 4.29269 1.01 0.000227447 0.000180322 0.0160457 0.0130968 -1 -1 -1 -1 32 2266 22 6.65987e+06 393018 554710. 1919.41 1.01 0.0660597 0.0554993 22834 132086 -1 2030 23 1472 2483 170176 40089 3.01711 3.01711 -114.453 -3.01711 0 0 701300. 2426.64 0.31 0.07 0.13 -1 -1 0.31 0.0186214 0.0163382 133 83 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 5.86 vpr 64.16 MiB -1 -1 0.28 21652 1 0.05 -1 -1 34060 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65696 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 25.4 MiB 0.31 1063 15273 4695 8692 1886 64.2 MiB 0.13 0.00 4.80469 -139.024 -4.80469 4.80469 1.04 0.000241712 0.000191897 0.0245582 0.0201745 -1 -1 -1 -1 32 2629 23 6.65987e+06 253560 554710. 1919.41 1.07 0.0781199 0.0653028 22834 132086 -1 2268 18 1507 2677 195261 43968 3.62631 3.62631 -130.943 -3.62631 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.0215693 0.0191503 133 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 5.77 vpr 64.05 MiB -1 -1 0.22 21480 1 0.04 -1 -1 33976 -1 -1 29 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65592 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 25.2 MiB 0.43 958 9738 2610 6016 1112 64.1 MiB 0.09 0.00 4.45269 -125.734 -4.45269 4.45269 1.03 0.00030591 0.000251282 0.0162077 0.013419 -1 -1 -1 -1 32 2235 18 6.65987e+06 367662 554710. 1919.41 1.00 0.0615563 0.0516706 22834 132086 -1 1952 21 1256 2061 148316 34812 3.04431 3.04431 -110.646 -3.04431 0 0 701300. 2426.64 0.35 0.05 0.14 -1 -1 0.35 0.0163134 0.0143483 131 85 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.55 vpr 63.14 MiB -1 -1 0.17 21216 1 0.04 -1 -1 34124 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 24.7 MiB 0.18 690 12416 3929 6813 1674 63.1 MiB 0.08 0.00 3.74649 -110.352 -3.74649 3.74649 0.97 0.000163858 0.000129721 0.0142599 0.0115165 -1 -1 -1 -1 30 1513 21 6.65987e+06 190170 526063. 1820.29 0.88 0.044206 0.0367246 22546 126617 -1 1376 20 710 1066 67918 15837 2.57525 2.57525 -98.4721 -2.57525 0 0 666494. 2306.21 0.30 0.03 0.12 -1 -1 0.30 0.0117723 0.0103567 96 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 5.45 vpr 64.02 MiB -1 -1 0.23 21396 1 0.05 -1 -1 33876 -1 -1 30 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65556 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 25.2 MiB 0.28 960 15004 4235 7978 2791 64.0 MiB 0.16 0.00 4.36949 -132.189 -4.36949 4.36949 1.14 0.00022127 0.000174162 0.0255461 0.0206582 -1 -1 -1 -1 32 2280 23 6.65987e+06 380340 554710. 1919.41 1.21 0.113851 0.0978008 22834 132086 -1 1948 22 1416 2287 178164 39744 3.46911 3.46911 -125.161 -3.46911 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0191041 0.0169172 130 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 5.97 vpr 64.05 MiB -1 -1 0.33 21916 1 0.06 -1 -1 33948 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65588 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 25.1 MiB 0.39 1050 14907 5385 7856 1666 64.1 MiB 0.14 0.00 4.72838 -146.592 -4.72838 4.72838 1.08 0.000336078 0.000276143 0.0279504 0.0231039 -1 -1 -1 -1 32 2640 43 6.65987e+06 253560 554710. 1919.41 1.26 0.102749 0.0867522 22834 132086 -1 2299 33 2450 3980 449977 173095 3.85597 3.85597 -139.592 -3.85597 0 0 701300. 2426.64 0.34 0.16 0.13 -1 -1 0.34 0.0300319 0.026025 147 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 5.20 vpr 63.50 MiB -1 -1 0.31 21652 1 0.06 -1 -1 33676 -1 -1 19 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 24.9 MiB 0.26 871 13403 4770 6898 1735 63.5 MiB 0.09 0.00 4.19052 -118.124 -4.19052 4.19052 1.09 0.000183854 0.0001463 0.0160202 0.0130417 -1 -1 -1 -1 30 2034 20 6.65987e+06 240882 526063. 1820.29 0.94 0.0499722 0.0421205 22546 126617 -1 1822 18 870 1143 89550 19468 2.90751 2.90751 -108.874 -2.90751 0 0 666494. 2306.21 0.35 0.04 0.13 -1 -1 0.35 0.012902 0.0115251 111 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 5.09 vpr 63.26 MiB -1 -1 0.19 21220 1 0.04 -1 -1 33940 -1 -1 21 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64780 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 24.6 MiB 0.16 780 8136 2089 5541 506 63.3 MiB 0.06 0.00 3.80235 -109.245 -3.80235 3.80235 1.02 0.000168167 0.000133684 0.0106798 0.00881916 -1 -1 -1 -1 26 2013 29 6.65987e+06 266238 477104. 1650.88 1.03 0.0468666 0.0398 21682 110474 -1 1810 21 1146 1877 153537 34871 3.03417 3.03417 -108.934 -3.03417 0 0 585099. 2024.56 0.33 0.07 0.18 -1 -1 0.33 0.0175115 0.0155868 106 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 5.34 vpr 64.10 MiB -1 -1 0.19 21588 1 0.05 -1 -1 34080 -1 -1 25 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65640 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 25.2 MiB 0.34 1098 14939 3925 8967 2047 64.1 MiB 0.15 0.00 4.99418 -158.194 -4.99418 4.99418 1.07 0.000216854 0.000171974 0.0239624 0.0194868 -1 -1 -1 -1 32 2678 24 6.65987e+06 316950 554710. 1919.41 1.02 0.0686225 0.0575158 22834 132086 -1 2339 18 1657 2174 176709 39281 4.06163 4.06163 -148.702 -4.06163 0 0 701300. 2426.64 0.31 0.05 0.14 -1 -1 0.31 0.0143272 0.0126968 144 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.83 vpr 64.15 MiB -1 -1 0.22 21512 1 0.06 -1 -1 34048 -1 -1 28 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65688 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 25.3 MiB 0.71 1053 6923 1430 5143 350 64.1 MiB 0.07 0.00 5.07767 -147.587 -5.07767 5.07767 1.02 0.00029421 0.000241003 0.01113 0.00858179 -1 -1 -1 -1 28 2822 20 6.65987e+06 354984 500653. 1732.36 1.30 0.0626069 0.0524371 21970 115934 -1 2407 20 1612 2506 187128 43634 4.37417 4.37417 -147.642 -4.37417 0 0 612192. 2118.31 0.31 0.06 0.18 -1 -1 0.31 0.0168604 0.0148611 151 56 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 9.95 vpr 64.05 MiB -1 -1 0.19 21492 1 0.04 -1 -1 33808 -1 -1 36 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65584 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 25.1 MiB 0.25 1223 15412 3918 10280 1214 64.0 MiB 0.13 0.00 5.24834 -141.684 -5.24834 5.24834 0.90 0.000213309 0.000169907 0.0175133 0.0142868 -1 -1 -1 -1 28 2890 23 6.65987e+06 456408 500653. 1732.36 5.98 0.161549 0.137198 21970 115934 -1 2545 28 1703 3359 306720 87869 4.35817 4.35817 -139.42 -4.35817 0 0 612192. 2118.31 0.28 0.11 0.12 -1 -1 0.28 0.02494 0.0221706 153 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.91 vpr 63.80 MiB -1 -1 0.21 21516 1 0.05 -1 -1 34060 -1 -1 31 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65328 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 24.9 MiB 0.30 869 15423 3820 9178 2425 63.8 MiB 0.11 0.00 3.39798 -101.892 -3.39798 3.39798 0.91 0.000426435 0.00038453 0.0174805 0.014274 -1 -1 -1 -1 32 1975 23 6.65987e+06 393018 554710. 1919.41 0.96 0.0577267 0.0486465 22834 132086 -1 1791 23 1362 2321 160586 38243 2.69151 2.69151 -98.0771 -2.69151 0 0 701300. 2426.64 0.37 0.07 0.13 -1 -1 0.37 0.0177374 0.0156156 120 52 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.76 vpr 63.17 MiB -1 -1 0.20 21368 1 0.04 -1 -1 34052 -1 -1 21 27 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64684 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 24.6 MiB 0.15 593 9712 2515 6016 1181 63.2 MiB 0.06 0.00 3.49724 -93.393 -3.49724 3.49724 1.01 0.000165664 0.000131626 0.0114527 0.00936572 -1 -1 -1 -1 28 1575 20 6.65987e+06 266238 500653. 1732.36 0.91 0.0425712 0.0358616 21970 115934 -1 1453 18 952 1469 116237 27591 2.84397 2.84397 -94.8985 -2.84397 0 0 612192. 2118.31 0.28 0.04 0.11 -1 -1 0.28 0.0117763 0.0103667 97 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 6.32 vpr 64.11 MiB -1 -1 0.21 21712 1 0.04 -1 -1 34072 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65644 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 25.8 MiB 0.49 1325 16572 5545 8395 2632 64.1 MiB 0.18 0.00 4.13297 -134.503 -4.13297 4.13297 1.11 0.000357775 0.000294214 0.0364056 0.0306597 -1 -1 -1 -1 28 3732 33 6.65987e+06 329628 500653. 1732.36 1.82 0.10995 0.093406 21970 115934 -1 2910 22 2032 3461 269192 58352 3.78985 3.78985 -132.845 -3.78985 0 0 612192. 2118.31 0.27 0.09 0.13 -1 -1 0.27 0.0233614 0.0209297 170 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 6.05 vpr 64.05 MiB -1 -1 0.32 21756 1 0.04 -1 -1 34088 -1 -1 21 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65588 31 32 365 296 1 193 84 17 17 289 -1 unnamed_device 25.2 MiB 1.20 1078 12528 3903 6326 2299 64.1 MiB 0.10 0.00 5.17417 -148.706 -5.17417 5.17417 0.91 0.000224964 0.000178374 0.0185415 0.0150606 -1 -1 -1 -1 32 2682 40 6.65987e+06 266238 554710. 1919.41 1.14 0.0709059 0.0594337 22834 132086 -1 2210 21 1701 2586 216602 47829 4.53217 4.53217 -149.34 -4.53217 0 0 701300. 2426.64 0.32 0.08 0.14 -1 -1 0.32 0.0204275 0.0182516 150 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 6.17 vpr 63.77 MiB -1 -1 0.20 21532 1 0.04 -1 -1 33784 -1 -1 19 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65296 32 32 331 280 1 175 83 17 17 289 -1 unnamed_device 24.9 MiB 1.22 898 12323 4450 5685 2188 63.8 MiB 0.10 0.00 4.15487 -129.388 -4.15487 4.15487 0.99 0.000212336 0.000168618 0.0172313 0.0139804 -1 -1 -1 -1 32 2292 24 6.65987e+06 240882 554710. 1919.41 1.11 0.0688534 0.0577699 22834 132086 -1 1956 18 1203 1755 145047 32577 3.35916 3.35916 -129.556 -3.35916 0 0 701300. 2426.64 0.32 0.05 0.15 -1 -1 0.32 0.0135152 0.0119889 129 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.90 vpr 63.68 MiB -1 -1 0.33 21388 1 0.05 -1 -1 33576 -1 -1 30 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65208 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 24.7 MiB 0.18 992 12022 3497 7943 582 63.7 MiB 0.10 0.00 4.90813 -126.424 -4.90813 4.90813 0.95 0.000220958 0.000175295 0.0140833 0.011304 -1 -1 -1 -1 32 2140 22 6.65987e+06 380340 554710. 1919.41 0.91 0.0501439 0.0416626 22834 132086 -1 1925 21 1081 1806 112206 27790 3.48705 3.48705 -114.539 -3.48705 0 0 701300. 2426.64 0.31 0.05 0.13 -1 -1 0.31 0.0151531 0.0133141 126 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 5.26 vpr 63.99 MiB -1 -1 0.22 21500 1 0.04 -1 -1 33508 -1 -1 33 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65524 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 25.0 MiB 0.34 1073 18054 5291 10324 2439 64.0 MiB 0.14 0.00 4.77546 -137.042 -4.77546 4.77546 1.06 0.000238618 0.000180391 0.0219342 0.0178211 -1 -1 -1 -1 30 2297 18 6.65987e+06 418374 526063. 1820.29 1.02 0.0684502 0.0578005 22546 126617 -1 2004 18 1180 1930 120975 26697 3.43717 3.43717 -122.972 -3.43717 0 0 666494. 2306.21 0.30 0.05 0.12 -1 -1 0.30 0.0166671 0.0147678 144 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 5.17 vpr 63.96 MiB -1 -1 0.21 21592 1 0.05 -1 -1 34020 -1 -1 31 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65500 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 25.1 MiB 0.48 995 8073 1820 5530 723 64.0 MiB 0.07 0.00 3.66846 -111.424 -3.66846 3.66846 0.93 0.000207224 0.000162836 0.010037 0.00822279 -1 -1 -1 -1 32 2372 20 6.65987e+06 393018 554710. 1919.41 0.94 0.0469932 0.0393657 22834 132086 -1 2116 20 1245 2125 158081 35731 2.85591 2.85591 -105.849 -2.85591 0 0 701300. 2426.64 0.33 0.05 0.14 -1 -1 0.33 0.0144221 0.0127245 124 51 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 5.67 vpr 64.09 MiB -1 -1 0.19 21572 1 0.04 -1 -1 34104 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65624 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 25.4 MiB 0.34 1081 14713 4410 8000 2303 64.1 MiB 0.12 0.00 4.85897 -149.763 -4.85897 4.85897 1.12 0.000225065 0.000169391 0.0201529 0.0163419 -1 -1 -1 -1 32 3051 39 6.65987e+06 304272 554710. 1919.41 1.44 0.102627 0.0878269 22834 132086 -1 2442 22 1985 3010 225131 52194 4.07205 4.07205 -141.281 -4.07205 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0177122 0.0156745 147 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 5.61 vpr 63.86 MiB -1 -1 0.29 21768 1 0.05 -1 -1 33724 -1 -1 34 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65388 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 25.0 MiB 0.51 1057 18773 5404 10789 2580 63.9 MiB 0.15 0.00 4.57498 -141.429 -4.57498 4.57498 1.03 0.000226159 0.000177933 0.0231806 0.0188536 -1 -1 -1 -1 26 2887 23 6.65987e+06 431052 477104. 1650.88 1.21 0.0784627 0.0667168 21682 110474 -1 2397 18 1290 2019 146660 33279 3.71257 3.71257 -132.431 -3.71257 0 0 585099. 2024.56 0.29 0.05 0.11 -1 -1 0.29 0.0157803 0.0140274 143 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.95 vpr 63.14 MiB -1 -1 0.19 21484 1 0.04 -1 -1 34080 -1 -1 17 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64656 29 32 269 229 1 130 78 17 17 289 -1 unnamed_device 24.5 MiB 0.21 522 12528 3273 8240 1015 63.1 MiB 0.07 0.00 3.78218 -105.823 -3.78218 3.78218 0.98 0.000172267 0.000136272 0.0149266 0.0119926 -1 -1 -1 -1 32 1502 24 6.65987e+06 215526 554710. 1919.41 0.91 0.0468584 0.0388225 22834 132086 -1 1376 20 919 1272 108408 25987 3.03537 3.03537 -98.5881 -3.03537 0 0 701300. 2426.64 0.30 0.04 0.13 -1 -1 0.30 0.0122893 0.0107888 92 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 5.74 vpr 63.79 MiB -1 -1 0.20 21376 1 0.05 -1 -1 33928 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65316 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 24.9 MiB 0.30 859 7770 1621 5832 317 63.8 MiB 0.06 0.00 4.1395 -122.394 -4.1395 4.1395 1.11 0.000185547 0.000145401 0.00978696 0.00794937 -1 -1 -1 -1 26 2383 37 6.65987e+06 253560 477104. 1650.88 1.28 0.0604016 0.0509856 21682 110474 -1 1928 23 1312 1714 141396 32487 3.37517 3.37517 -120.213 -3.37517 0 0 585099. 2024.56 0.29 0.11 0.10 -1 -1 0.29 0.0270467 0.0237454 117 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 5.24 vpr 63.80 MiB -1 -1 0.19 21572 1 0.04 -1 -1 33636 -1 -1 37 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65332 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 24.8 MiB 0.20 1006 6364 1268 4717 379 63.8 MiB 0.07 0.00 4.54692 -120.859 -4.54692 4.54692 1.00 0.000225355 0.000181326 0.00916007 0.00766175 -1 -1 -1 -1 26 2479 25 6.65987e+06 469086 477104. 1650.88 1.37 0.0728724 0.0624535 21682 110474 -1 2227 21 1387 2520 179851 42241 4.07611 4.07611 -126.277 -4.07611 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0155137 0.0137027 129 33 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 5.33 vpr 63.40 MiB -1 -1 0.20 21476 1 0.04 -1 -1 34052 -1 -1 21 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64920 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 24.6 MiB 0.27 903 9516 2433 6273 810 63.4 MiB 0.10 0.00 4.23586 -115.879 -4.23586 4.23586 0.96 0.000322071 0.000261844 0.0167668 0.0139764 -1 -1 -1 -1 26 2151 21 6.65987e+06 266238 477104. 1650.88 1.34 0.066604 0.0571608 21682 110474 -1 1944 20 976 1248 91213 21369 3.19091 3.19091 -109.113 -3.19091 0 0 585099. 2024.56 0.35 0.05 0.18 -1 -1 0.35 0.0147568 0.0130005 110 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.89 vpr 63.23 MiB -1 -1 0.22 21440 1 0.05 -1 -1 33816 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 24.6 MiB 0.24 840 12980 3474 8543 963 63.2 MiB 0.08 0.00 3.73708 -117.005 -3.73708 3.73708 0.97 0.000183186 0.000144283 0.015428 0.0124593 -1 -1 -1 -1 32 2020 18 6.65987e+06 202848 554710. 1919.41 0.99 0.0467346 0.039004 22834 132086 -1 1831 23 1462 2541 202733 45407 2.67845 2.67845 -105.711 -2.67845 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0149316 0.0131229 109 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 5.12 vpr 63.92 MiB -1 -1 0.27 21696 1 0.06 -1 -1 34000 -1 -1 35 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65456 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 25.1 MiB 0.33 932 18098 5272 9901 2925 63.9 MiB 0.13 0.00 4.00372 -119.439 -4.00372 4.00372 0.94 0.000219055 0.000172289 0.0205669 0.0163462 -1 -1 -1 -1 32 2122 19 6.65987e+06 443730 554710. 1919.41 1.07 0.0637094 0.0524413 22834 132086 -1 1876 20 1378 2071 131991 31106 2.96231 2.96231 -109.45 -2.96231 0 0 701300. 2426.64 0.32 0.05 0.13 -1 -1 0.32 0.016983 0.0148614 135 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.72 vpr 63.38 MiB -1 -1 0.22 21532 1 0.03 -1 -1 33676 -1 -1 19 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64900 31 32 265 230 1 164 82 17 17 289 -1 unnamed_device 24.8 MiB 0.30 729 5422 1011 4209 202 63.4 MiB 0.05 0.00 3.89447 -116.94 -3.89447 3.89447 0.95 0.000211633 0.000172597 0.00737993 0.006044 -1 -1 -1 -1 30 1860 22 6.65987e+06 240882 526063. 1820.29 0.92 0.0400217 0.0335143 22546 126617 -1 1574 17 803 1153 64453 16278 2.86137 2.86137 -106.867 -2.86137 0 0 666494. 2306.21 0.30 0.04 0.12 -1 -1 0.30 0.0116025 0.0103546 110 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 5.07 vpr 63.98 MiB -1 -1 0.21 21560 1 0.05 -1 -1 33676 -1 -1 31 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65512 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 25.2 MiB 0.43 979 15863 4619 8770 2474 64.0 MiB 0.11 0.00 3.70512 -117.413 -3.70512 3.70512 0.90 0.000209132 0.000164855 0.0186284 0.0151057 -1 -1 -1 -1 28 2333 21 6.65987e+06 393018 500653. 1732.36 1.17 0.0651445 0.0548032 21970 115934 -1 2040 22 1270 2188 155426 34369 2.66551 2.66551 -108.604 -2.66551 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0163742 0.0141909 126 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 6.09 vpr 63.81 MiB -1 -1 0.24 21860 1 0.04 -1 -1 33860 -1 -1 32 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65340 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 25.0 MiB 1.09 976 17159 4932 10231 1996 63.8 MiB 0.12 0.00 4.34696 -137.767 -4.34696 4.34696 0.98 0.000225373 0.000176463 0.0207949 0.016742 -1 -1 -1 -1 32 2285 23 6.65987e+06 405696 554710. 1919.41 1.02 0.0708915 0.0593798 22834 132086 -1 1959 19 1321 1855 128822 30635 3.45123 3.45123 -134.419 -3.45123 0 0 701300. 2426.64 0.39 0.10 0.13 -1 -1 0.39 0.0311558 0.027606 138 91 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 5.18 vpr 63.75 MiB -1 -1 0.25 21624 1 0.05 -1 -1 33716 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65280 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 24.9 MiB 0.34 668 7781 1699 5777 305 63.8 MiB 0.07 0.00 3.26384 -99.5047 -3.26384 3.26384 0.91 0.000184104 0.000144498 0.0111864 0.00910956 -1 -1 -1 -1 28 2035 27 6.65987e+06 215526 500653. 1732.36 1.24 0.0599495 0.05145 21970 115934 -1 1594 20 943 1429 115173 27681 2.87391 2.87391 -102.619 -2.87391 0 0 612192. 2118.31 0.28 0.04 0.12 -1 -1 0.28 0.013532 0.0119145 104 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 5.37 vpr 63.48 MiB -1 -1 0.25 21476 1 0.05 -1 -1 33624 -1 -1 19 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65004 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 24.8 MiB 0.25 794 6203 1260 4522 421 63.5 MiB 0.06 0.00 4.22769 -129.19 -4.22769 4.22769 0.92 0.000192981 0.000153689 0.00893566 0.00737135 -1 -1 -1 -1 28 2478 30 6.65987e+06 240882 500653. 1732.36 1.24 0.0567572 0.0485113 21970 115934 -1 2072 18 1317 1923 149105 37380 3.16031 3.16031 -121.312 -3.16031 0 0 612192. 2118.31 0.39 0.11 0.12 -1 -1 0.39 0.0301283 0.0271604 115 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.92 vpr 63.86 MiB -1 -1 0.21 21492 1 0.04 -1 -1 33976 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65392 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 24.8 MiB 0.29 982 13505 4715 6575 2215 63.9 MiB 0.10 0.00 4.5425 -135.474 -4.5425 4.5425 0.90 0.000197258 0.000155465 0.0170356 0.0137727 -1 -1 -1 -1 32 2569 24 6.65987e+06 278916 554710. 1919.41 1.01 0.0549614 0.0459936 22834 132086 -1 2078 23 1533 2145 153331 36456 3.62971 3.62971 -124.599 -3.62971 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0183407 0.0162854 130 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 5.39 vpr 63.73 MiB -1 -1 0.27 21476 1 0.04 -1 -1 33900 -1 -1 28 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65264 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 24.8 MiB 0.58 892 10583 2559 7230 794 63.7 MiB 0.09 0.00 4.50014 -117.225 -4.50014 4.50014 1.00 0.000198536 0.000157474 0.0132937 0.0108069 -1 -1 -1 -1 32 2068 20 6.65987e+06 354984 554710. 1919.41 1.02 0.0527817 0.0446715 22834 132086 -1 1836 19 911 1491 100749 23800 3.02731 3.02731 -105.23 -3.02731 0 0 701300. 2426.64 0.32 0.05 0.13 -1 -1 0.32 0.017025 0.0151006 121 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 5.57 vpr 63.86 MiB -1 -1 0.21 21948 1 0.04 -1 -1 34096 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65388 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 25.5 MiB 0.55 1106 7767 1737 5626 404 63.9 MiB 0.08 0.00 5.13083 -160.454 -5.13083 5.13083 1.02 0.000237502 0.000190612 0.0124513 0.010339 -1 -1 -1 -1 28 2891 50 6.65987e+06 291594 500653. 1732.36 1.30 0.08774 0.0746225 21970 115934 -1 2428 22 1669 2470 189430 43116 4.20151 4.20151 -148.34 -4.20151 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0180077 0.0159366 153 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 5.02 vpr 63.26 MiB -1 -1 0.18 21192 1 0.05 -1 -1 33864 -1 -1 18 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64776 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 24.7 MiB 0.18 592 6556 1291 4488 777 63.3 MiB 0.04 0.00 3.5592 -94.6383 -3.5592 3.5592 1.30 0.000157478 0.000125174 0.00787358 0.00650717 -1 -1 -1 -1 32 1586 18 6.65987e+06 228204 554710. 1919.41 0.89 0.0338716 0.0286305 22834 132086 -1 1290 19 727 1139 67522 18762 2.64351 2.64351 -91.6369 -2.64351 0 0 701300. 2426.64 0.30 0.03 0.13 -1 -1 0.30 0.0108955 0.00970398 96 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 6.95 vpr 64.21 MiB -1 -1 0.23 21828 1 0.05 -1 -1 33884 -1 -1 33 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65748 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 25.2 MiB 0.55 1151 14083 3602 8814 1667 64.2 MiB 0.12 0.00 4.1637 -141.581 -4.1637 4.1637 1.52 0.000239985 0.000189297 0.0187948 0.0152251 -1 -1 -1 -1 26 2790 35 6.65987e+06 418374 477104. 1650.88 1.80 0.0932026 0.0790477 21682 110474 -1 2446 21 1740 2547 209902 46025 3.82177 3.82177 -144.768 -3.82177 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0173274 0.0151531 144 90 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 5.19 vpr 63.91 MiB -1 -1 0.19 21380 1 0.04 -1 -1 33900 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65444 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 25.0 MiB 0.29 838 12464 4352 6338 1774 63.9 MiB 0.10 0.00 3.54047 -123.895 -3.54047 3.54047 1.06 0.000225521 0.000178436 0.0214698 0.0175208 -1 -1 -1 -1 30 1878 23 6.65987e+06 202848 526063. 1820.29 1.03 0.0666966 0.0558 22546 126617 -1 1542 22 1226 1790 98805 26832 2.87877 2.87877 -118.928 -2.87877 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0151246 0.013228 115 96 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 7.34 vpr 63.93 MiB -1 -1 0.24 21640 1 0.06 -1 -1 34008 -1 -1 31 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65464 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 25.1 MiB 0.47 983 16079 4676 8844 2559 63.9 MiB 0.24 0.00 4.19332 -128.664 -4.19332 4.19332 1.63 0.000605014 0.000519415 0.0551051 0.047835 -1 -1 -1 -1 32 2255 22 6.65987e+06 393018 554710. 1919.41 1.58 0.123022 0.106452 22834 132086 -1 1913 18 945 1398 91740 22097 3.08831 3.08831 -113.899 -3.08831 0 0 701300. 2426.64 0.30 0.04 0.14 -1 -1 0.30 0.0144483 0.0127817 130 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 7.26 vpr 63.84 MiB -1 -1 0.20 21860 1 0.04 -1 -1 34160 -1 -1 25 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65368 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 25.3 MiB 0.53 1359 11969 3395 7471 1103 63.8 MiB 0.25 0.01 6.16929 -186.366 -6.16929 6.16929 1.60 0.000855604 0.000747721 0.0515623 0.0447044 -1 -1 -1 -1 30 3247 30 6.65987e+06 316950 526063. 1820.29 1.51 0.122238 0.105706 22546 126617 -1 2548 18 1419 2069 117302 27620 4.70482 4.70482 -164.568 -4.70482 0 0 666494. 2306.21 0.34 0.09 0.12 -1 -1 0.34 0.0303644 0.0272888 168 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.63 vpr 63.24 MiB -1 -1 0.24 21276 1 0.03 -1 -1 33640 -1 -1 17 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64756 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 24.7 MiB 0.24 745 9881 2719 6136 1026 63.2 MiB 0.06 0.00 3.31307 -103.296 -3.31307 3.31307 0.99 0.000160002 0.000127709 0.0108662 0.00878042 -1 -1 -1 -1 30 1522 19 6.65987e+06 215526 526063. 1820.29 0.99 0.0430464 0.0363406 22546 126617 -1 1344 14 542 690 48805 11023 2.16777 2.16777 -89.6123 -2.16777 0 0 666494. 2306.21 0.32 0.03 0.12 -1 -1 0.32 0.0089873 0.00806494 86 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.52 vpr 63.54 MiB -1 -1 0.19 21552 1 0.03 -1 -1 33732 -1 -1 16 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65064 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 24.7 MiB 0.14 602 12196 3365 6955 1876 63.5 MiB 0.08 0.00 3.90063 -110.636 -3.90063 3.90063 0.95 0.000179567 0.000142245 0.015197 0.0122539 -1 -1 -1 -1 30 1518 19 6.65987e+06 202848 526063. 1820.29 0.89 0.0462933 0.0384287 22546 126617 -1 1262 17 645 1082 59268 14532 2.86471 2.86471 -99.436 -2.86471 0 0 666494. 2306.21 0.41 0.04 0.13 -1 -1 0.41 0.014125 0.0125301 92 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 5.40 vpr 63.33 MiB -1 -1 0.20 21632 1 0.05 -1 -1 33480 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 24.9 MiB 0.16 882 9385 2433 6375 577 63.3 MiB 0.07 0.00 3.38183 -110.848 -3.38183 3.38183 1.08 0.000208197 0.00016932 0.0114449 0.00936788 -1 -1 -1 -1 26 2388 28 6.65987e+06 266238 477104. 1650.88 1.62 0.078917 0.0685571 21682 110474 -1 2044 21 1367 2481 205189 45540 2.74151 2.74151 -112.085 -2.74151 0 0 585099. 2024.56 0.29 0.07 0.10 -1 -1 0.29 0.0176913 0.0154808 115 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 5.09 vpr 63.25 MiB -1 -1 0.16 21336 1 0.03 -1 -1 33732 -1 -1 27 25 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64772 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 24.8 MiB 0.13 451 9966 3308 4450 2208 63.3 MiB 0.05 0.00 3.08755 -72.8894 -3.08755 3.08755 1.13 0.000148394 0.000117353 0.0106207 0.0086907 -1 -1 -1 -1 30 1266 42 6.65987e+06 342306 526063. 1820.29 1.21 0.0578386 0.0493399 22546 126617 -1 972 64 992 2005 378014 232494 3.12459 3.12459 -67.2426 -3.12459 0 0 666494. 2306.21 0.34 0.15 0.13 -1 -1 0.34 0.024016 0.0204472 89 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 5.78 vpr 63.94 MiB -1 -1 0.22 21484 1 0.04 -1 -1 33800 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65472 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 25.1 MiB 0.36 1057 14724 4445 8208 2071 63.9 MiB 0.12 0.00 3.92752 -127.443 -3.92752 3.92752 1.01 0.000220795 0.000174399 0.0210103 0.0169908 -1 -1 -1 -1 32 2593 23 6.65987e+06 253560 554710. 1919.41 1.22 0.0739085 0.062067 22834 132086 -1 2333 21 1449 2571 195752 43834 3.59845 3.59845 -126.517 -3.59845 0 0 701300. 2426.64 0.45 0.11 0.17 -1 -1 0.45 0.0303938 0.0268507 135 72 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.29 vpr 63.94 MiB -1 -1 0.20 21868 1 0.03 -1 -1 33760 -1 -1 33 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65476 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 25.0 MiB 0.44 971 8856 1873 6469 514 63.9 MiB 0.08 0.00 4.32075 -139.202 -4.32075 4.32075 0.99 0.000245477 0.00019532 0.0126115 0.0103432 -1 -1 -1 -1 30 2154 18 6.65987e+06 418374 526063. 1820.29 1.11 0.0912634 0.0794414 22546 126617 -1 1832 18 1023 1581 85815 20192 3.08137 3.08137 -119.737 -3.08137 0 0 666494. 2306.21 0.31 0.05 0.19 -1 -1 0.31 0.0174297 0.0154511 142 90 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 12.11 vpr 64.53 MiB -1 -1 0.18 21364 1 0.04 -1 -1 33944 -1 -1 13 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66080 32 32 354 285 1 194 77 17 17 289 -1 unnamed_device 25.8 MiB 3.35 819 9531 4011 5172 348 64.5 MiB 0.07 0.00 5.3162 -155.272 -5.3162 5.3162 1.04 0.000221988 0.000176274 0.0161789 0.0132201 -1 -1 -1 -1 46 2487 41 6.95648e+06 188184 828058. 2865.25 4.18 0.117876 0.0999472 28066 200906 -1 2026 23 1583 2386 227929 54567 4.62211 4.62211 -154.484 -4.62211 0 0 1.01997e+06 3529.29 0.63 0.15 0.23 -1 -1 0.63 0.0368181 0.0328977 81 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 10.31 vpr 64.68 MiB -1 -1 0.25 21520 1 0.05 -1 -1 33912 -1 -1 15 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66228 30 32 363 293 1 189 77 17 17 289 -1 unnamed_device 25.9 MiB 3.24 826 11487 4560 5338 1589 64.7 MiB 0.08 0.00 4.55677 -137.33 -4.55677 4.55677 1.04 0.000212085 0.000166332 0.0197345 0.0160265 -1 -1 -1 -1 38 2540 31 6.95648e+06 217135 678818. 2348.85 3.23 0.117656 0.0993256 26626 170182 -1 2182 20 1894 2678 218279 46479 4.51791 4.51791 -149.379 -4.51791 0 0 902133. 3121.57 0.37 0.08 0.15 -1 -1 0.37 0.0216162 0.0193137 80 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 8.35 vpr 64.26 MiB -1 -1 0.18 21572 1 0.04 -1 -1 33940 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65804 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 25.7 MiB 1.68 827 10726 4133 5228 1365 64.3 MiB 0.07 0.00 3.76045 -118.752 -3.76045 3.76045 1.00 0.00019262 0.00015268 0.015791 0.0128785 -1 -1 -1 -1 40 2554 26 6.95648e+06 217135 706193. 2443.58 2.48 0.090803 0.0768171 26914 176310 -1 2163 23 1577 2193 187964 39693 3.66072 3.66072 -127.257 -3.66072 0 0 926341. 3205.33 0.61 0.10 0.22 -1 -1 0.61 0.0278853 0.0252605 76 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 7.53 vpr 64.29 MiB -1 -1 0.19 21604 1 0.04 -1 -1 33700 -1 -1 19 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65836 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 25.8 MiB 0.49 723 14356 5004 7145 2207 64.3 MiB 0.08 0.00 4.16078 -115.782 -4.16078 4.16078 0.92 0.000192149 0.000151565 0.0190399 0.0153402 -1 -1 -1 -1 38 2210 49 6.95648e+06 275038 678818. 2348.85 2.99 0.108319 0.0917604 26626 170182 -1 1597 21 1480 2455 149686 39777 4.58586 4.58586 -129.262 -4.58586 0 0 902133. 3121.57 0.53 0.10 0.18 -1 -1 0.53 0.0321312 0.0289667 71 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 7.86 vpr 64.92 MiB -1 -1 0.23 21572 1 0.04 -1 -1 33916 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66480 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 26.0 MiB 1.12 725 12292 5111 6719 462 64.9 MiB 0.07 0.00 4.31509 -131.389 -4.31509 4.31509 0.90 0.000205563 0.000161844 0.0173582 0.0140777 -1 -1 -1 -1 44 2628 39 6.95648e+06 231611 787024. 2723.27 2.93 0.100064 0.0840506 27778 195446 -1 2002 22 1473 2461 206209 45810 4.63321 4.63321 -144.751 -4.63321 0 0 997811. 3452.63 0.44 0.07 0.19 -1 -1 0.44 0.0176638 0.0156617 73 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 7.77 vpr 64.84 MiB -1 -1 0.21 21684 1 0.04 -1 -1 33848 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66400 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 26.1 MiB 1.29 780 12919 4595 6436 1888 64.8 MiB 0.09 0.00 3.0405 -114.196 -3.0405 3.0405 0.94 0.000222388 0.000175507 0.0185332 0.0150861 -1 -1 -1 -1 40 2350 24 6.95648e+06 303989 706193. 2443.58 2.59 0.0899042 0.0750879 26914 176310 -1 1993 23 1558 2361 235074 50536 3.23447 3.23447 -122.866 -3.23447 0 0 926341. 3205.33 0.41 0.08 0.19 -1 -1 0.41 0.022317 0.0198743 79 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 13.29 vpr 64.47 MiB -1 -1 0.19 21256 1 0.03 -1 -1 34236 -1 -1 14 27 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66016 27 32 259 221 1 127 73 17 17 289 -1 unnamed_device 25.9 MiB 7.08 438 12233 4755 5541 1937 64.5 MiB 0.06 0.00 3.56899 -93.4053 -3.56899 3.56899 1.05 0.000162596 0.000128346 0.0153326 0.0123812 -1 -1 -1 -1 38 1424 22 6.95648e+06 202660 678818. 2348.85 2.52 0.0812579 0.0673943 26626 170182 -1 1077 17 761 1211 79644 18967 2.87042 2.87042 -93.9521 -2.87042 0 0 902133. 3121.57 0.36 0.04 0.16 -1 -1 0.36 0.010778 0.00959309 53 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 7.15 vpr 63.80 MiB -1 -1 0.21 21452 1 0.04 -1 -1 33776 -1 -1 25 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65332 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 25.0 MiB 0.60 651 12373 4268 5547 2558 63.8 MiB 0.07 0.00 2.95842 -91.5041 -2.95842 2.95842 0.91 0.000187276 0.000148584 0.0151897 0.0122923 -1 -1 -1 -1 46 2209 26 6.95648e+06 361892 828058. 2865.25 2.72 0.0924417 0.0781809 28066 200906 -1 1528 20 1024 1644 126340 29774 2.98497 2.98497 -95.951 -2.98497 0 0 1.01997e+06 3529.29 0.46 0.06 0.20 -1 -1 0.46 0.0180316 0.016227 69 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 9.06 vpr 63.55 MiB -1 -1 0.24 21500 1 0.04 -1 -1 34072 -1 -1 11 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65080 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 25.0 MiB 2.53 588 11234 4630 5959 645 63.6 MiB 0.06 0.00 3.43049 -116.456 -3.43049 3.43049 0.99 0.000186299 0.000146923 0.0159625 0.01299 -1 -1 -1 -1 46 2138 37 6.95648e+06 159232 828058. 2865.25 2.49 0.0956042 0.0800219 28066 200906 -1 1613 22 1267 1771 130611 31469 3.99756 3.99756 -128.928 -3.99756 0 0 1.01997e+06 3529.29 0.51 0.06 0.20 -1 -1 0.51 0.0182684 0.0162897 66 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 8.31 vpr 64.10 MiB -1 -1 0.27 21600 1 0.05 -1 -1 33908 -1 -1 10 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65636 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 25.7 MiB 1.42 622 12629 5382 6987 260 64.1 MiB 0.07 0.00 3.30928 -114.751 -3.30928 3.30928 0.93 0.000198469 0.00015728 0.0185354 0.0150235 -1 -1 -1 -1 38 2059 36 6.95648e+06 144757 678818. 2348.85 2.95 0.0901888 0.0754361 26626 170182 -1 1539 21 1266 1783 148265 33150 3.14982 3.14982 -124.237 -3.14982 0 0 902133. 3121.57 0.38 0.10 0.24 -1 -1 0.38 0.028655 0.025901 59 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 7.95 vpr 63.96 MiB -1 -1 0.20 21500 1 0.05 -1 -1 33832 -1 -1 12 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65496 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 25.6 MiB 2.18 499 7824 2588 3808 1428 64.0 MiB 0.05 0.00 3.43453 -102.152 -3.43453 3.43453 0.97 0.000181831 0.000142898 0.0112941 0.00919499 -1 -1 -1 -1 38 1752 37 6.95648e+06 173708 678818. 2348.85 2.19 0.0744761 0.0617641 26626 170182 -1 1326 21 1069 1514 115939 26552 3.07902 3.07902 -108.714 -3.07902 0 0 902133. 3121.57 0.36 0.05 0.16 -1 -1 0.36 0.0135069 0.0118793 55 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 8.72 vpr 64.36 MiB -1 -1 0.18 21348 1 0.06 -1 -1 33868 -1 -1 10 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65900 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 25.6 MiB 1.95 641 8754 2760 4259 1735 64.4 MiB 0.05 0.00 3.28034 -110.937 -3.28034 3.28034 1.05 0.000171905 0.000135398 0.0121416 0.00994221 -1 -1 -1 -1 54 1307 45 6.95648e+06 144757 949917. 3286.91 2.46 0.0824087 0.0688568 29506 232905 -1 1088 22 1149 1563 98323 25859 2.96467 2.96467 -103.236 -2.96467 0 0 1.17392e+06 4061.99 0.62 0.09 0.24 -1 -1 0.62 0.0262099 0.0233277 62 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 10.25 vpr 64.50 MiB -1 -1 0.21 21380 1 0.04 -1 -1 34016 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66048 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 25.9 MiB 2.26 907 9881 2634 5845 1402 64.5 MiB 0.07 0.00 3.82352 -130.458 -3.82352 3.82352 1.11 0.000210584 0.000166699 0.0148822 0.0121283 -1 -1 -1 -1 38 2955 44 6.95648e+06 217135 678818. 2348.85 4.02 0.113009 0.0957341 26626 170182 -1 2316 23 2013 2995 290641 58279 3.44857 3.44857 -130.713 -3.44857 0 0 902133. 3121.57 0.35 0.09 0.25 -1 -1 0.35 0.0196117 0.0173875 83 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 7.25 vpr 64.60 MiB -1 -1 0.20 21540 1 0.03 -1 -1 33748 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66148 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 25.7 MiB 0.99 823 10481 3378 5508 1595 64.6 MiB 0.07 0.00 4.48063 -137.796 -4.48063 4.48063 0.94 0.000215097 0.000168242 0.0147095 0.0119895 -1 -1 -1 -1 38 2517 26 6.95648e+06 318465 678818. 2348.85 2.77 0.105806 0.0897578 26626 170182 -1 2065 20 1719 2505 231981 47305 4.15356 4.15356 -139.943 -4.15356 0 0 902133. 3121.57 0.34 0.06 0.16 -1 -1 0.34 0.0147827 0.012948 75 61 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 7.79 vpr 64.06 MiB -1 -1 0.24 21356 1 0.04 -1 -1 33780 -1 -1 13 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65596 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 25.5 MiB 1.57 466 9684 3087 4807 1790 64.1 MiB 0.05 0.00 3.10275 -86.0216 -3.10275 3.10275 0.90 0.000158117 0.000123521 0.0120611 0.00977274 -1 -1 -1 -1 48 1264 25 6.95648e+06 188184 865456. 2994.66 2.52 0.0736896 0.0624211 28354 207349 -1 1002 19 851 1266 84217 21946 2.96287 2.96287 -87.8543 -2.96287 0 0 1.05005e+06 3633.38 0.47 0.04 0.20 -1 -1 0.47 0.0119538 0.0106196 55 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 7.99 vpr 64.72 MiB -1 -1 0.20 21380 1 0.04 -1 -1 33788 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66276 32 32 370 297 1 181 81 17 17 289 -1 unnamed_device 25.8 MiB 1.33 775 13906 5829 7750 327 64.7 MiB 0.09 0.00 3.1265 -114.361 -3.1265 3.1265 0.96 0.000221425 0.000174985 0.0205022 0.0166575 -1 -1 -1 -1 46 2312 37 6.95648e+06 246087 828058. 2865.25 2.88 0.110365 0.0932517 28066 200906 -1 1900 23 1616 2552 220573 47117 3.02787 3.02787 -121.71 -3.02787 0 0 1.01997e+06 3529.29 0.39 0.06 0.18 -1 -1 0.39 0.0166722 0.0145266 77 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 8.81 vpr 64.51 MiB -1 -1 0.20 21396 1 0.04 -1 -1 33896 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66056 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 25.8 MiB 2.32 747 12528 4608 6627 1293 64.5 MiB 0.08 0.00 4.17585 -130.558 -4.17585 4.17585 1.28 0.000206749 0.00016357 0.0182732 0.0148447 -1 -1 -1 -1 46 2096 24 6.95648e+06 202660 828058. 2865.25 2.21 0.0913753 0.0767118 28066 200906 -1 1698 20 1513 2085 141000 32945 3.32147 3.32147 -122.644 -3.32147 0 0 1.01997e+06 3529.29 0.43 0.05 0.20 -1 -1 0.43 0.0156484 0.0138768 79 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 7.07 vpr 64.50 MiB -1 -1 0.24 21656 1 0.04 -1 -1 33792 -1 -1 9 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66048 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 26.0 MiB 1.00 713 11777 5007 6577 193 64.5 MiB 0.07 0.00 2.30911 -96.9749 -2.30911 2.30911 0.91 0.000189996 0.000148318 0.0173743 0.0139943 -1 -1 -1 -1 42 2008 47 6.95648e+06 130281 744469. 2576.02 2.45 0.103981 0.088063 27202 183097 -1 1664 19 1187 1768 172968 35245 2.45543 2.45543 -102.494 -2.45543 0 0 949917. 3286.91 0.37 0.05 0.19 -1 -1 0.37 0.0136451 0.0120174 57 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 6.32 vpr 63.70 MiB -1 -1 0.19 21320 1 0.04 -1 -1 33888 -1 -1 10 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65232 30 32 222 206 1 116 72 17 17 289 -1 unnamed_device 25.1 MiB 0.40 461 10800 4629 5825 346 63.7 MiB 0.08 0.00 2.11601 -78.0433 -2.11601 2.11601 0.98 0.000248924 0.000196684 0.0173341 0.014003 -1 -1 -1 -1 36 1696 29 6.95648e+06 144757 648988. 2245.63 2.25 0.069768 0.0580919 26050 158493 -1 1260 21 811 1065 112554 24104 2.46628 2.46628 -87.3645 -2.46628 0 0 828058. 2865.25 0.35 0.04 0.15 -1 -1 0.35 0.0103837 0.0091233 44 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 9.61 vpr 64.56 MiB -1 -1 0.20 21444 1 0.04 -1 -1 33972 -1 -1 12 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66112 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 25.8 MiB 3.51 809 7343 1906 5018 419 64.6 MiB 0.05 0.00 4.085 -135.532 -4.085 4.085 1.10 0.00018316 0.000145244 0.0107452 0.00884614 -1 -1 -1 -1 44 2187 26 6.95648e+06 173708 787024. 2723.27 2.10 0.0738246 0.0624353 27778 195446 -1 1736 22 1322 1829 185746 37640 3.73872 3.73872 -136.557 -3.73872 0 0 997811. 3452.63 0.39 0.06 0.19 -1 -1 0.39 0.014134 0.0125137 69 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 7.56 vpr 64.65 MiB -1 -1 0.18 21496 1 0.05 -1 -1 33960 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66204 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 25.8 MiB 0.89 652 8868 3175 4368 1325 64.7 MiB 0.06 0.00 3.70824 -121.183 -3.70824 3.70824 0.95 0.000252225 0.000205655 0.014282 0.0116308 -1 -1 -1 -1 48 2269 44 6.95648e+06 289514 865456. 2994.66 2.90 0.107039 0.0902821 28354 207349 -1 1729 29 1974 2701 205341 50308 3.95661 3.95661 -131.137 -3.95661 0 0 1.05005e+06 3633.38 0.41 0.07 0.20 -1 -1 0.41 0.019079 0.0166212 75 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 24.89 vpr 64.75 MiB -1 -1 0.22 21444 1 0.04 -1 -1 33740 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66308 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 25.8 MiB 1.82 829 13358 4003 7025 2330 64.8 MiB 0.09 0.00 4.7576 -136.611 -4.7576 4.7576 0.98 0.000224912 0.000178137 0.0213439 0.0173285 -1 -1 -1 -1 40 3227 43 6.95648e+06 202660 706193. 2443.58 19.18 0.224567 0.188514 26914 176310 -1 2291 20 1744 2675 303195 67376 4.16201 4.16201 -142.448 -4.16201 0 0 926341. 3205.33 0.41 0.08 0.19 -1 -1 0.41 0.0171412 0.0152645 82 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 6.21 vpr 63.66 MiB -1 -1 0.17 21216 1 0.03 -1 -1 34124 -1 -1 13 26 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65188 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 25.2 MiB 1.09 312 9123 3841 4664 618 63.7 MiB 0.04 0.00 2.23646 -64.6952 -2.23646 2.23646 0.89 0.000126804 9.9554e-05 0.0104115 0.00848257 -1 -1 -1 -1 38 1021 24 6.95648e+06 188184 678818. 2348.85 1.70 0.0519156 0.0431808 26626 170182 -1 768 19 550 671 50390 13315 2.25003 2.25003 -68.1429 -2.25003 0 0 902133. 3121.57 0.37 0.03 0.16 -1 -1 0.37 0.00931932 0.00825125 44 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 7.11 vpr 64.21 MiB -1 -1 0.17 21404 1 0.04 -1 -1 34048 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65748 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 25.5 MiB 1.04 670 9543 3158 4645 1740 64.2 MiB 0.06 0.00 4.56626 -117.316 -4.56626 4.56626 0.88 0.000179205 0.000141339 0.0124415 0.0101592 -1 -1 -1 -1 44 2267 26 6.95648e+06 217135 787024. 2723.27 2.46 0.0888189 0.0760538 27778 195446 -1 1602 28 1448 2388 179421 40665 4.06956 4.06956 -122.295 -4.06956 0 0 997811. 3452.63 0.38 0.06 0.21 -1 -1 0.38 0.0173792 0.0152561 66 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 5.64 vpr 63.91 MiB -1 -1 0.16 21020 1 0.05 -1 -1 33620 -1 -1 8 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65444 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 25.4 MiB 0.35 406 9906 4161 5525 220 63.9 MiB 0.04 0.00 2.18146 -70.2596 -2.18146 2.18146 0.94 0.000124507 9.7271e-05 0.00988285 0.00796893 -1 -1 -1 -1 36 1318 31 6.95648e+06 115805 648988. 2245.63 1.76 0.0487272 0.0401551 26050 158493 -1 1010 18 647 699 71573 16854 1.96208 1.96208 -75.5094 -1.96208 0 0 828058. 2865.25 0.32 0.03 0.15 -1 -1 0.32 0.00793337 0.00703134 42 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 11.12 vpr 64.15 MiB -1 -1 0.17 21448 1 0.04 -1 -1 34116 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65692 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 25.7 MiB 1.25 867 11740 4903 6637 200 64.2 MiB 0.08 0.00 4.50901 -127.255 -4.50901 4.50901 0.96 0.000192171 0.000151639 0.0162603 0.0132157 -1 -1 -1 -1 36 2734 50 6.95648e+06 217135 648988. 2245.63 6.16 0.124722 0.106944 26050 158493 -1 2155 20 1396 2160 208644 41889 3.98106 3.98106 -131.601 -3.98106 0 0 828058. 2865.25 0.32 0.06 0.16 -1 -1 0.32 0.0130309 0.0115155 68 24 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 7.07 vpr 64.41 MiB -1 -1 0.25 21272 1 0.03 -1 -1 34148 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65960 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 25.9 MiB 0.69 712 11989 4478 6107 1404 64.4 MiB 0.07 0.00 3.03146 -100.511 -3.03146 3.03146 0.94 0.000204437 0.000162194 0.0156796 0.0127903 -1 -1 -1 -1 46 2233 44 6.95648e+06 303989 828058. 2865.25 2.63 0.0977133 0.0830262 28066 200906 -1 1723 26 1313 2128 175152 40900 3.55217 3.55217 -109.828 -3.55217 0 0 1.01997e+06 3529.29 0.42 0.06 0.19 -1 -1 0.42 0.0163915 0.0142593 74 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 9.52 vpr 64.49 MiB -1 -1 0.18 21524 1 0.04 -1 -1 34004 -1 -1 19 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66040 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 25.6 MiB 1.04 860 15023 4398 9616 1009 64.5 MiB 0.09 0.00 4.41913 -133.119 -4.41913 4.41913 0.95 0.00020828 0.000164756 0.0197822 0.0159954 -1 -1 -1 -1 38 2706 45 6.95648e+06 275038 678818. 2348.85 4.85 0.133598 0.11382 26626 170182 -1 2154 21 1310 2015 173114 35307 4.12462 4.12462 -134.554 -4.12462 0 0 902133. 3121.57 0.34 0.06 0.15 -1 -1 0.34 0.0162332 0.0144336 72 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 7.98 vpr 64.16 MiB -1 -1 0.18 21512 1 0.04 -1 -1 33684 -1 -1 10 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65696 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 25.6 MiB 1.07 767 12319 3787 7504 1028 64.2 MiB 0.07 0.00 3.08875 -100.244 -3.08875 3.08875 0.93 0.000178109 0.00014023 0.0164567 0.0133096 -1 -1 -1 -1 36 2179 25 6.95648e+06 144757 648988. 2245.63 3.38 0.0854589 0.0719934 26050 158493 -1 1893 26 1241 1927 262841 76248 3.09632 3.09632 -116.758 -3.09632 0 0 828058. 2865.25 0.34 0.08 0.14 -1 -1 0.34 0.0167149 0.0147133 55 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 11.74 vpr 64.02 MiB -1 -1 0.21 21316 1 0.04 -1 -1 33944 -1 -1 18 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65556 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 25.5 MiB 0.32 475 11260 3973 5458 1829 64.0 MiB 0.06 0.00 3.16808 -92.8265 -3.16808 3.16808 0.95 0.000164255 0.000129073 0.0129851 0.0104919 -1 -1 -1 -1 40 1491 49 6.95648e+06 260562 706193. 2443.58 7.67 0.156767 0.132272 26914 176310 -1 1354 18 965 1322 133344 35806 2.92267 2.92267 -104.088 -2.92267 0 0 926341. 3205.33 0.36 0.05 0.17 -1 -1 0.36 0.0110759 0.00979618 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 7.05 vpr 63.97 MiB -1 -1 0.18 21536 1 0.05 -1 -1 33780 -1 -1 16 28 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65508 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 25.4 MiB 1.03 455 10956 4555 5743 658 64.0 MiB 0.06 0.00 2.9612 -88.8951 -2.9612 2.9612 0.93 0.000163943 0.000128305 0.0133793 0.0108521 -1 -1 -1 -1 42 2122 48 6.95648e+06 231611 744469. 2576.02 2.31 0.082035 0.0690944 27202 183097 -1 1442 25 1194 1858 160235 42971 3.50502 3.50502 -109.827 -3.50502 0 0 949917. 3286.91 0.38 0.06 0.18 -1 -1 0.38 0.014414 0.0125515 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 7.55 vpr 63.96 MiB -1 -1 0.24 21144 1 0.03 -1 -1 33868 -1 -1 10 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65500 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 25.4 MiB 0.62 491 8909 2535 4509 1865 64.0 MiB 0.05 0.00 3.37459 -106.336 -3.37459 3.37459 0.97 0.000174017 0.000138242 0.0117327 0.00958696 -1 -1 -1 -1 46 1610 43 6.95648e+06 144757 828058. 2865.25 3.16 0.0800122 0.0672175 28066 200906 -1 1141 21 1110 1592 118853 30138 2.98182 2.98182 -106.207 -2.98182 0 0 1.01997e+06 3529.29 0.40 0.04 0.20 -1 -1 0.40 0.0131555 0.0116862 58 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 6.85 vpr 63.96 MiB -1 -1 0.22 21268 1 0.04 -1 -1 33828 -1 -1 19 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65496 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 25.4 MiB 0.53 517 10050 3590 5083 1377 64.0 MiB 0.05 0.00 3.16008 -98.5956 -3.16008 3.16008 0.91 0.000167562 0.000130695 0.011461 0.00914926 -1 -1 -1 -1 46 1828 33 6.95648e+06 275038 828058. 2865.25 2.70 0.0713241 0.0597825 28066 200906 -1 1325 20 1000 1423 100826 24947 2.88667 2.88667 -102.534 -2.88667 0 0 1.01997e+06 3529.29 0.40 0.04 0.20 -1 -1 0.40 0.012947 0.0114847 61 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 7.48 vpr 64.32 MiB -1 -1 0.21 21536 1 0.07 -1 -1 33808 -1 -1 12 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65864 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 25.6 MiB 1.41 526 12233 5235 6327 671 64.3 MiB 0.07 0.00 2.76945 -94.9274 -2.76945 2.76945 0.95 0.0001768 0.000139095 0.0166225 0.0134067 -1 -1 -1 -1 46 1830 25 6.95648e+06 173708 828058. 2865.25 2.29 0.0766619 0.0643859 28066 200906 -1 1340 28 1257 1662 129919 31591 2.60472 2.60472 -98.1873 -2.60472 0 0 1.01997e+06 3529.29 0.41 0.06 0.19 -1 -1 0.41 0.0172454 0.0150118 61 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 19.67 vpr 64.84 MiB -1 -1 0.21 21332 1 0.05 -1 -1 34212 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66396 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 26.1 MiB 1.04 844 13477 4316 6348 2813 64.8 MiB 0.09 0.00 4.03548 -120.669 -4.03548 4.03548 0.93 0.000221355 0.00017561 0.019451 0.0158955 -1 -1 -1 -1 40 2610 26 6.95648e+06 303989 706193. 2443.58 14.82 0.17388 0.145374 26914 176310 -1 2302 25 1742 2813 237622 54085 4.11971 4.11971 -134.751 -4.11971 0 0 926341. 3205.33 0.35 0.08 0.18 -1 -1 0.35 0.0200668 0.0176019 84 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 8.15 vpr 64.58 MiB -1 -1 0.24 21748 1 0.04 -1 -1 33936 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66132 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 25.8 MiB 1.10 735 14323 5482 6766 2075 64.6 MiB 0.09 0.00 3.31218 -116.99 -3.31218 3.31218 0.98 0.000228439 0.000178766 0.0206726 0.0165039 -1 -1 -1 -1 40 2585 27 6.95648e+06 347416 706193. 2443.58 3.21 0.103933 0.0865487 26914 176310 -1 2126 25 2009 2860 289316 68222 3.46607 3.46607 -130.304 -3.46607 0 0 926341. 3205.33 0.36 0.08 0.17 -1 -1 0.36 0.0190086 0.0166142 82 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 8.80 vpr 64.23 MiB -1 -1 0.19 21352 1 0.04 -1 -1 33688 -1 -1 11 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65768 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 25.5 MiB 2.43 758 6739 2921 3632 186 64.2 MiB 0.04 0.00 3.81132 -121.219 -3.81132 3.81132 0.92 0.000173663 0.000136646 0.0106209 0.00872771 -1 -1 -1 -1 46 1839 22 6.95648e+06 159232 828058. 2865.25 2.63 0.0738397 0.0619271 28066 200906 -1 1596 21 1281 1828 170670 34985 3.07146 3.07146 -114.319 -3.07146 0 0 1.01997e+06 3529.29 0.38 0.06 0.19 -1 -1 0.38 0.0157263 0.0139192 63 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 9.98 vpr 64.80 MiB -1 -1 0.26 21644 1 0.06 -1 -1 33740 -1 -1 16 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66356 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 26.1 MiB 1.06 729 11233 3391 5862 1980 64.8 MiB 0.07 0.00 3.75886 -121.815 -3.75886 3.75886 0.88 0.000236727 0.000191639 0.0173044 0.0140804 -1 -1 -1 -1 38 2698 33 6.95648e+06 231611 678818. 2348.85 5.18 0.10694 0.090534 26626 170182 -1 1828 23 1676 2491 201615 44808 3.27527 3.27527 -123.878 -3.27527 0 0 902133. 3121.57 0.35 0.06 0.16 -1 -1 0.35 0.0176021 0.0154624 76 61 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 12.44 vpr 65.01 MiB -1 -1 0.22 21716 1 0.04 -1 -1 33788 -1 -1 16 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66568 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 26.1 MiB 2.83 959 13092 5556 7054 482 65.0 MiB 0.09 0.00 5.39406 -167.083 -5.39406 5.39406 0.97 0.00021757 0.000170626 0.0198332 0.016021 -1 -1 -1 -1 48 3474 43 6.95648e+06 231611 865456. 2994.66 5.58 0.116905 0.0987072 28354 207349 -1 2550 22 2362 3403 359700 76627 5.202 5.202 -178.576 -5.202 0 0 1.05005e+06 3633.38 0.41 0.09 0.20 -1 -1 0.41 0.0168841 0.0149412 97 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 12.59 vpr 64.62 MiB -1 -1 0.21 21624 1 0.04 -1 -1 33968 -1 -1 16 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66168 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 25.9 MiB 2.93 981 12754 4946 6110 1698 64.6 MiB 0.14 0.00 4.59684 -149.382 -4.59684 4.59684 1.00 0.000356586 0.000281736 0.0313539 0.0253711 -1 -1 -1 -1 36 3190 46 6.95648e+06 231611 648988. 2245.63 5.81 0.151382 0.129165 26050 158493 -1 2735 23 1939 2833 326579 63459 4.72741 4.72741 -168.365 -4.72741 0 0 828058. 2865.25 0.36 0.10 0.16 -1 -1 0.36 0.0234656 0.0209511 88 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 23.75 vpr 64.63 MiB -1 -1 0.21 21408 1 0.04 -1 -1 33676 -1 -1 22 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66184 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 26.0 MiB 1.49 767 14407 6066 7718 623 64.6 MiB 0.10 0.00 4.14668 -131.95 -4.14668 4.14668 0.98 0.000347424 0.000275175 0.0212892 0.0172631 -1 -1 -1 -1 46 2674 35 6.95648e+06 318465 828058. 2865.25 18.30 0.23343 0.197313 28066 200906 -1 1918 23 1425 2099 229543 56163 3.76692 3.76692 -129.177 -3.76692 0 0 1.01997e+06 3529.29 0.52 0.07 0.18 -1 -1 0.52 0.0170882 0.0150655 78 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 17.72 vpr 64.25 MiB -1 -1 0.20 21496 1 0.05 -1 -1 33808 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65792 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 25.8 MiB 1.53 753 10868 4524 5937 407 64.2 MiB 0.07 0.00 4.07128 -116.522 -4.07128 4.07128 1.02 0.000185993 0.000146825 0.0148305 0.0120237 -1 -1 -1 -1 40 2599 44 6.95648e+06 202660 706193. 2443.58 12.29 0.203541 0.175736 26914 176310 -1 2082 23 1527 2074 192603 43112 3.88006 3.88006 -122.361 -3.88006 0 0 926341. 3205.33 0.37 0.06 0.20 -1 -1 0.37 0.0152094 0.0134174 71 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 8.78 vpr 65.18 MiB -1 -1 0.21 21684 1 0.05 -1 -1 33880 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66744 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 26.3 MiB 1.82 869 9725 2505 5543 1677 65.2 MiB 0.11 0.00 4.71507 -153.199 -4.71507 4.71507 0.94 0.000405664 0.000322721 0.0251905 0.0206145 -1 -1 -1 -1 58 2296 31 6.95648e+06 318465 997811. 3452.63 2.96 0.122208 0.102196 30370 251734 -1 1872 22 1850 2705 219163 49456 4.41931 4.41931 -149.17 -4.41931 0 0 1.25153e+06 4330.55 0.49 0.07 0.26 -1 -1 0.49 0.0214367 0.0188876 93 87 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 7.33 vpr 64.16 MiB -1 -1 0.21 21156 1 0.07 -1 -1 33724 -1 -1 15 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65696 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 25.6 MiB 1.01 547 8876 3348 4442 1086 64.2 MiB 0.05 0.00 3.29541 -98.5818 -3.29541 3.29541 1.03 0.000166523 0.000130714 0.0113143 0.00925354 -1 -1 -1 -1 34 2050 41 6.95648e+06 217135 618332. 2139.56 2.58 0.0853216 0.0716146 25762 151098 -1 1417 22 1099 1557 134706 29985 3.00097 3.00097 -107.528 -3.00097 0 0 787024. 2723.27 0.34 0.05 0.14 -1 -1 0.34 0.0129351 0.0114088 56 28 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 8.75 vpr 64.57 MiB -1 -1 0.20 21468 1 0.05 -1 -1 33540 -1 -1 15 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66120 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 25.6 MiB 1.82 909 14520 6637 7462 421 64.6 MiB 0.09 0.00 4.79642 -150.982 -4.79642 4.79642 0.94 0.000208301 0.000165398 0.0221688 0.0182114 -1 -1 -1 -1 48 2603 25 6.95648e+06 217135 865456. 2994.66 3.13 0.109627 0.0937694 28354 207349 -1 2096 23 1679 2408 259494 58538 4.24206 4.24206 -145.401 -4.24206 0 0 1.05005e+06 3633.38 0.42 0.08 0.20 -1 -1 0.42 0.0185476 0.0164431 84 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 8.30 vpr 64.55 MiB -1 -1 0.20 21404 1 0.03 -1 -1 33904 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66100 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 25.7 MiB 1.26 767 9181 3812 5049 320 64.6 MiB 0.06 0.00 3.22585 -111.884 -3.22585 3.22585 0.97 0.000218212 0.000172255 0.0140114 0.0113955 -1 -1 -1 -1 48 2304 49 6.95648e+06 246087 865456. 2994.66 3.20 0.115442 0.0982361 28354 207349 -1 1811 23 1518 2477 196205 44945 3.39087 3.39087 -116.832 -3.39087 0 0 1.05005e+06 3633.38 0.44 0.06 0.24 -1 -1 0.44 0.0160978 0.0140717 73 53 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 7.92 vpr 64.22 MiB -1 -1 0.20 21316 1 0.04 -1 -1 33656 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65760 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 25.7 MiB 1.39 689 10744 4411 5919 414 64.2 MiB 0.06 0.00 4.49648 -123.127 -4.49648 4.49648 0.95 0.000187793 0.000147999 0.0142554 0.011582 -1 -1 -1 -1 44 2677 33 6.95648e+06 231611 787024. 2723.27 2.72 0.0836334 0.0702513 27778 195446 -1 1768 22 1306 2216 176830 39983 4.33596 4.33596 -132.934 -4.33596 0 0 997811. 3452.63 0.43 0.07 0.26 -1 -1 0.43 0.0195565 0.0174362 68 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 9.37 vpr 64.48 MiB -1 -1 0.19 21448 1 0.03 -1 -1 33848 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66032 32 32 353 287 1 185 79 17 17 289 -1 unnamed_device 25.5 MiB 2.78 764 10219 4191 5614 414 64.5 MiB 0.10 0.00 4.42645 -137.171 -4.42645 4.42645 0.95 0.000342824 0.000268944 0.0213624 0.0174021 -1 -1 -1 -1 46 2232 27 6.95648e+06 217135 828058. 2865.25 2.74 0.100231 0.0842754 28066 200906 -1 1690 21 1356 1843 119286 28759 3.38676 3.38676 -124.263 -3.38676 0 0 1.01997e+06 3529.29 0.41 0.05 0.25 -1 -1 0.41 0.0171928 0.0152631 78 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 11.03 vpr 64.58 MiB -1 -1 0.19 21480 1 0.05 -1 -1 33824 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66132 32 32 361 291 1 178 81 17 17 289 -1 unnamed_device 25.8 MiB 2.21 705 10581 4329 5826 426 64.6 MiB 0.07 0.00 3.235 -113.751 -3.235 3.235 1.07 0.000216793 0.000171308 0.0160907 0.0131381 -1 -1 -1 -1 46 2538 36 6.95648e+06 246087 828058. 2865.25 4.67 0.124548 0.10578 28066 200906 -1 1762 22 1596 2486 209871 53513 3.04467 3.04467 -116.161 -3.04467 0 0 1.01997e+06 3529.29 0.39 0.07 0.19 -1 -1 0.39 0.0178396 0.0158144 75 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 17.69 vpr 64.84 MiB -1 -1 0.25 21476 1 0.03 -1 -1 33904 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66392 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 26.1 MiB 1.11 869 14562 4589 7172 2801 64.8 MiB 0.09 0.00 4.34419 -139.535 -4.34419 4.34419 0.92 0.00022577 0.000179326 0.0204811 0.0167086 -1 -1 -1 -1 38 3019 38 6.95648e+06 376368 678818. 2348.85 12.95 0.181997 0.153343 26626 170182 -1 2117 19 1421 2043 151008 32733 3.99412 3.99412 -141.047 -3.99412 0 0 902133. 3121.57 0.35 0.05 0.17 -1 -1 0.35 0.016007 0.0142548 83 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 8.21 vpr 64.44 MiB -1 -1 0.20 21648 1 0.04 -1 -1 33932 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65988 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 25.9 MiB 1.33 657 12749 3718 6154 2877 64.4 MiB 0.07 0.00 4.33949 -116.542 -4.33949 4.33949 1.10 0.000185594 0.000146415 0.01518 0.012292 -1 -1 -1 -1 46 2278 27 6.95648e+06 318465 828058. 2865.25 3.02 0.0899726 0.0757891 28066 200906 -1 1635 34 1343 2207 278677 118734 3.86876 3.86876 -120.58 -3.86876 0 0 1.01997e+06 3529.29 0.41 0.11 0.19 -1 -1 0.41 0.0211993 0.0185002 69 24 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 9.75 vpr 64.49 MiB -1 -1 0.19 21700 1 0.04 -1 -1 34120 -1 -1 13 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66036 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 25.7 MiB 3.29 759 11487 3081 6173 2233 64.5 MiB 0.06 0.00 4.15778 -124.964 -4.15778 4.15778 0.94 0.000197186 0.000155491 0.0172985 0.01402 -1 -1 -1 -1 46 2227 42 6.95648e+06 188184 828058. 2865.25 2.79 0.0969509 0.0813836 28066 200906 -1 1421 20 1332 1783 116832 30386 4.29322 4.29322 -128.812 -4.29322 0 0 1.01997e+06 3529.29 0.41 0.05 0.20 -1 -1 0.41 0.0168611 0.0151506 80 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 8.62 vpr 64.75 MiB -1 -1 0.22 21752 1 0.04 -1 -1 33876 -1 -1 15 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66304 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 26.0 MiB 1.87 818 11200 4390 5140 1670 64.8 MiB 0.07 0.00 4.55157 -142.077 -4.55157 4.55157 0.90 0.000229712 0.000181226 0.0188117 0.015288 -1 -1 -1 -1 50 2910 30 6.95648e+06 217135 902133. 3121.57 3.06 0.0985879 0.0825917 28642 213929 -1 2279 22 1850 2937 242481 54030 4.72121 4.72121 -154.712 -4.72121 0 0 1.08113e+06 3740.92 0.42 0.07 0.20 -1 -1 0.42 0.0171864 0.0151822 85 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 24.29 vpr 64.56 MiB -1 -1 0.22 21824 1 0.05 -1 -1 34300 -1 -1 13 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66108 32 32 387 315 1 183 77 17 17 289 -1 unnamed_device 25.9 MiB 1.70 875 12791 5461 6994 336 64.6 MiB 0.08 0.00 4.05245 -131.841 -4.05245 4.05245 0.92 0.000217618 0.000171367 0.0210095 0.0169789 -1 -1 -1 -1 40 2776 26 6.95648e+06 188184 706193. 2443.58 18.76 0.221147 0.187227 26914 176310 -1 2529 21 1721 2851 323085 71230 4.21512 4.21512 -142.266 -4.21512 0 0 926341. 3205.33 0.36 0.09 0.17 -1 -1 0.36 0.0194288 0.0173179 76 77 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 12.67 vpr 63.85 MiB -1 -1 0.18 21260 1 0.04 -1 -1 33728 -1 -1 18 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65384 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 25.4 MiB 0.37 503 11474 3656 5616 2202 63.9 MiB 0.06 0.00 3.14908 -92.8603 -3.14908 3.14908 0.92 0.000187098 0.00014896 0.0137651 0.0109912 -1 -1 -1 -1 48 1505 24 6.95648e+06 260562 865456. 2994.66 8.50 0.128527 0.108036 28354 207349 -1 1289 20 938 1404 119504 29563 2.86757 2.86757 -100.192 -2.86757 0 0 1.05005e+06 3633.38 0.42 0.04 0.20 -1 -1 0.42 0.0113165 0.00999104 57 23 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 8.10 vpr 64.65 MiB -1 -1 0.20 21408 1 0.04 -1 -1 34080 -1 -1 12 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66204 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 25.8 MiB 1.92 711 11916 4904 6407 605 64.7 MiB 0.07 0.00 3.71155 -132.668 -3.71155 3.71155 0.97 0.000201596 0.000157466 0.0181646 0.0145509 -1 -1 -1 -1 44 2425 26 6.95648e+06 173708 787024. 2723.27 2.48 0.0814906 0.0674591 27778 195446 -1 1674 18 1420 1991 153166 33659 3.57462 3.57462 -129.856 -3.57462 0 0 997811. 3452.63 0.40 0.05 0.18 -1 -1 0.40 0.0142371 0.0126713 76 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 9.14 vpr 65.04 MiB -1 -1 0.20 21792 1 0.04 -1 -1 33992 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66596 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 26.0 MiB 1.83 1043 13668 5813 7551 304 65.0 MiB 0.10 0.00 4.86362 -154.705 -4.86362 4.86362 1.02 0.000237383 0.000187487 0.0219135 0.0177528 -1 -1 -1 -1 46 3365 22 6.95648e+06 231611 828058. 2865.25 3.47 0.104798 0.0880326 28066 200906 -1 2399 21 2087 3130 238764 50403 4.78086 4.78086 -155.649 -4.78086 0 0 1.01997e+06 3529.29 0.40 0.08 0.19 -1 -1 0.40 0.0201144 0.0180034 95 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 7.26 vpr 64.63 MiB -1 -1 0.21 21648 1 0.04 -1 -1 33920 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66184 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 25.8 MiB 1.06 1030 10056 3475 5590 991 64.6 MiB 0.06 0.00 4.33951 -148.581 -4.33951 4.33951 1.02 0.000200826 0.000158735 0.0141769 0.0115758 -1 -1 -1 -1 38 2405 21 6.95648e+06 246087 678818. 2348.85 2.28 0.0927429 0.0781714 26626 170182 -1 2053 21 1440 1910 152876 31166 3.53206 3.53206 -140.961 -3.53206 0 0 902133. 3121.57 0.36 0.05 0.17 -1 -1 0.36 0.0154685 0.0136549 74 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 8.75 vpr 64.25 MiB -1 -1 0.20 21476 1 0.04 -1 -1 33996 -1 -1 20 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65796 30 32 278 235 1 143 82 17 17 289 -1 unnamed_device 25.6 MiB 0.69 522 12008 3926 6070 2012 64.3 MiB 0.08 0.00 2.944 -97.1669 -2.944 2.944 0.95 0.000181024 0.000136069 0.017998 0.0144001 -1 -1 -1 -1 38 2191 45 6.95648e+06 289514 678818. 2348.85 4.30 0.110516 0.0943324 26626 170182 -1 1384 24 1137 1760 144452 32557 3.32657 3.32657 -105.304 -3.32657 0 0 902133. 3121.57 0.33 0.05 0.16 -1 -1 0.33 0.0149642 0.0131142 62 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 10.26 vpr 64.70 MiB -1 -1 0.21 21776 1 0.05 -1 -1 33860 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66252 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 26.0 MiB 2.21 1133 14782 6411 8010 361 64.7 MiB 0.10 0.00 5.84939 -174.319 -5.84939 5.84939 0.98 0.000253962 0.000200376 0.0251037 0.0202226 -1 -1 -1 -1 46 3210 43 6.95648e+06 217135 828058. 2865.25 4.16 0.13517 0.113698 28066 200906 -1 2620 22 2234 3260 380021 79679 4.9092 4.9092 -168.046 -4.9092 0 0 1.01997e+06 3529.29 0.39 0.10 0.19 -1 -1 0.39 0.0204464 0.0181409 95 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 8.47 vpr 64.57 MiB -1 -1 0.21 21484 1 0.04 -1 -1 34144 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66120 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 25.7 MiB 1.54 677 13335 4957 6249 2129 64.6 MiB 0.07 0.00 4.62011 -128.464 -4.62011 4.62011 0.98 0.000205524 0.000161618 0.017055 0.0137032 -1 -1 -1 -1 46 2127 39 6.95648e+06 332941 828058. 2865.25 2.93 0.099371 0.0839128 28066 200906 -1 1601 21 1287 1925 131804 31581 3.66536 3.66536 -124.644 -3.66536 0 0 1.01997e+06 3529.29 0.44 0.05 0.20 -1 -1 0.44 0.0144729 0.0127689 74 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 6.72 vpr 64.14 MiB -1 -1 0.22 21120 1 0.04 -1 -1 33956 -1 -1 13 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65684 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 25.6 MiB 0.40 533 10509 4364 5792 353 64.1 MiB 0.05 0.00 2.922 -92.1888 -2.922 2.922 0.96 0.000154993 0.000121472 0.0125655 0.0102766 -1 -1 -1 -1 44 1860 43 6.95648e+06 188184 787024. 2723.27 2.53 0.0771276 0.0651503 27778 195446 -1 1322 21 1032 1559 125074 32023 3.01497 3.01497 -97.1456 -3.01497 0 0 997811. 3452.63 0.40 0.05 0.19 -1 -1 0.40 0.0116559 0.0103119 51 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 7.86 vpr 64.68 MiB -1 -1 0.18 21436 1 0.06 -1 -1 33892 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66236 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 25.7 MiB 0.81 923 15298 6192 8434 672 64.7 MiB 0.10 0.00 4.94787 -132.081 -4.94787 4.94787 0.94 0.000250349 0.000200833 0.022135 0.018149 -1 -1 -1 -1 42 2728 49 6.95648e+06 347416 744469. 2576.02 3.30 0.157132 0.134973 27202 183097 -1 2153 22 1630 2908 277830 54875 4.62111 4.62111 -136.41 -4.62111 0 0 949917. 3286.91 0.37 0.08 0.17 -1 -1 0.37 0.0193436 0.0171273 80 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 7.76 vpr 63.95 MiB -1 -1 0.18 21148 1 0.04 -1 -1 33948 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65488 32 32 247 207 1 143 78 17 17 289 -1 unnamed_device 25.5 MiB 1.37 478 10702 3424 4721 2557 64.0 MiB 0.05 0.00 2.9972 -98.3507 -2.9972 2.9972 1.00 0.000165373 0.00013019 0.0127656 0.0103824 -1 -1 -1 -1 40 1891 46 6.95648e+06 202660 706193. 2443.58 2.69 0.0821289 0.0692836 26914 176310 -1 1393 20 1216 1705 175293 44848 3.12312 3.12312 -112.128 -3.12312 0 0 926341. 3205.33 0.38 0.05 0.16 -1 -1 0.38 0.0114017 0.0100529 57 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 7.84 vpr 64.13 MiB -1 -1 0.20 21560 1 0.03 -1 -1 33768 -1 -1 17 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65668 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 25.5 MiB 1.08 563 7684 3076 4271 337 64.1 MiB 0.05 0.00 3.70539 -107.459 -3.70539 3.70539 0.91 0.000177718 0.00013904 0.0102338 0.00840067 -1 -1 -1 -1 38 2065 26 6.95648e+06 246087 678818. 2348.85 3.30 0.0869072 0.0747709 26626 170182 -1 1388 19 962 1443 98972 22533 2.95562 2.95562 -101.553 -2.95562 0 0 902133. 3121.57 0.36 0.05 0.17 -1 -1 0.36 0.0142323 0.0127051 60 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 24.87 vpr 64.96 MiB -1 -1 0.21 21508 1 0.04 -1 -1 33908 -1 -1 16 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66520 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 26.2 MiB 1.89 772 11161 4679 5848 634 65.0 MiB 0.12 0.00 3.81182 -119.076 -3.81182 3.81182 1.02 0.000349239 0.000276172 0.028804 0.023447 -1 -1 -1 -1 46 2910 43 6.95648e+06 231611 828058. 2865.25 18.84 0.231565 0.19419 28066 200906 -1 1956 24 1940 2895 213699 47048 3.24217 3.24217 -117.065 -3.24217 0 0 1.01997e+06 3529.29 0.41 0.08 0.19 -1 -1 0.41 0.0214787 0.0188816 80 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 8.53 vpr 64.62 MiB -1 -1 0.20 21632 1 0.05 -1 -1 33480 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66172 32 32 358 289 1 174 80 17 17 289 -1 unnamed_device 25.7 MiB 1.53 730 14528 6360 7668 500 64.6 MiB 0.11 0.00 4.50448 -132.805 -4.50448 4.50448 1.05 0.000341911 0.000262921 0.0265949 0.0214941 -1 -1 -1 -1 40 2494 23 6.95648e+06 231611 706193. 2443.58 2.67 0.117832 0.0989724 26914 176310 -1 2053 23 1679 2442 220311 49164 4.37836 4.37836 -149.477 -4.37836 0 0 926341. 3205.33 0.54 0.08 0.21 -1 -1 0.54 0.020537 0.0183004 72 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 8.14 vpr 64.72 MiB -1 -1 0.19 21600 1 0.04 -1 -1 33872 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66272 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 26.1 MiB 2.23 893 12196 5165 6793 238 64.7 MiB 0.08 0.00 4.54489 -142.964 -4.54489 4.54489 0.90 0.000213724 0.000168819 0.01848 0.0150183 -1 -1 -1 -1 44 2682 22 6.95648e+06 202660 787024. 2723.27 2.30 0.0887151 0.0743596 27778 195446 -1 2055 24 1428 2293 201073 39813 4.04006 4.04006 -140.568 -4.04006 0 0 997811. 3452.63 0.39 0.06 0.19 -1 -1 0.39 0.017016 0.0149477 73 51 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 11.04 vpr 64.03 MiB -1 -1 0.17 21464 1 0.04 -1 -1 33732 -1 -1 10 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65568 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 25.6 MiB 3.56 776 12009 5242 6488 279 64.0 MiB 0.06 0.00 4.04528 -129.976 -4.04528 4.04528 0.99 0.00017464 0.000137765 0.0156549 0.012666 -1 -1 -1 -1 46 1885 49 6.95648e+06 144757 828058. 2865.25 3.67 0.0873908 0.0731553 28066 200906 -1 1641 19 1151 1512 250515 72629 3.36462 3.36462 -120.941 -3.36462 0 0 1.01997e+06 3529.29 0.41 0.09 0.19 -1 -1 0.41 0.0160951 0.014422 61 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 8.39 vpr 64.62 MiB -1 -1 0.21 21596 1 0.04 -1 -1 33976 -1 -1 12 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66176 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 25.8 MiB 2.52 663 10661 4446 5843 372 64.6 MiB 0.06 0.00 3.79972 -122.501 -3.79972 3.79972 1.06 0.000190349 0.000148988 0.015113 0.0122148 -1 -1 -1 -1 42 2372 44 6.95648e+06 173708 744469. 2576.02 2.00 0.0872737 0.0720975 27202 183097 -1 1654 24 1345 1967 153429 34253 3.68766 3.68766 -126.73 -3.68766 0 0 949917. 3286.91 0.44 0.06 0.17 -1 -1 0.44 0.0176669 0.0155702 68 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 9.40 vpr 64.38 MiB -1 -1 0.20 21556 1 0.04 -1 -1 33788 -1 -1 22 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65928 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 25.8 MiB 0.97 674 10881 3783 5148 1950 64.4 MiB 0.07 0.00 3.0162 -94.5584 -3.0162 3.0162 0.90 0.000198634 0.000155316 0.0142791 0.0115827 -1 -1 -1 -1 36 2708 33 6.95648e+06 318465 648988. 2245.63 4.93 0.0939571 0.0794879 26050 158493 -1 1913 21 1228 1904 165436 37389 3.36877 3.36877 -109.961 -3.36877 0 0 828058. 2865.25 0.32 0.05 0.15 -1 -1 0.32 0.0150023 0.0132662 71 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 6.77 vpr 64.26 MiB -1 -1 0.21 21492 1 0.04 -1 -1 33856 -1 -1 28 28 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65800 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 25.5 MiB 0.77 778 10813 2608 7403 802 64.3 MiB 0.07 0.00 3.60279 -102.16 -3.60279 3.60279 0.90 0.00018848 0.000148066 0.0119344 0.00967356 -1 -1 -1 -1 38 2172 19 6.95648e+06 405319 678818. 2348.85 2.40 0.0645869 0.054052 26626 170182 -1 1840 21 1172 1938 158200 32086 3.80596 3.80596 -114.363 -3.80596 0 0 902133. 3121.57 0.33 0.05 0.15 -1 -1 0.33 0.0124895 0.0109833 72 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 7.59 vpr 64.20 MiB -1 -1 0.22 21556 1 0.04 -1 -1 34040 -1 -1 12 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65744 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 25.7 MiB 0.95 563 10459 4351 5596 512 64.2 MiB 0.06 0.00 3.44073 -108.445 -3.44073 3.44073 0.98 0.000205407 0.000164288 0.0154359 0.0124974 -1 -1 -1 -1 62 1390 22 6.95648e+06 173708 1.05005e+06 3633.38 2.55 0.0737174 0.0611903 30946 263737 -1 1138 18 989 1332 92509 22287 3.01972 3.01972 -104.668 -3.01972 0 0 1.30136e+06 4502.97 0.63 0.04 0.27 -1 -1 0.63 0.0134356 0.0119668 61 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 10.19 vpr 64.68 MiB -1 -1 0.22 21480 1 0.04 -1 -1 33856 -1 -1 11 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66228 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 25.8 MiB 2.09 640 12873 4842 6240 1791 64.7 MiB 0.07 0.00 3.39649 -120.54 -3.39649 3.39649 1.00 0.000198488 0.000155961 0.0186487 0.0150507 -1 -1 -1 -1 48 2228 47 6.95648e+06 159232 865456. 2994.66 4.10 0.111251 0.0935586 28354 207349 -1 1834 27 1641 2354 245542 62313 3.31916 3.31916 -126.417 -3.31916 0 0 1.05005e+06 3633.38 0.44 0.08 0.21 -1 -1 0.44 0.0177676 0.0155264 72 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 8.75 vpr 64.28 MiB -1 -1 0.20 21436 1 0.04 -1 -1 34044 -1 -1 24 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65824 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 25.8 MiB 0.62 710 11799 3748 5667 2384 64.3 MiB 0.06 0.00 4.65108 -122.985 -4.65108 4.65108 0.94 0.000189643 0.000148953 0.0139217 0.0112599 -1 -1 -1 -1 48 2306 45 6.95648e+06 347416 865456. 2994.66 4.23 0.0967135 0.082422 28354 207349 -1 1724 21 1126 1892 189388 42832 3.77166 3.77166 -124.085 -3.77166 0 0 1.05005e+06 3633.38 0.45 0.06 0.20 -1 -1 0.45 0.0155889 0.0137867 74 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 9.45 vpr 64.45 MiB -1 -1 0.19 21412 1 0.04 -1 -1 33720 -1 -1 13 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65996 32 32 350 275 1 195 77 17 17 289 -1 unnamed_device 25.7 MiB 2.27 839 11813 4506 5923 1384 64.4 MiB 0.08 0.00 4.59692 -149.244 -4.59692 4.59692 1.00 0.000215839 0.000169833 0.018396 0.014895 -1 -1 -1 -1 46 2984 27 6.95648e+06 188184 828058. 2865.25 3.26 0.130669 0.112792 28066 200906 -1 2127 22 1674 2480 206654 44561 4.19442 4.19442 -148.109 -4.19442 0 0 1.01997e+06 3529.29 0.41 0.06 0.20 -1 -1 0.41 0.0164165 0.0145249 81 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 8.95 vpr 64.64 MiB -1 -1 0.21 21520 1 0.05 -1 -1 34072 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66188 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 25.9 MiB 1.72 818 16468 6086 8049 2333 64.6 MiB 0.11 0.00 4.31183 -134.888 -4.31183 4.31183 0.98 0.000225979 0.000177662 0.0254926 0.0192952 -1 -1 -1 -1 46 2433 50 6.95648e+06 347416 828058. 2865.25 3.12 0.132011 0.110075 28066 200906 -1 2036 24 1655 2611 275869 56257 4.20256 4.20256 -147.124 -4.20256 0 0 1.01997e+06 3529.29 0.42 0.08 0.29 -1 -1 0.42 0.0199716 0.017589 80 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 8.95 vpr 64.68 MiB -1 -1 0.24 21440 1 0.04 -1 -1 33868 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66232 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 26.0 MiB 1.29 810 13911 4952 7625 1334 64.7 MiB 0.09 0.00 4.06852 -133.682 -4.06852 4.06852 1.07 0.000229842 0.00018162 0.0193937 0.0157027 -1 -1 -1 -1 44 2810 38 6.95648e+06 332941 787024. 2723.27 3.43 0.134048 0.113762 27778 195446 -1 2088 22 1704 2782 216494 48753 4.03326 4.03326 -142.694 -4.03326 0 0 997811. 3452.63 0.45 0.07 0.20 -1 -1 0.45 0.0182081 0.015831 80 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 7.31 vpr 64.03 MiB -1 -1 0.29 21400 1 0.04 -1 -1 33908 -1 -1 12 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65564 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 25.5 MiB 1.03 540 8134 2607 3837 1690 64.0 MiB 0.05 0.00 3.76076 -106.203 -3.76076 3.76076 0.96 0.000174391 0.000137202 0.0118836 0.00976983 -1 -1 -1 -1 40 1743 21 6.95648e+06 173708 706193. 2443.58 2.48 0.0788246 0.0668242 26914 176310 -1 1450 19 1055 1623 139417 31075 3.09482 3.09482 -107.953 -3.09482 0 0 926341. 3205.33 0.41 0.05 0.18 -1 -1 0.41 0.014197 0.0127135 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 13.44 vpr 64.67 MiB -1 -1 0.21 21448 1 0.04 -1 -1 34264 -1 -1 14 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66220 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 26.0 MiB 1.08 678 9356 3868 5007 481 64.7 MiB 0.07 0.00 4.36203 -133.981 -4.36203 4.36203 1.22 0.000228157 0.000180646 0.0198053 0.0163214 -1 -1 -1 -1 48 2074 34 6.95648e+06 202660 865456. 2994.66 8.16 0.175413 0.14537 28354 207349 -1 1674 24 1941 2609 223637 50320 4.08962 4.08962 -138.403 -4.08962 0 0 1.05005e+06 3633.38 0.42 0.07 0.20 -1 -1 0.42 0.018834 0.0165566 76 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 9.31 vpr 64.70 MiB -1 -1 0.30 21644 1 0.04 -1 -1 33996 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66248 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 25.8 MiB 1.86 842 12030 5028 6552 450 64.7 MiB 0.08 0.00 4.9029 -146.03 -4.9029 4.9029 0.97 0.000207838 0.000163843 0.0186864 0.0152457 -1 -1 -1 -1 48 2359 34 6.95648e+06 202660 865456. 2994.66 3.42 0.150925 0.131749 28354 207349 -1 1906 21 1574 2568 243804 52280 4.23991 4.23991 -138.98 -4.23991 0 0 1.05005e+06 3633.38 0.41 0.07 0.21 -1 -1 0.41 0.0166902 0.0147833 80 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 8.41 vpr 64.54 MiB -1 -1 0.32 21468 1 0.05 -1 -1 34116 -1 -1 14 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66088 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 25.6 MiB 1.75 802 12302 5209 6575 518 64.5 MiB 0.07 0.00 5.49296 -152.69 -5.49296 5.49296 0.92 0.000203888 0.000160366 0.0197956 0.0163727 -1 -1 -1 -1 48 2186 22 6.95648e+06 202660 865456. 2994.66 2.73 0.101776 0.0862336 28354 207349 -1 1898 22 1362 2105 193050 41590 4.37756 4.37756 -146.531 -4.37756 0 0 1.05005e+06 3633.38 0.40 0.06 0.20 -1 -1 0.40 0.0157611 0.0139267 79 47 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 17.92 vpr 64.68 MiB -1 -1 0.21 21520 1 0.03 -1 -1 34020 -1 -1 21 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66236 30 32 377 310 1 171 83 17 17 289 -1 unnamed_device 25.9 MiB 2.93 747 11063 3637 5035 2391 64.7 MiB 0.07 0.00 4.87546 -148.536 -4.87546 4.87546 0.95 0.000217704 0.000171755 0.0159116 0.0129259 -1 -1 -1 -1 38 2889 35 6.95648e+06 303989 678818. 2348.85 11.27 0.187721 0.15776 26626 170182 -1 1983 26 1502 2322 200639 44350 4.71541 4.71541 -163.089 -4.71541 0 0 902133. 3121.57 0.37 0.07 0.16 -1 -1 0.37 0.0193555 0.0168704 74 83 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 22.00 vpr 64.54 MiB -1 -1 0.21 21660 1 0.05 -1 -1 34076 -1 -1 13 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66092 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 25.9 MiB 1.31 690 9368 3411 4136 1821 64.5 MiB 0.06 0.00 4.44043 -136.028 -4.44043 4.44043 1.08 0.000219172 0.000173002 0.0169447 0.0139153 -1 -1 -1 -1 50 2395 29 6.95648e+06 188184 902133. 3121.57 16.50 0.200279 0.170413 28642 213929 -1 1884 22 1590 2644 251389 61682 3.94732 3.94732 -143.588 -3.94732 0 0 1.08113e+06 3740.92 0.41 0.07 0.26 -1 -1 0.41 0.0182187 0.0161371 72 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 18.24 vpr 64.65 MiB -1 -1 0.21 21556 1 0.04 -1 -1 33648 -1 -1 16 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66200 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 26.0 MiB 1.53 661 10346 4002 4565 1779 64.6 MiB 0.06 0.00 4.05037 -124.329 -4.05037 4.05037 0.95 0.00021356 0.000167387 0.0177331 0.0144083 -1 -1 -1 -1 44 2392 38 6.95648e+06 231611 787024. 2723.27 12.90 0.208888 0.178205 27778 195446 -1 1697 17 1237 1793 125392 31049 3.87222 3.87222 -131.206 -3.87222 0 0 997811. 3452.63 0.39 0.05 0.19 -1 -1 0.39 0.0145811 0.0129824 73 85 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 8.01 vpr 63.99 MiB -1 -1 0.18 21244 1 0.04 -1 -1 33996 -1 -1 10 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65528 32 32 243 205 1 141 74 17 17 289 -1 unnamed_device 25.5 MiB 1.54 586 9374 3879 5247 248 64.0 MiB 0.05 0.00 3.56099 -107.065 -3.56099 3.56099 0.91 0.000159584 0.000125441 0.0117238 0.00952551 -1 -1 -1 -1 38 1998 44 6.95648e+06 144757 678818. 2348.85 2.93 0.0826462 0.069915 26626 170182 -1 1504 25 1108 1632 253138 97143 2.88007 2.88007 -106.685 -2.88007 0 0 902133. 3121.57 0.35 0.08 0.16 -1 -1 0.35 0.0130974 0.0115233 54 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 10.42 vpr 64.66 MiB -1 -1 0.21 21576 1 0.05 -1 -1 33992 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66208 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 26.1 MiB 3.61 802 15255 5017 7734 2504 64.7 MiB 0.09 0.00 4.6485 -130.063 -4.6485 4.6485 1.10 0.000223517 0.000175037 0.0208385 0.0164614 -1 -1 -1 -1 46 2292 23 6.95648e+06 332941 828058. 2865.25 2.75 0.100992 0.0839233 28066 200906 -1 1852 23 1154 1783 158840 34469 4.34076 4.34076 -136.882 -4.34076 0 0 1.01997e+06 3529.29 0.41 0.07 0.19 -1 -1 0.41 0.0193969 0.0171053 76 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 7.64 vpr 64.56 MiB -1 -1 0.21 21572 1 0.04 -1 -1 34020 -1 -1 13 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66108 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 25.8 MiB 0.88 783 8716 3564 4899 253 64.6 MiB 0.06 0.00 4.28453 -142.302 -4.28453 4.28453 0.94 0.000235617 0.000185745 0.0154207 0.0126063 -1 -1 -1 -1 46 2521 34 6.95648e+06 188184 828058. 2865.25 2.90 0.10536 0.0885278 28066 200906 -1 1789 23 1572 2303 149693 35251 3.96002 3.96002 -145.842 -3.96002 0 0 1.01997e+06 3529.29 0.40 0.07 0.20 -1 -1 0.40 0.0192763 0.0169709 78 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 17.11 vpr 64.45 MiB -1 -1 0.19 21572 1 0.04 -1 -1 33672 -1 -1 11 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65996 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 25.6 MiB 2.48 634 12083 4617 6209 1257 64.4 MiB 0.07 0.00 4.05037 -119.139 -4.05037 4.05037 0.96 0.000176467 0.00013924 0.0158701 0.0128694 -1 -1 -1 -1 40 2183 25 6.95648e+06 159232 706193. 2443.58 10.91 0.141175 0.119154 26914 176310 -1 1650 19 1252 1581 138724 32508 3.42592 3.42592 -119.97 -3.42592 0 0 926341. 3205.33 0.38 0.05 0.18 -1 -1 0.38 0.0131789 0.0117197 68 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 7.33 vpr 64.03 MiB -1 -1 0.20 21200 1 0.04 -1 -1 34100 -1 -1 14 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65568 31 32 245 205 1 145 77 17 17 289 -1 unnamed_device 25.4 MiB 1.53 487 10835 3461 5636 1738 64.0 MiB 0.06 0.00 3.36359 -100.982 -3.36359 3.36359 0.97 0.000161752 0.000127354 0.0129428 0.0105286 -1 -1 -1 -1 42 1814 42 6.95648e+06 202660 744469. 2576.02 2.11 0.0743101 0.0622637 27202 183097 -1 1150 22 1212 1698 116371 29217 3.04892 3.04892 -101.08 -3.04892 0 0 949917. 3286.91 0.36 0.04 0.17 -1 -1 0.36 0.0122854 0.0108497 58 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 9.38 vpr 64.61 MiB -1 -1 0.19 21524 1 0.04 -1 -1 34148 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66156 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 25.8 MiB 2.25 752 12754 5308 6926 520 64.6 MiB 0.08 0.00 4.57592 -147.598 -4.57592 4.57592 0.92 0.000209798 0.000165267 0.0186134 0.0150001 -1 -1 -1 -1 48 2718 40 6.95648e+06 217135 865456. 2994.66 3.42 0.113829 0.0961736 28354 207349 -1 2198 22 2028 2655 254879 61421 4.72641 4.72641 -159.267 -4.72641 0 0 1.05005e+06 3633.38 0.43 0.08 0.21 -1 -1 0.43 0.0179741 0.015918 85 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 8.41 vpr 64.85 MiB -1 -1 0.19 21424 1 0.04 -1 -1 33748 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66408 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 26.1 MiB 1.41 797 12030 5060 6593 377 64.9 MiB 0.07 0.00 4.81473 -147.296 -4.81473 4.81473 0.93 0.000212841 0.00016797 0.0180664 0.0145875 -1 -1 -1 -1 46 2524 35 6.95648e+06 202660 828058. 2865.25 3.17 0.106788 0.0895919 28066 200906 -1 1867 21 1482 2163 173801 40068 4.08896 4.08896 -142.959 -4.08896 0 0 1.01997e+06 3529.29 0.45 0.08 0.21 -1 -1 0.45 0.0208587 0.0187663 82 56 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 7.50 vpr 64.52 MiB -1 -1 0.26 21488 1 0.03 -1 -1 33952 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66068 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 25.8 MiB 0.66 857 12156 5040 6495 621 64.5 MiB 0.08 0.00 4.94172 -141.808 -4.94172 4.94172 0.99 0.000222948 0.000177244 0.0204023 0.0167784 -1 -1 -1 -1 50 2424 42 6.95648e+06 246087 902133. 3121.57 2.87 0.111814 0.0948519 28642 213929 -1 2023 24 1791 3022 240716 56098 4.5268 4.5268 -146.532 -4.5268 0 0 1.08113e+06 3740.92 0.42 0.08 0.21 -1 -1 0.42 0.0204226 0.018181 83 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 9.54 vpr 64.39 MiB -1 -1 0.21 21404 1 0.04 -1 -1 33956 -1 -1 21 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65936 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 25.6 MiB 1.08 694 11963 3988 5372 2603 64.4 MiB 0.07 0.00 3.42648 -99.7352 -3.42648 3.42648 0.98 0.000193926 0.000151853 0.0155581 0.0126104 -1 -1 -1 -1 36 2505 35 6.95648e+06 303989 648988. 2245.63 4.69 0.110651 0.09484 26050 158493 -1 1728 20 1405 2173 173282 37294 3.22627 3.22627 -109.804 -3.22627 0 0 828058. 2865.25 0.36 0.06 0.15 -1 -1 0.36 0.0140217 0.0123576 69 52 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 6.39 vpr 64.11 MiB -1 -1 0.29 21204 1 0.04 -1 -1 34196 -1 -1 16 27 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65652 27 32 255 219 1 129 75 17 17 289 -1 unnamed_device 25.6 MiB 0.82 461 8291 2789 4081 1421 64.1 MiB 0.05 0.00 2.92795 -88.1908 -2.92795 2.92795 0.96 0.000183596 0.00013085 0.0111931 0.00911669 -1 -1 -1 -1 34 1607 36 6.95648e+06 231611 618332. 2139.56 1.79 0.0722467 0.0602088 25762 151098 -1 1212 22 1022 1273 97777 24574 2.94272 2.94272 -98.3554 -2.94272 0 0 787024. 2723.27 0.33 0.04 0.13 -1 -1 0.33 0.0126139 0.0111005 55 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 10.82 vpr 64.97 MiB -1 -1 0.26 21788 1 0.04 -1 -1 33816 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66532 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 26.0 MiB 1.73 1102 15044 5934 6987 2123 65.0 MiB 0.12 0.00 3.84665 -133.243 -3.84665 3.84665 1.08 0.00024939 0.000197774 0.02496 0.0202208 -1 -1 -1 -1 44 3912 38 6.95648e+06 231611 787024. 2723.27 4.94 0.145446 0.124315 27778 195446 -1 2650 23 2329 3777 336798 83820 3.95332 3.95332 -144.857 -3.95332 0 0 997811. 3452.63 0.49 0.11 0.18 -1 -1 0.49 0.0250205 0.022288 95 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 25.98 vpr 64.58 MiB -1 -1 0.29 21632 1 0.05 -1 -1 34080 -1 -1 15 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66132 31 32 365 296 1 191 78 17 17 289 -1 unnamed_device 25.7 MiB 5.62 1054 12362 3699 7370 1293 64.6 MiB 0.08 0.00 5.54356 -160.149 -5.54356 5.54356 0.90 0.000215377 0.000169972 0.0183032 0.014733 -1 -1 -1 -1 40 2736 27 6.95648e+06 217135 706193. 2443.58 16.54 0.18029 0.150953 26914 176310 -1 2566 29 2526 3910 606878 171998 4.84351 4.84351 -166.342 -4.84351 0 0 926341. 3205.33 0.38 0.16 0.16 -1 -1 0.38 0.0207447 0.0180243 82 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 11.76 vpr 64.78 MiB -1 -1 0.20 21452 1 0.04 -1 -1 34180 -1 -1 11 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66336 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 26.0 MiB 4.03 712 8923 3677 5027 219 64.8 MiB 0.06 0.00 3.7738 -128.135 -3.7738 3.7738 0.94 0.000208882 0.000164043 0.0139015 0.0112776 -1 -1 -1 -1 38 2693 37 6.95648e+06 159232 678818. 2348.85 3.95 0.120732 0.102833 26626 170182 -1 1927 21 1453 2080 221772 61542 3.74976 3.74976 -140.556 -3.74976 0 0 902133. 3121.57 0.40 0.09 0.18 -1 -1 0.40 0.0235534 0.0212085 70 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 8.06 vpr 64.45 MiB -1 -1 0.19 21552 1 0.04 -1 -1 33720 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65996 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 25.6 MiB 0.48 938 14261 5382 6939 1940 64.4 MiB 0.09 0.00 4.23483 -126.342 -4.23483 4.23483 0.90 0.000213342 0.000169312 0.0190601 0.0155046 -1 -1 -1 -1 38 2645 48 6.95648e+06 318465 678818. 2348.85 3.94 0.100856 0.0845976 26626 170182 -1 2110 20 1311 2028 170396 34366 3.92976 3.92976 -129.96 -3.92976 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0148624 0.013181 74 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 8.19 vpr 64.75 MiB -1 -1 0.24 21420 1 0.04 -1 -1 33948 -1 -1 25 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66308 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 26.0 MiB 1.00 924 11398 3933 5445 2020 64.8 MiB 0.07 0.00 4.47977 -130.348 -4.47977 4.47977 0.93 0.00022609 0.000176137 0.0159547 0.0129959 -1 -1 -1 -1 36 2622 49 6.95648e+06 361892 648988. 2245.63 3.63 0.108735 0.0911218 26050 158493 -1 2091 22 1634 2481 166714 37915 3.79382 3.79382 -133.71 -3.79382 0 0 828058. 2865.25 0.32 0.06 0.14 -1 -1 0.32 0.0166397 0.0145506 83 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 10.24 vpr 64.38 MiB -1 -1 0.25 21624 1 0.04 -1 -1 34012 -1 -1 16 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65920 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 25.6 MiB 1.34 716 8544 3177 4311 1056 64.4 MiB 0.06 0.00 3.31107 -101.686 -3.31107 3.31107 0.94 0.0002207 0.000175362 0.0141397 0.0116774 -1 -1 -1 -1 38 2777 45 6.95648e+06 231611 678818. 2348.85 5.26 0.117583 0.100089 26626 170182 -1 2061 19 1369 2231 197407 43010 3.37172 3.37172 -114.229 -3.37172 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0139315 0.0123321 68 51 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 10.50 vpr 64.75 MiB -1 -1 0.22 21460 1 0.04 -1 -1 33744 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66300 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 26.0 MiB 2.08 916 13856 5155 6510 2191 64.7 MiB 0.09 0.00 4.51937 -148.282 -4.51937 4.51937 1.06 0.000216117 0.000169072 0.0222609 0.0179558 -1 -1 -1 -1 44 3814 50 6.95648e+06 202660 787024. 2723.27 4.56 0.123113 0.104066 27778 195446 -1 2420 21 1984 2868 287175 60934 4.43742 4.43742 -152.778 -4.43742 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0174554 0.0155121 88 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 7.04 vpr 64.74 MiB -1 -1 0.22 21368 1 0.04 -1 -1 33692 -1 -1 18 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66296 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 26.0 MiB 1.13 854 9338 3754 5311 273 64.7 MiB 0.06 0.00 4.47033 -147.36 -4.47033 4.47033 0.90 0.000227867 0.00017969 0.0151352 0.0124257 -1 -1 -1 -1 40 2444 23 6.95648e+06 260562 706193. 2443.58 2.19 0.0878342 0.0734371 26914 176310 -1 2114 23 1571 2109 197933 41957 4.12762 4.12762 -144.507 -4.12762 0 0 926341. 3205.33 0.37 0.06 0.17 -1 -1 0.37 0.0184475 0.0160936 80 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 13.10 vpr 64.34 MiB -1 -1 0.21 21504 1 0.07 -1 -1 33960 -1 -1 12 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65888 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 25.7 MiB 6.12 468 9953 3826 4648 1479 64.3 MiB 0.08 0.00 4.00493 -101.525 -4.00493 4.00493 1.03 0.00027676 0.000217494 0.0214522 0.0173457 -1 -1 -1 -1 36 1656 25 6.95648e+06 173708 648988. 2245.63 2.74 0.0928903 0.0780269 26050 158493 -1 1227 27 1176 1581 127931 31156 3.12203 3.12203 -104.772 -3.12203 0 0 828058. 2865.25 0.36 0.05 0.16 -1 -1 0.36 0.0162871 0.0142752 53 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 7.42 vpr 64.37 MiB -1 -1 0.20 21552 1 0.04 -1 -1 33860 -1 -1 11 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65916 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 25.7 MiB 1.58 608 10187 3178 5307 1702 64.4 MiB 0.06 0.00 3.51519 -119.059 -3.51519 3.51519 0.94 0.000183822 0.000143941 0.0144395 0.0117339 -1 -1 -1 -1 42 2230 44 6.95648e+06 159232 744469. 2576.02 2.18 0.0836908 0.069728 27202 183097 -1 1461 18 1170 1458 120460 28525 3.41506 3.41506 -120.781 -3.41506 0 0 949917. 3286.91 0.38 0.05 0.17 -1 -1 0.38 0.014725 0.0131043 64 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 8.43 vpr 64.60 MiB -1 -1 0.21 21376 1 0.04 -1 -1 33708 -1 -1 23 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66148 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 25.7 MiB 1.19 748 11615 3856 5496 2263 64.6 MiB 0.07 0.00 4.10411 -120.963 -4.10411 4.10411 1.00 0.000205405 0.000162 0.0151753 0.0123303 -1 -1 -1 -1 44 2469 26 6.95648e+06 332941 787024. 2723.27 3.24 0.101671 0.0861442 27778 195446 -1 1799 26 1480 2331 212814 48275 3.97526 3.97526 -129.99 -3.97526 0 0 997811. 3452.63 0.42 0.07 0.19 -1 -1 0.42 0.0188804 0.0165659 77 33 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 8.58 vpr 64.36 MiB -1 -1 0.19 21520 1 0.06 -1 -1 33964 -1 -1 13 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65900 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 25.6 MiB 2.40 593 9994 4212 5312 470 64.4 MiB 0.05 0.00 4.05727 -116.106 -4.05727 4.05727 0.90 0.000161031 0.000126593 0.0125822 0.0102276 -1 -1 -1 -1 40 2251 36 6.95648e+06 188184 706193. 2443.58 2.47 0.0717483 0.0603744 26914 176310 -1 1831 21 1318 1668 158768 36497 3.82202 3.82202 -121.162 -3.82202 0 0 926341. 3205.33 0.37 0.05 0.20 -1 -1 0.37 0.0127989 0.0113212 67 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 7.73 vpr 64.07 MiB -1 -1 0.18 21428 1 0.05 -1 -1 33936 -1 -1 9 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65608 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 25.5 MiB 1.56 609 9497 4084 5186 227 64.1 MiB 0.05 0.00 3.96096 -113.861 -3.96096 3.96096 1.06 0.000174385 0.000136439 0.012926 0.0104147 -1 -1 -1 -1 44 1872 43 6.95648e+06 130281 787024. 2723.27 2.16 0.077353 0.0643671 27778 195446 -1 1412 21 1258 1911 149762 32431 2.93842 2.93842 -110.555 -2.93842 0 0 997811. 3452.63 0.40 0.05 0.20 -1 -1 0.40 0.0130432 0.0114951 56 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 7.63 vpr 64.71 MiB -1 -1 0.24 21584 1 0.03 -1 -1 34040 -1 -1 24 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66264 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 25.9 MiB 1.28 760 14295 5473 6487 2335 64.7 MiB 0.09 0.00 3.48773 -117.233 -3.48773 3.48773 0.99 0.000248787 0.000200985 0.0201411 0.0162263 -1 -1 -1 -1 38 2353 27 6.95648e+06 347416 678818. 2348.85 2.59 0.0987226 0.0821954 26626 170182 -1 1741 20 1636 2188 161214 36056 3.39887 3.39887 -120.309 -3.39887 0 0 902133. 3121.57 0.40 0.07 0.16 -1 -1 0.40 0.0211996 0.0189943 79 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 9.89 vpr 64.54 MiB -1 -1 0.23 21448 1 0.04 -1 -1 33604 -1 -1 12 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66084 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 25.8 MiB 3.02 638 11925 5003 6558 364 64.5 MiB 0.07 0.00 3.74472 -112.927 -3.74472 3.74472 0.98 0.000170929 0.000134722 0.0153562 0.0124054 -1 -1 -1 -1 38 2139 45 6.95648e+06 173708 678818. 2348.85 3.07 0.0895383 0.0753472 26626 170182 -1 1635 23 1259 1790 163948 37471 3.13146 3.13146 -111.948 -3.13146 0 0 902133. 3121.57 0.41 0.07 0.16 -1 -1 0.41 0.017373 0.0155275 64 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 8.47 vpr 64.72 MiB -1 -1 0.18 21516 1 0.04 -1 -1 33892 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66276 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 25.8 MiB 1.61 684 15017 5927 7080 2010 64.7 MiB 0.09 0.00 3.20268 -108.628 -3.20268 3.20268 1.06 0.000209671 0.000163841 0.0198752 0.0160341 -1 -1 -1 -1 50 1963 50 6.95648e+06 318465 902133. 3121.57 2.89 0.1097 0.0921351 28642 213929 -1 1695 22 1320 2119 185443 42813 2.83647 2.83647 -109.921 -2.83647 0 0 1.08113e+06 3740.92 0.40 0.06 0.20 -1 -1 0.40 0.0152878 0.0134257 71 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 9.27 vpr 64.61 MiB -1 -1 0.20 21852 1 0.05 -1 -1 33544 -1 -1 15 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66156 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 25.9 MiB 2.01 793 8876 3629 4933 314 64.6 MiB 0.06 0.00 3.995 -134.834 -3.995 3.995 1.08 0.000227246 0.000178753 0.0148905 0.0121228 -1 -1 -1 -1 38 2580 38 6.95648e+06 217135 678818. 2348.85 3.29 0.103566 0.087125 26626 170182 -1 1938 20 1471 1968 167821 34556 3.58422 3.58422 -139.229 -3.58422 0 0 902133. 3121.57 0.35 0.06 0.16 -1 -1 0.35 0.0164863 0.0145114 73 91 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 7.64 vpr 64.27 MiB -1 -1 0.23 21452 1 0.04 -1 -1 33784 -1 -1 10 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65808 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 25.8 MiB 1.62 529 10304 4263 5737 304 64.3 MiB 0.06 0.00 2.9023 -97.7367 -2.9023 2.9023 0.93 0.000180694 0.000140517 0.0144814 0.0116486 -1 -1 -1 -1 46 1735 22 6.95648e+06 144757 828058. 2865.25 2.26 0.0723943 0.0603554 28066 200906 -1 1310 20 1149 1778 124339 30875 2.91172 2.91172 -102.967 -2.91172 0 0 1.01997e+06 3529.29 0.42 0.05 0.20 -1 -1 0.42 0.0148449 0.0131541 57 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 15.29 vpr 64.31 MiB -1 -1 0.19 21568 1 0.04 -1 -1 34044 -1 -1 11 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65852 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 25.7 MiB 1.83 759 10819 2915 6394 1510 64.3 MiB 0.07 0.00 4.04348 -128.875 -4.04348 4.04348 0.94 0.000182134 0.000144279 0.0147424 0.0119756 -1 -1 -1 -1 40 2213 47 6.95648e+06 159232 706193. 2443.58 9.89 0.156444 0.12996 26914 176310 -1 1990 19 1365 2007 209903 44666 4.07541 4.07541 -134.544 -4.07541 0 0 926341. 3205.33 0.35 0.06 0.16 -1 -1 0.35 0.0130465 0.0115379 70 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 8.09 vpr 64.09 MiB -1 -1 0.32 21480 1 0.04 -1 -1 33520 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65632 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 25.6 MiB 1.66 714 10370 4100 5259 1011 64.1 MiB 0.07 0.00 4.19403 -126.395 -4.19403 4.19403 0.94 0.000205952 0.000163419 0.0164839 0.0135283 -1 -1 -1 -1 50 2180 23 6.95648e+06 202660 902133. 3121.57 2.29 0.0770126 0.0643841 28642 213929 -1 1786 21 1591 2167 173769 41974 4.23792 4.23792 -132.209 -4.23792 0 0 1.08113e+06 3740.92 0.48 0.08 0.21 -1 -1 0.48 0.0203913 0.0183333 79 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 7.76 vpr 64.34 MiB -1 -1 0.21 21632 1 0.04 -1 -1 33648 -1 -1 21 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65880 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 25.7 MiB 1.37 662 11118 4280 5305 1533 64.3 MiB 0.06 0.00 4.24388 -117.238 -4.24388 4.24388 1.07 0.000196989 0.000154038 0.0152605 0.0124041 -1 -1 -1 -1 46 2122 28 6.95648e+06 303989 828058. 2865.25 2.48 0.0907109 0.0762358 28066 200906 -1 1448 23 1164 1690 119756 28843 3.68766 3.68766 -111.969 -3.68766 0 0 1.01997e+06 3529.29 0.40 0.05 0.20 -1 -1 0.40 0.0153402 0.0134659 71 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 8.84 vpr 65.01 MiB -1 -1 0.28 21788 1 0.04 -1 -1 34232 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66572 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 26.1 MiB 1.78 793 12030 5031 6445 554 65.0 MiB 0.08 0.00 4.95915 -156.293 -4.95915 4.95915 0.91 0.000230606 0.000180383 0.0208331 0.01699 -1 -1 -1 -1 54 2485 43 6.95648e+06 202660 949917. 3286.91 2.99 0.109082 0.0910327 29506 232905 -1 1950 36 2625 3709 532287 182783 4.44822 4.44822 -154.247 -4.44822 0 0 1.17392e+06 4061.99 0.48 0.19 0.24 -1 -1 0.48 0.0377435 0.0338278 89 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 8.86 vpr 63.85 MiB -1 -1 0.18 21112 1 0.03 -1 -1 33696 -1 -1 13 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65384 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 25.4 MiB 3.08 535 10476 4313 5711 452 63.9 MiB 0.08 0.00 3.50918 -93.5706 -3.50918 3.50918 1.04 0.000247309 0.000195994 0.0164593 0.0132866 -1 -1 -1 -1 38 1790 27 6.95648e+06 188184 678818. 2348.85 2.02 0.06428 0.0534348 26626 170182 -1 1375 22 1021 1643 115576 25319 3.13712 3.13712 -104.072 -3.13712 0 0 902133. 3121.57 0.34 0.04 0.17 -1 -1 0.34 0.0120643 0.010642 54 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 10.06 vpr 65.04 MiB -1 -1 0.24 21852 1 0.04 -1 -1 33604 -1 -1 25 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66596 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 26.2 MiB 1.29 808 15533 3949 11126 458 65.0 MiB 0.10 0.00 3.75239 -135.532 -3.75239 3.75239 0.99 0.000230026 0.000180776 0.0216377 0.0175151 -1 -1 -1 -1 38 2695 48 6.95648e+06 361892 678818. 2348.85 4.86 0.152512 0.131473 26626 170182 -1 2028 23 1857 2478 205439 43685 3.99306 3.99306 -149.548 -3.99306 0 0 902133. 3121.57 0.34 0.07 0.17 -1 -1 0.34 0.0186598 0.0163407 81 90 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 9.94 vpr 64.55 MiB -1 -1 0.22 21492 1 0.04 -1 -1 33828 -1 -1 10 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66104 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 25.9 MiB 3.49 581 11544 4905 6301 338 64.6 MiB 0.07 0.00 2.99685 -114.691 -2.99685 2.99685 0.91 0.000214543 0.000168035 0.0187141 0.015147 -1 -1 -1 -1 40 2161 45 6.95648e+06 144757 706193. 2443.58 2.61 0.117188 0.0978466 26914 176310 -1 1891 22 1683 2320 245662 55959 3.54322 3.54322 -139.792 -3.54322 0 0 926341. 3205.33 0.37 0.09 0.18 -1 -1 0.37 0.0199894 0.0177921 61 96 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 7.38 vpr 64.44 MiB -1 -1 0.19 21464 1 0.04 -1 -1 33976 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65988 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 25.5 MiB 1.35 727 10670 3941 5494 1235 64.4 MiB 0.07 0.00 4.11943 -125.455 -4.11943 4.11943 0.99 0.000221785 0.000174958 0.0153254 0.0125627 -1 -1 -1 -1 46 2249 26 6.95648e+06 318465 828058. 2865.25 2.23 0.0849756 0.0709577 28066 200906 -1 1805 21 1115 1739 127394 30050 3.50106 3.50106 -121.691 -3.50106 0 0 1.01997e+06 3529.29 0.40 0.05 0.20 -1 -1 0.40 0.0157963 0.0139454 75 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 8.63 vpr 64.86 MiB -1 -1 0.22 21796 1 0.05 -1 -1 33832 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66420 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 26.1 MiB 2.05 1022 12247 3468 7038 1741 64.9 MiB 0.09 0.00 6.03007 -174.097 -6.03007 6.03007 1.03 0.000239194 0.000190881 0.0206411 0.0168978 -1 -1 -1 -1 48 2938 26 6.95648e+06 217135 865456. 2994.66 2.57 0.118569 0.100665 28354 207349 -1 2458 22 2142 3106 309004 63595 4.95685 4.95685 -169.055 -4.95685 0 0 1.05005e+06 3633.38 0.41 0.08 0.20 -1 -1 0.41 0.0200686 0.0178837 95 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 9.05 vpr 63.89 MiB -1 -1 0.20 21120 1 0.04 -1 -1 33780 -1 -1 11 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65424 30 32 224 207 1 131 73 17 17 289 -1 unnamed_device 25.5 MiB 2.89 529 10865 3546 5596 1723 63.9 MiB 0.09 0.00 2.69765 -94.3472 -2.69765 2.69765 1.15 0.000231846 0.000181969 0.0191359 0.0153968 -1 -1 -1 -1 34 1837 48 6.95648e+06 159232 618332. 2139.56 2.38 0.075118 0.0620869 25762 151098 -1 1352 19 863 1089 119179 24854 2.36662 2.36662 -94.7935 -2.36662 0 0 787024. 2723.27 0.31 0.04 0.15 -1 -1 0.31 0.00985905 0.00867828 52 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 9.77 vpr 64.21 MiB -1 -1 0.19 21532 1 0.04 -1 -1 33672 -1 -1 11 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65756 30 32 286 239 1 137 73 17 17 289 -1 unnamed_device 25.7 MiB 2.72 541 7673 3127 4256 290 64.2 MiB 0.04 0.00 3.61654 -109.463 -3.61654 3.61654 0.99 0.000176144 0.000138463 0.01098 0.00894104 -1 -1 -1 -1 36 1999 40 6.95648e+06 159232 648988. 2245.63 3.45 0.0792419 0.0661642 26050 158493 -1 1573 27 1433 2096 285043 86529 3.15927 3.15927 -115.804 -3.15927 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0147408 0.0128056 55 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 8.40 vpr 64.14 MiB -1 -1 0.19 21568 1 0.04 -1 -1 33512 -1 -1 10 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65680 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 25.5 MiB 0.51 540 6894 2748 3891 255 64.1 MiB 0.05 0.00 3.28706 -107.534 -3.28706 3.28706 1.00 0.000188401 0.000149318 0.0107501 0.0089019 -1 -1 -1 -1 48 1927 37 6.95648e+06 144757 865456. 2994.66 3.92 0.0943303 0.080459 28354 207349 -1 1516 32 1414 2301 357477 110572 3.36277 3.36277 -117.521 -3.36277 0 0 1.05005e+06 3633.38 0.45 0.10 0.21 -1 -1 0.45 0.0177564 0.0153995 59 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 5.88 vpr 63.75 MiB -1 -1 0.18 21252 1 0.03 -1 -1 33868 -1 -1 18 25 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65284 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 25.1 MiB 0.56 429 8607 3204 4152 1251 63.8 MiB 0.05 0.00 3.25923 -75.9549 -3.25923 3.25923 1.01 0.000142017 0.000112403 0.00973811 0.00797485 -1 -1 -1 -1 38 1447 26 6.95648e+06 260562 678818. 2348.85 1.79 0.0575429 0.0477939 26626 170182 -1 1136 22 909 1447 102359 23567 2.91262 2.91262 -83.008 -2.91262 0 0 902133. 3121.57 0.34 0.04 0.16 -1 -1 0.34 0.0118276 0.0103902 53 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 9.19 vpr 64.89 MiB -1 -1 0.20 21396 1 0.04 -1 -1 34008 -1 -1 12 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66448 32 32 376 307 1 179 76 17 17 289 -1 unnamed_device 26.2 MiB 2.62 770 10636 4042 5174 1420 64.9 MiB 0.07 0.00 4.01326 -127.68 -4.01326 4.01326 0.93 0.000220959 0.000173307 0.0173467 0.0140089 -1 -1 -1 -1 44 2789 32 6.95648e+06 173708 787024. 2723.27 2.73 0.0946186 0.0786726 27778 195446 -1 1975 23 1682 2784 223500 47848 4.07572 4.07572 -136.131 -4.07572 0 0 997811. 3452.63 0.41 0.07 0.18 -1 -1 0.41 0.0186334 0.0163923 72 72 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 8.88 vpr 64.67 MiB -1 -1 0.23 21696 1 0.05 -1 -1 33928 -1 -1 17 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66220 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 25.9 MiB 1.21 746 9540 3860 5304 376 64.7 MiB 0.07 0.00 4.09438 -138.115 -4.09438 4.09438 0.95 0.000243704 0.000193161 0.0164783 0.0135108 -1 -1 -1 -1 38 2658 29 6.95648e+06 246087 678818. 2348.85 3.82 0.113948 0.0961867 26626 170182 -1 1960 20 1624 2159 180927 39751 3.71392 3.71392 -137.191 -3.71392 0 0 902133. 3121.57 0.37 0.06 0.16 -1 -1 0.37 0.017897 0.0158551 80 90 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 10.20 vpr 64.62 MiB -1 -1 0.33 21504 1 0.04 -1 -1 33832 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66168 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 25.7 MiB 2.31 851 13599 5123 6301 2175 64.6 MiB 0.09 0.00 5.05471 -146.645 -5.05471 5.05471 1.03 0.000224334 0.000178624 0.0197154 0.0159003 -1 -1 -1 -1 40 2973 50 6.99608e+06 220735 706193. 2443.58 4.02 0.110297 0.0925107 26914 176310 -1 2391 21 1860 2633 243329 56741 4.97901 4.97901 -158.616 -4.97901 0 0 926341. 3205.33 0.36 0.07 0.17 -1 -1 0.36 0.0159987 0.0141671 88 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 7.61 vpr 64.58 MiB -1 -1 0.22 21520 1 0.05 -1 -1 33684 -1 -1 18 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66128 30 32 363 293 1 224 80 17 17 289 -1 unnamed_device 25.8 MiB 1.17 900 10744 3918 5217 1609 64.6 MiB 0.07 0.00 4.91636 -147.436 -4.91636 4.91636 1.03 0.000211955 0.000166583 0.016158 0.013141 -1 -1 -1 -1 46 2747 23 6.99608e+06 264882 828058. 2865.25 2.55 0.0853246 0.0712704 28066 200906 -1 2084 23 2150 3223 242281 52439 4.53109 4.53109 -146.905 -4.53109 0 0 1.01997e+06 3529.29 0.39 0.07 0.19 -1 -1 0.39 0.0178159 0.015748 101 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 15.32 vpr 64.00 MiB -1 -1 0.19 21508 1 0.03 -1 -1 33880 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65540 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 25.3 MiB 1.07 763 12030 3995 5720 2315 64.0 MiB 0.08 0.00 3.55089 -109.995 -3.55089 3.55089 0.92 0.000191825 0.000151846 0.0171135 0.0138948 -1 -1 -1 -1 40 2494 26 6.99608e+06 206020 706193. 2443.58 10.72 0.155597 0.130232 26914 176310 -1 2033 20 1360 1860 181464 39717 3.51336 3.51336 -119.104 -3.51336 0 0 926341. 3205.33 0.36 0.05 0.17 -1 -1 0.36 0.0134751 0.0118761 76 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 16.90 vpr 63.84 MiB -1 -1 0.32 21368 1 0.03 -1 -1 33808 -1 -1 16 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65376 29 32 308 248 1 182 77 17 17 289 -1 unnamed_device 25.3 MiB 1.36 725 10998 3857 5366 1775 63.8 MiB 0.07 0.00 4.23493 -118.016 -4.23493 4.23493 0.91 0.000280137 0.000237977 0.015948 0.0129402 -1 -1 -1 -1 40 2691 33 6.99608e+06 235451 706193. 2443.58 11.79 0.160577 0.134367 26914 176310 -1 2106 22 1609 2522 264407 76505 4.07542 4.07542 -131.86 -4.07542 0 0 926341. 3205.33 0.37 0.08 0.17 -1 -1 0.37 0.0152536 0.0134251 78 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 11.60 vpr 64.38 MiB -1 -1 0.20 21380 1 0.04 -1 -1 33928 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65924 32 32 336 268 1 193 78 17 17 289 -1 unnamed_device 25.7 MiB 4.02 864 10536 4352 5849 335 64.4 MiB 0.07 0.00 4.46745 -139.506 -4.46745 4.46745 1.26 0.000206108 0.000161804 0.0151414 0.0121869 -1 -1 -1 -1 44 3120 46 6.99608e+06 206020 787024. 2723.27 3.60 0.094538 0.0791109 27778 195446 -1 2219 21 1490 2510 218025 47308 4.36971 4.36971 -150.636 -4.36971 0 0 997811. 3452.63 0.41 0.07 0.18 -1 -1 0.41 0.0176408 0.0157223 81 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 24.72 vpr 64.58 MiB -1 -1 0.32 21604 1 0.06 -1 -1 33888 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66132 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 25.8 MiB 4.94 959 11981 4937 6553 491 64.6 MiB 0.08 0.00 3.38926 -120.16 -3.38926 3.38926 0.91 0.000217283 0.000170701 0.0174107 0.0140168 -1 -1 -1 -1 54 2569 40 6.99608e+06 250167 949917. 3286.91 15.38 0.178307 0.149072 29506 232905 -1 1917 22 1607 2441 179065 42254 3.37006 3.37006 -123.404 -3.37006 0 0 1.17392e+06 4061.99 0.47 0.06 0.26 -1 -1 0.47 0.0170189 0.0150647 97 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 7.57 vpr 63.72 MiB -1 -1 0.18 21240 1 0.04 -1 -1 34192 -1 -1 15 27 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65252 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 25.2 MiB 1.14 493 10924 4387 5255 1282 63.7 MiB 0.06 0.00 3.74847 -105.464 -3.74847 3.74847 1.19 0.000160241 0.000126143 0.0136985 0.0110991 -1 -1 -1 -1 44 1722 34 6.99608e+06 220735 787024. 2723.27 2.45 0.0844448 0.0707173 27778 195446 -1 1171 21 1171 1713 134252 32052 3.02191 3.02191 -101.224 -3.02191 0 0 997811. 3452.63 0.39 0.05 0.19 -1 -1 0.39 0.0124685 0.0110003 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 7.59 vpr 63.88 MiB -1 -1 0.19 21572 1 0.05 -1 -1 33700 -1 -1 25 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65412 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 25.2 MiB 0.48 646 12568 4471 6001 2096 63.9 MiB 0.07 0.00 2.86205 -89.6785 -2.86205 2.86205 0.93 0.000180687 0.000141669 0.014211 0.0115194 -1 -1 -1 -1 40 2046 44 6.99608e+06 367892 706193. 2443.58 3.39 0.103136 0.0873958 26914 176310 -1 1679 21 1162 1930 167655 41587 3.23737 3.23737 -103.037 -3.23737 0 0 926341. 3205.33 0.37 0.06 0.17 -1 -1 0.37 0.0157392 0.0139254 69 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 7.05 vpr 64.29 MiB -1 -1 0.19 21376 1 0.03 -1 -1 33984 -1 -1 14 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65828 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 25.4 MiB 1.11 971 11487 3139 6320 2028 64.3 MiB 0.08 0.00 3.37244 -119.224 -3.37244 3.37244 0.98 0.00033236 0.000267024 0.0181805 0.0148735 -1 -1 -1 -1 38 2510 23 6.99608e+06 206020 678818. 2348.85 2.21 0.0816951 0.0686997 26626 170182 -1 2071 18 1660 2239 168297 35771 3.50741 3.50741 -126.791 -3.50741 0 0 902133. 3121.57 0.38 0.10 0.15 -1 -1 0.38 0.0267461 0.0240462 87 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 8.66 vpr 64.09 MiB -1 -1 0.16 21384 1 0.03 -1 -1 34052 -1 -1 13 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65632 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 25.6 MiB 1.14 721 12465 5225 6975 265 64.1 MiB 0.07 0.00 3.92192 -133.493 -3.92192 3.92192 0.92 0.000194853 0.000155413 0.0166114 0.0134667 -1 -1 -1 -1 38 2622 30 6.99608e+06 191304 678818. 2348.85 3.98 0.0849733 0.0713732 26626 170182 -1 1885 19 1498 1863 167052 35482 3.33856 3.33856 -127.368 -3.33856 0 0 902133. 3121.57 0.36 0.06 0.16 -1 -1 0.36 0.0146951 0.013048 75 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 9.61 vpr 64.37 MiB -1 -1 0.31 21500 1 0.05 -1 -1 33712 -1 -1 14 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65916 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 25.6 MiB 2.45 754 13516 5712 6664 1140 64.4 MiB 0.07 0.00 3.97461 -128.358 -3.97461 3.97461 0.90 0.000184344 0.000142067 0.0178486 0.0143466 -1 -1 -1 -1 38 2495 37 6.99608e+06 206020 678818. 2348.85 3.36 0.0940026 0.0784292 26626 170182 -1 1877 19 1440 1936 144531 31810 4.1193 4.1193 -132.916 -4.1193 0 0 902133. 3121.57 0.36 0.05 0.16 -1 -1 0.36 0.0135176 0.0117993 83 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 6.31 vpr 64.01 MiB -1 -1 0.17 21588 1 0.04 -1 -1 33688 -1 -1 11 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65544 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 25.4 MiB 0.83 849 10977 2887 7437 653 64.0 MiB 0.06 0.00 3.07868 -112.05 -3.07868 3.07868 0.91 0.000335321 0.000275299 0.01476 0.0119902 -1 -1 -1 -1 40 2073 21 6.99608e+06 161872 706193. 2443.58 2.03 0.0689801 0.0575773 26914 176310 -1 1903 21 1177 1516 143718 29819 2.98387 2.98387 -120.376 -2.98387 0 0 926341. 3205.33 0.37 0.05 0.19 -1 -1 0.37 0.0131462 0.0115662 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 8.95 vpr 64.36 MiB -1 -1 0.20 21620 1 0.04 -1 -1 33832 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65900 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 25.5 MiB 1.20 843 12585 5259 6846 480 64.4 MiB 0.08 0.00 3.78992 -128.054 -3.78992 3.78992 0.92 0.000225322 0.000180022 0.0185212 0.015031 -1 -1 -1 -1 46 2868 30 6.99608e+06 220735 828058. 2865.25 3.93 0.102021 0.085863 28066 200906 -1 2083 23 1994 2972 236374 51689 3.48381 3.48381 -130.891 -3.48381 0 0 1.01997e+06 3529.29 0.40 0.09 0.19 -1 -1 0.40 0.0204267 0.0180627 87 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 7.17 vpr 64.58 MiB -1 -1 0.20 21508 1 0.03 -1 -1 34056 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66132 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 25.8 MiB 0.98 1008 11981 3623 6079 2279 64.6 MiB 0.08 0.00 4.68712 -142.46 -4.68712 4.68712 0.91 0.000213267 0.000167243 0.0175519 0.014237 -1 -1 -1 -1 54 2354 26 6.99608e+06 250167 949917. 3286.91 2.39 0.0849984 0.070674 29506 232905 -1 1818 25 2094 2851 202373 47066 4.17491 4.17491 -142.251 -4.17491 0 0 1.17392e+06 4061.99 0.44 0.07 0.23 -1 -1 0.44 0.0185482 0.0163256 97 61 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 11.15 vpr 64.03 MiB -1 -1 0.18 21368 1 0.04 -1 -1 33700 -1 -1 13 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65564 29 32 248 215 1 154 74 17 17 289 -1 unnamed_device 25.2 MiB 4.94 611 8754 3597 4747 410 64.0 MiB 0.05 0.00 3.0585 -88.5437 -3.0585 3.0585 0.91 0.000160099 0.000126108 0.0105849 0.00853199 -1 -1 -1 -1 38 1880 28 6.99608e+06 191304 678818. 2348.85 2.39 0.0680527 0.0565948 26626 170182 -1 1427 26 1171 1648 178027 64766 2.89347 2.89347 -95.7987 -2.89347 0 0 902133. 3121.57 0.38 0.06 0.17 -1 -1 0.38 0.0141091 0.0123779 63 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 9.00 vpr 64.48 MiB -1 -1 0.28 21552 1 0.05 -1 -1 34040 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66032 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 25.8 MiB 2.25 1140 12464 4408 6591 1465 64.5 MiB 0.09 0.00 3.78769 -130.542 -3.78769 3.78769 0.93 0.000229561 0.000181976 0.019761 0.0160942 -1 -1 -1 -1 42 3336 48 6.99608e+06 235451 744469. 2576.02 2.77 0.106145 0.0888427 27202 183097 -1 2553 23 2137 3282 294346 60400 3.53451 3.53451 -137.204 -3.53451 0 0 949917. 3286.91 0.36 0.09 0.17 -1 -1 0.36 0.0205908 0.0182084 96 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 8.80 vpr 64.45 MiB -1 -1 0.17 21604 1 0.04 -1 -1 33496 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65992 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 25.6 MiB 0.97 918 13768 4694 7034 2040 64.4 MiB 0.15 0.00 4.0525 -128.935 -4.0525 4.0525 0.92 0.00035654 0.000283758 0.0326022 0.0266234 -1 -1 -1 -1 38 2783 48 6.99608e+06 220735 678818. 2348.85 3.90 0.123931 0.104128 26626 170182 -1 2142 23 1730 2375 236394 51694 3.25321 3.25321 -123.43 -3.25321 0 0 902133. 3121.57 0.35 0.07 0.16 -1 -1 0.35 0.0162925 0.0143271 84 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 7.69 vpr 64.10 MiB -1 -1 0.21 21512 1 0.04 -1 -1 33688 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65636 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 25.5 MiB 1.08 903 11064 3444 5931 1689 64.1 MiB 0.08 0.00 3.21889 -121.244 -3.21889 3.21889 0.99 0.000196118 0.000154132 0.0163888 0.0133453 -1 -1 -1 -1 44 2749 36 6.99608e+06 220735 787024. 2723.27 2.72 0.094457 0.0793369 27778 195446 -1 2055 22 1814 2261 190479 41538 3.07012 3.07012 -121.754 -3.07012 0 0 997811. 3452.63 0.43 0.09 0.18 -1 -1 0.43 0.0207687 0.0184805 89 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 7.55 vpr 63.66 MiB -1 -1 0.18 21272 1 0.04 -1 -1 33912 -1 -1 10 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65188 30 32 222 206 1 133 72 17 17 289 -1 unnamed_device 25.1 MiB 2.05 489 10949 4586 6034 329 63.7 MiB 0.06 0.00 2.30246 -84.2954 -2.30246 2.30246 1.02 0.000143972 0.000112485 0.0145404 0.0116791 -1 -1 -1 -1 36 1686 45 6.99608e+06 147157 648988. 2245.63 1.93 0.0641774 0.0527433 26050 158493 -1 1183 16 756 833 72235 17268 2.42913 2.42913 -91.9913 -2.42913 0 0 828058. 2865.25 0.32 0.03 0.17 -1 -1 0.32 0.00910231 0.00808666 53 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 11.61 vpr 64.27 MiB -1 -1 0.20 21436 1 0.04 -1 -1 34152 -1 -1 13 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65812 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 25.5 MiB 4.28 914 8396 2822 4710 864 64.3 MiB 0.05 0.00 4.11252 -133.321 -4.11252 4.11252 0.94 0.000181928 0.000144112 0.0118301 0.00945468 -1 -1 -1 -1 36 2304 25 6.99608e+06 191304 648988. 2245.63 3.88 0.0917448 0.0777899 26050 158493 -1 2051 24 1606 2280 285081 73882 3.73061 3.73061 -141.603 -3.73061 0 0 828058. 2865.25 0.33 0.08 0.15 -1 -1 0.33 0.0145147 0.0126997 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 9.14 vpr 64.48 MiB -1 -1 0.26 21436 1 0.03 -1 -1 34064 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66032 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 25.6 MiB 1.39 753 13260 4777 6497 1986 64.5 MiB 0.08 0.00 3.96428 -130.083 -3.96428 3.96428 0.93 0.000205234 0.000162974 0.0182418 0.0147943 -1 -1 -1 -1 46 2675 50 6.99608e+06 294314 828058. 2865.25 4.04 0.125657 0.107319 28066 200906 -1 1829 21 1870 2722 202521 48522 3.86415 3.86415 -137.674 -3.86415 0 0 1.01997e+06 3529.29 0.39 0.06 0.18 -1 -1 0.39 0.0151493 0.0133025 88 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 26.04 vpr 64.50 MiB -1 -1 0.25 21624 1 0.04 -1 -1 33736 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66052 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 25.7 MiB 1.95 1213 11432 3690 6927 815 64.5 MiB 0.08 0.00 4.63424 -146.103 -4.63424 4.63424 0.95 0.000224221 0.000177724 0.0176865 0.0143873 -1 -1 -1 -1 40 3168 35 6.99608e+06 235451 706193. 2443.58 20.48 0.197652 0.167633 26914 176310 -1 2959 20 2031 3016 337795 65556 4.37375 4.37375 -155.094 -4.37375 0 0 926341. 3205.33 0.36 0.08 0.16 -1 -1 0.36 0.0165195 0.0146371 100 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 6.68 vpr 63.21 MiB -1 -1 0.23 21452 1 0.04 -1 -1 34120 -1 -1 13 26 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64724 26 32 190 182 1 122 71 17 17 289 -1 unnamed_device 24.7 MiB 0.98 398 7809 3208 4118 483 63.2 MiB 0.04 0.00 2.6826 -76.1752 -2.6826 2.6826 0.92 0.000119396 9.1887e-05 0.00820823 0.00662063 -1 -1 -1 -1 38 1303 33 6.99608e+06 191304 678818. 2348.85 1.98 0.0481315 0.0399226 26626 170182 -1 963 20 721 809 72420 16775 2.30307 2.30307 -73.7861 -2.30307 0 0 902133. 3121.57 0.36 0.03 0.22 -1 -1 0.36 0.00916868 0.00803408 52 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 9.60 vpr 63.96 MiB -1 -1 0.29 21272 1 0.04 -1 -1 33928 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65500 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 25.4 MiB 1.22 705 12078 4998 6546 534 64.0 MiB 0.07 0.00 4.4821 -114.357 -4.4821 4.4821 0.94 0.00018516 0.00014614 0.0159344 0.0129525 -1 -1 -1 -1 38 2698 27 6.99608e+06 220735 678818. 2348.85 4.70 0.0854679 0.0719302 26626 170182 -1 1954 23 1419 2416 197936 43766 3.78296 3.78296 -121.838 -3.78296 0 0 902133. 3121.57 0.34 0.06 0.16 -1 -1 0.34 0.0161061 0.0142425 66 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 5.37 vpr 63.41 MiB -1 -1 0.26 21168 1 0.03 -1 -1 33680 -1 -1 8 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64932 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 24.8 MiB 0.27 437 9906 4129 5591 186 63.4 MiB 0.06 0.00 2.05011 -68.4317 -2.05011 2.05011 0.94 0.000124539 9.7191e-05 0.0135831 0.0110239 -1 -1 -1 -1 36 1207 35 6.99608e+06 117725 648988. 2245.63 1.50 0.0539124 0.0448876 26050 158493 -1 911 19 566 682 56435 12806 2.02348 2.02348 -70.7598 -2.02348 0 0 828058. 2865.25 0.32 0.03 0.15 -1 -1 0.32 0.00808533 0.00710491 42 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 8.90 vpr 64.41 MiB -1 -1 0.18 21544 1 0.04 -1 -1 33828 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65960 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 25.8 MiB 1.29 787 11034 4537 6125 372 64.4 MiB 0.07 0.00 4.53486 -122.805 -4.53486 4.53486 0.94 0.000189673 0.000149618 0.0150166 0.0122044 -1 -1 -1 -1 38 2644 43 6.99608e+06 206020 678818. 2348.85 3.81 0.0910397 0.0766426 26626 170182 -1 1864 29 1489 2059 268194 93673 4.13361 4.13361 -127.157 -4.13361 0 0 902133. 3121.57 0.40 0.09 0.17 -1 -1 0.40 0.0168046 0.0146371 73 24 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 7.83 vpr 63.95 MiB -1 -1 0.30 21412 1 0.03 -1 -1 34132 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65488 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 25.3 MiB 0.68 752 10873 3818 5551 1504 64.0 MiB 0.07 0.00 2.96725 -98.6672 -2.96725 2.96725 1.01 0.000198701 0.000154801 0.0141884 0.0114791 -1 -1 -1 -1 38 2710 37 6.99608e+06 309029 678818. 2348.85 3.50 0.0827797 0.0692306 26626 170182 -1 1920 21 1417 2326 158600 36999 3.12812 3.12812 -112.923 -3.12812 0 0 902133. 3121.57 0.37 0.06 0.16 -1 -1 0.37 0.0146491 0.0129798 74 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 8.97 vpr 64.54 MiB -1 -1 0.19 21364 1 0.04 -1 -1 33764 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66092 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 25.7 MiB 1.38 867 7853 3139 4431 283 64.5 MiB 0.05 0.00 4.12347 -127.886 -4.12347 4.12347 0.93 0.000199013 0.000156974 0.0117395 0.0095961 -1 -1 -1 -1 46 2738 41 6.99608e+06 220735 828058. 2865.25 3.93 0.0907242 0.0761386 28066 200906 -1 2181 22 1719 2587 190254 43419 3.85501 3.85501 -128.799 -3.85501 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.015727 0.0138213 87 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 9.47 vpr 63.92 MiB -1 -1 0.28 21696 1 0.04 -1 -1 33620 -1 -1 12 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65456 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 25.3 MiB 3.12 674 9356 2870 4551 1935 63.9 MiB 0.05 0.00 3.13575 -106.667 -3.13575 3.13575 0.92 0.000176202 0.000138054 0.0124817 0.0101237 -1 -1 -1 -1 40 2217 49 6.99608e+06 176588 706193. 2443.58 2.47 0.0775932 0.0642279 26914 176310 -1 1797 20 1266 1757 166502 36883 3.25457 3.25457 -122.85 -3.25457 0 0 926341. 3205.33 0.57 0.06 0.18 -1 -1 0.57 0.0142423 0.012678 69 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 8.12 vpr 64.12 MiB -1 -1 0.31 21192 1 0.04 -1 -1 33920 -1 -1 14 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65660 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 25.4 MiB 1.81 589 9996 4089 5442 465 64.1 MiB 0.09 0.00 3.74777 -109.42 -3.74777 3.74777 1.06 0.000281171 0.000223379 0.0202842 0.0164329 -1 -1 -1 -1 48 1951 22 6.99608e+06 206020 865456. 2994.66 2.26 0.069048 0.0568792 28354 207349 -1 1463 20 1190 1805 156689 38956 3.24581 3.24581 -110.842 -3.24581 0 0 1.05005e+06 3633.38 0.47 0.05 0.20 -1 -1 0.47 0.0128161 0.011222 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 9.62 vpr 63.95 MiB -1 -1 0.27 21672 1 0.04 -1 -1 33692 -1 -1 18 28 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65480 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 25.2 MiB 3.88 566 10702 3839 4998 1865 63.9 MiB 0.06 0.00 3.27594 -101.475 -3.27594 3.27594 0.90 0.000206538 0.000167077 0.0140574 0.011409 -1 -1 -1 -1 42 2228 35 6.99608e+06 264882 744469. 2576.02 2.11 0.0711975 0.0592092 27202 183097 -1 1502 22 1294 2101 157785 36966 3.36181 3.36181 -108.095 -3.36181 0 0 949917. 3286.91 0.38 0.05 0.18 -1 -1 0.38 0.0130166 0.0114484 70 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 6.32 vpr 63.77 MiB -1 -1 0.16 21176 1 0.04 -1 -1 33720 -1 -1 10 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65304 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 25.3 MiB 0.53 510 11079 3828 5373 1878 63.8 MiB 0.06 0.00 3.37459 -106.177 -3.37459 3.37459 1.02 0.000167656 0.000132281 0.0138792 0.0112132 -1 -1 -1 -1 44 1632 21 6.99608e+06 147157 787024. 2723.27 2.04 0.0758238 0.0640255 27778 195446 -1 1255 23 1278 1977 120442 31904 3.03062 3.03062 -110.115 -3.03062 0 0 997811. 3452.63 0.39 0.05 0.18 -1 -1 0.39 0.0131139 0.0115553 58 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 10.81 vpr 63.74 MiB -1 -1 0.19 21164 1 0.03 -1 -1 34000 -1 -1 13 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65272 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 25.2 MiB 1.34 892 8396 1989 5699 708 63.7 MiB 0.08 0.00 3.27018 -109.388 -3.27018 3.27018 0.92 0.000295423 0.000234786 0.0144102 0.0118335 -1 -1 -1 -1 36 2529 37 6.99608e+06 191304 648988. 2245.63 5.73 0.0930083 0.0787402 26050 158493 -1 1957 21 1260 1716 145686 30648 3.10592 3.10592 -115.413 -3.10592 0 0 828058. 2865.25 0.34 0.05 0.19 -1 -1 0.34 0.012462 0.0109117 69 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 10.11 vpr 64.27 MiB -1 -1 0.19 21584 1 0.04 -1 -1 33884 -1 -1 15 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65816 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 25.6 MiB 2.73 893 11756 3359 7323 1074 64.3 MiB 0.07 0.00 2.90695 -103.76 -2.90695 2.90695 0.93 0.00017608 0.000138901 0.0152317 0.01229 -1 -1 -1 -1 36 2442 43 6.99608e+06 220735 648988. 2245.63 3.79 0.0847268 0.0707117 26050 158493 -1 1954 18 1256 1690 139426 28896 3.05912 3.05912 -113.612 -3.05912 0 0 828058. 2865.25 0.35 0.05 0.15 -1 -1 0.35 0.0126886 0.0112623 77 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 21.24 vpr 64.56 MiB -1 -1 0.19 21360 1 0.04 -1 -1 34212 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66112 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 25.7 MiB 1.43 941 11432 4088 5131 2213 64.6 MiB 0.08 0.00 4.40712 -125.714 -4.40712 4.40712 0.99 0.000363598 0.00028134 0.0189381 0.0154798 -1 -1 -1 -1 48 2821 24 6.99608e+06 235451 865456. 2994.66 15.85 0.182908 0.153104 28354 207349 -1 2168 20 1496 2426 194434 44753 3.58847 3.58847 -124.003 -3.58847 0 0 1.05005e+06 3633.38 0.43 0.07 0.26 -1 -1 0.43 0.020691 0.0185332 92 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 8.45 vpr 64.68 MiB -1 -1 0.18 21624 1 0.04 -1 -1 33764 -1 -1 18 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66228 32 32 391 311 1 244 82 17 17 289 -1 unnamed_device 25.8 MiB 1.00 1003 12186 4031 5776 2379 64.7 MiB 0.08 0.00 4.3859 -150.052 -4.3859 4.3859 0.91 0.000227313 0.000178855 0.018241 0.014721 -1 -1 -1 -1 44 3661 45 6.99608e+06 264882 787024. 2723.27 3.54 0.115184 0.0966582 27778 195446 -1 2288 24 2353 3309 249990 56885 4.0015 4.0015 -149.159 -4.0015 0 0 997811. 3452.63 0.48 0.10 0.26 -1 -1 0.48 0.0223349 0.0196823 106 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 9.73 vpr 63.96 MiB -1 -1 0.19 21340 1 0.03 -1 -1 33828 -1 -1 11 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65496 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 25.4 MiB 1.48 879 8134 2173 5187 774 64.0 MiB 0.09 0.00 3.62727 -120.528 -3.62727 3.62727 1.08 0.000276458 0.00021875 0.0175977 0.0143331 -1 -1 -1 -1 36 2423 45 6.99608e+06 161872 648988. 2245.63 4.58 0.111267 0.095014 26050 158493 -1 1996 20 1328 1931 181557 35817 3.48246 3.48246 -125.103 -3.48246 0 0 828058. 2865.25 0.33 0.05 0.16 -1 -1 0.33 0.012332 0.0108209 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 8.37 vpr 64.55 MiB -1 -1 0.19 21528 1 0.04 -1 -1 33900 -1 -1 17 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66100 31 32 370 297 1 227 80 17 17 289 -1 unnamed_device 25.8 MiB 1.13 902 12292 4688 5816 1788 64.6 MiB 0.08 0.00 3.65599 -121.612 -3.65599 3.65599 0.94 0.000217043 0.000170605 0.0189217 0.0152323 -1 -1 -1 -1 50 2759 34 6.99608e+06 250167 902133. 3121.57 3.52 0.104904 0.0879267 28642 213929 -1 2077 19 1659 2252 180057 42667 3.51907 3.51907 -125.738 -3.51907 0 0 1.08113e+06 3740.92 0.44 0.06 0.21 -1 -1 0.44 0.0173075 0.0152651 101 61 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 8.66 vpr 64.66 MiB -1 -1 0.21 21804 1 0.04 -1 -1 33768 -1 -1 17 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66216 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 25.8 MiB 1.08 1028 12636 4939 6150 1547 64.7 MiB 0.08 0.00 5.24621 -161.935 -5.24621 5.24621 0.89 0.000213377 0.000168285 0.0189384 0.0153887 -1 -1 -1 -1 48 3303 37 6.99608e+06 250167 865456. 2994.66 3.72 0.107468 0.0905825 28354 207349 -1 2354 33 2920 4225 465806 138121 5.3112 5.3112 -170.393 -5.3112 0 0 1.05005e+06 3633.38 0.46 0.14 0.25 -1 -1 0.46 0.026061 0.0227424 104 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 15.12 vpr 64.62 MiB -1 -1 0.21 21848 1 0.03 -1 -1 33620 -1 -1 18 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66168 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 25.9 MiB 4.69 968 11981 4242 5473 2266 64.6 MiB 0.08 0.00 5.22958 -165.475 -5.22958 5.22958 1.03 0.000225927 0.00017802 0.0179354 0.0144677 -1 -1 -1 -1 38 4038 49 6.99608e+06 264882 678818. 2348.85 6.40 0.112536 0.0943538 26626 170182 -1 2704 22 2314 3311 303781 63787 5.01455 5.01455 -170.12 -5.01455 0 0 902133. 3121.57 0.52 0.14 0.26 -1 -1 0.52 0.0282696 0.0249515 103 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 9.75 vpr 64.64 MiB -1 -1 0.19 21396 1 0.04 -1 -1 33884 -1 -1 16 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66196 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 25.7 MiB 2.58 882 12585 5245 6747 593 64.6 MiB 0.10 0.00 3.91372 -127.244 -3.91372 3.91372 0.88 0.000354634 0.000280375 0.020663 0.0166691 -1 -1 -1 -1 46 3220 49 6.99608e+06 235451 828058. 2865.25 3.70 0.103745 0.0865768 28066 200906 -1 2148 20 1690 2211 184808 39735 3.41986 3.41986 -124.041 -3.41986 0 0 1.01997e+06 3529.29 0.38 0.06 0.18 -1 -1 0.38 0.0145409 0.0127945 93 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 7.27 vpr 63.88 MiB -1 -1 0.17 21560 1 0.04 -1 -1 33888 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65416 32 32 291 242 1 177 78 17 17 289 -1 unnamed_device 25.2 MiB 1.40 853 9872 3567 4389 1916 63.9 MiB 0.06 0.00 4.1407 -116.233 -4.1407 4.1407 0.90 0.000184667 0.000146014 0.0138726 0.0113712 -1 -1 -1 -1 40 2523 26 6.99608e+06 206020 706193. 2443.58 2.41 0.0721842 0.0607654 26914 176310 -1 2086 20 1342 1862 174928 36049 3.96232 3.96232 -123.593 -3.96232 0 0 926341. 3205.33 0.35 0.05 0.22 -1 -1 0.35 0.0127874 0.0111781 72 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 9.89 vpr 64.64 MiB -1 -1 0.20 21764 1 0.05 -1 -1 33916 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66196 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 26.0 MiB 1.75 1445 14965 4188 8952 1825 64.6 MiB 0.12 0.00 4.92896 -170.692 -4.92896 4.92896 0.86 0.000264894 0.000210343 0.0257949 0.0210857 -1 -1 -1 -1 40 3661 40 6.99608e+06 309029 706193. 2443.58 4.30 0.124711 0.104648 26914 176310 -1 3385 20 2610 3812 343398 69832 4.77544 4.77544 -177.469 -4.77544 0 0 926341. 3205.33 0.51 0.10 0.18 -1 -1 0.51 0.0219675 0.0194993 129 87 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 9.38 vpr 63.71 MiB -1 -1 0.18 21444 1 0.03 -1 -1 33892 -1 -1 11 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65244 31 32 261 225 1 160 74 17 17 289 -1 unnamed_device 25.2 MiB 4.02 542 11234 3813 5447 1974 63.7 MiB 0.06 0.00 2.9921 -96.3096 -2.9921 2.9921 0.87 0.000164551 0.000129279 0.0136188 0.0109399 -1 -1 -1 -1 44 2071 32 6.99608e+06 161872 787024. 2723.27 2.08 0.0650548 0.0536255 27778 195446 -1 1288 20 1197 1546 103827 25958 3.08197 3.08197 -102.762 -3.08197 0 0 997811. 3452.63 0.41 0.04 0.18 -1 -1 0.41 0.0117273 0.0102967 65 28 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 6.91 vpr 64.46 MiB -1 -1 0.19 21520 1 0.04 -1 -1 33644 -1 -1 15 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66004 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 25.6 MiB 0.91 912 12694 5540 6748 406 64.5 MiB 0.08 0.00 4.60267 -146.673 -4.60267 4.60267 0.88 0.00020856 0.000164942 0.0192808 0.0156838 -1 -1 -1 -1 48 2598 24 6.99608e+06 220735 865456. 2994.66 2.47 0.0873758 0.0734139 28354 207349 -1 2041 22 1747 2529 208572 44467 4.26401 4.26401 -140.32 -4.26401 0 0 1.05005e+06 3633.38 0.40 0.06 0.19 -1 -1 0.40 0.0144772 0.012779 85 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 9.09 vpr 64.52 MiB -1 -1 0.19 21600 1 0.03 -1 -1 33948 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66072 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 25.6 MiB 1.72 945 13430 5690 7168 572 64.5 MiB 0.08 0.00 3.78685 -125.526 -3.78685 3.78685 0.92 0.000215369 0.000160622 0.0190596 0.0152823 -1 -1 -1 -1 46 2883 38 6.99608e+06 220735 828058. 2865.25 3.73 0.100922 0.0849773 28066 200906 -1 2024 20 1406 2136 157327 35923 3.43852 3.43852 -123.865 -3.43852 0 0 1.01997e+06 3529.29 0.40 0.05 0.20 -1 -1 0.40 0.0155384 0.0137724 91 53 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 7.28 vpr 63.97 MiB -1 -1 0.18 21388 1 0.04 -1 -1 33592 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65508 32 32 291 230 1 167 80 17 17 289 -1 unnamed_device 25.3 MiB 1.11 698 11776 4112 5155 2509 64.0 MiB 0.06 0.00 4.31309 -119.613 -4.31309 4.31309 0.91 0.000182043 0.000143194 0.0148118 0.0120126 -1 -1 -1 -1 40 2369 28 6.99608e+06 235451 706193. 2443.58 2.75 0.0717424 0.0593843 26914 176310 -1 2009 23 1477 2518 249326 68662 4.26966 4.26966 -133.049 -4.26966 0 0 926341. 3205.33 0.34 0.07 0.16 -1 -1 0.34 0.0139658 0.0122789 69 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 10.06 vpr 64.62 MiB -1 -1 0.20 21484 1 0.04 -1 -1 33776 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66168 32 32 353 287 1 205 79 17 17 289 -1 unnamed_device 25.7 MiB 1.63 862 12585 4753 5708 2124 64.6 MiB 0.08 0.00 4.19608 -127.939 -4.19608 4.19608 0.89 0.000206326 0.000162787 0.0180304 0.0146026 -1 -1 -1 -1 38 3230 48 6.99608e+06 220735 678818. 2348.85 4.75 0.102141 0.0857431 26626 170182 -1 2128 19 1557 2138 182030 38940 3.23321 3.23321 -118.635 -3.23321 0 0 902133. 3121.57 0.40 0.06 0.20 -1 -1 0.40 0.0153417 0.0136104 90 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 9.63 vpr 64.57 MiB -1 -1 0.20 21580 1 0.03 -1 -1 34044 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66116 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 25.7 MiB 2.02 946 11402 4534 5168 1700 64.6 MiB 0.08 0.00 3.61665 -125.974 -3.61665 3.61665 0.90 0.000210136 0.000163546 0.0165062 0.013286 -1 -1 -1 -1 40 3373 27 6.99608e+06 220735 706193. 2443.58 4.01 0.0889873 0.0746724 26914 176310 -1 2720 22 1775 2673 249256 52847 3.65666 3.65666 -138.794 -3.65666 0 0 926341. 3205.33 0.38 0.09 0.17 -1 -1 0.38 0.0218403 0.0193968 93 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 8.77 vpr 64.55 MiB -1 -1 0.20 21388 1 0.04 -1 -1 33752 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66104 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 25.8 MiB 2.78 1092 13152 5486 7241 425 64.6 MiB 0.08 0.00 3.81447 -129.917 -3.81447 3.81447 0.89 0.000217696 0.000170826 0.0192719 0.0155312 -1 -1 -1 -1 46 2925 27 6.99608e+06 235451 828058. 2865.25 2.43 0.0845874 0.0698632 28066 200906 -1 2278 19 1796 2390 177921 42101 3.34751 3.34751 -126.123 -3.34751 0 0 1.01997e+06 3529.29 0.37 0.06 0.19 -1 -1 0.37 0.0158603 0.0140805 101 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 7.43 vpr 64.26 MiB -1 -1 0.17 21576 1 0.04 -1 -1 33860 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65804 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 25.7 MiB 1.34 751 10204 3498 4965 1741 64.3 MiB 0.06 0.00 4.48113 -123.015 -4.48113 4.48113 0.91 0.000193982 0.000150061 0.0138866 0.0111923 -1 -1 -1 -1 40 2686 32 6.99608e+06 206020 706193. 2443.58 2.70 0.0836362 0.0702122 26914 176310 -1 2024 24 1488 2250 174372 40440 4.13042 4.13042 -131.697 -4.13042 0 0 926341. 3205.33 0.36 0.06 0.15 -1 -1 0.36 0.0152457 0.0134141 74 24 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 8.56 vpr 64.48 MiB -1 -1 0.18 21688 1 0.03 -1 -1 34100 -1 -1 13 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66024 32 32 319 257 1 193 77 17 17 289 -1 unnamed_device 25.8 MiB 2.42 789 11161 3588 5346 2227 64.5 MiB 0.07 0.00 4.08638 -125.107 -4.08638 4.08638 0.91 0.000192585 0.000151847 0.0155722 0.0125886 -1 -1 -1 -1 40 2671 45 6.99608e+06 191304 706193. 2443.58 2.73 0.078858 0.0652201 26914 176310 -1 2229 20 1798 2408 237570 50974 3.98701 3.98701 -139.933 -3.98701 0 0 926341. 3205.33 0.33 0.06 0.15 -1 -1 0.33 0.0129567 0.0113946 81 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 7.50 vpr 64.57 MiB -1 -1 0.19 21812 1 0.04 -1 -1 33692 -1 -1 16 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66116 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 25.8 MiB 1.07 960 12923 4769 6489 1665 64.6 MiB 0.09 0.00 4.33001 -137.493 -4.33001 4.33001 0.89 0.000227529 0.000181905 0.0192746 0.0156004 -1 -1 -1 -1 46 3262 28 6.99608e+06 235451 828058. 2865.25 2.83 0.0850302 0.070351 28066 200906 -1 2240 21 1802 2662 180385 42129 4.03366 4.03366 -137.646 -4.03366 0 0 1.01997e+06 3529.29 0.40 0.06 0.18 -1 -1 0.40 0.0155337 0.0136567 99 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 8.83 vpr 64.59 MiB -1 -1 0.21 21864 1 0.04 -1 -1 34164 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66140 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 25.7 MiB 1.24 1085 14872 6411 8186 275 64.6 MiB 0.10 0.00 3.95718 -133.91 -3.95718 3.95718 0.92 0.000223649 0.000176908 0.021543 0.017383 -1 -1 -1 -1 46 3438 27 6.99608e+06 235451 828058. 2865.25 3.94 0.0945706 0.0775519 28066 200906 -1 2566 22 2336 3360 279653 57197 3.90226 3.90226 -136.587 -3.90226 0 0 1.01997e+06 3529.29 0.37 0.08 0.18 -1 -1 0.37 0.0174517 0.0153217 106 77 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 13.24 vpr 64.04 MiB -1 -1 0.16 21220 1 0.03 -1 -1 33996 -1 -1 10 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65576 32 32 251 219 1 151 74 17 17 289 -1 unnamed_device 25.6 MiB 0.67 584 9994 4131 5517 346 64.0 MiB 0.05 0.00 3.27254 -98.1459 -3.27254 3.27254 0.87 0.000157754 0.000123946 0.0120223 0.00970434 -1 -1 -1 -1 40 2133 30 6.99608e+06 147157 706193. 2443.58 9.33 0.113294 0.0935925 26914 176310 -1 1619 17 1047 1471 160796 47790 2.98777 2.98777 -103.538 -2.98777 0 0 926341. 3205.33 0.35 0.05 0.17 -1 -1 0.35 0.011259 0.0100118 60 23 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 7.67 vpr 64.44 MiB -1 -1 0.18 21356 1 0.03 -1 -1 33924 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65984 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 25.5 MiB 1.04 872 9036 3191 4723 1122 64.4 MiB 0.06 0.00 3.89113 -140.293 -3.89113 3.89113 0.87 0.000201335 0.00015834 0.0146925 0.0122 -1 -1 -1 -1 44 3087 35 6.99608e+06 220735 787024. 2723.27 3.33 0.0883414 0.0739486 27778 195446 -1 2004 20 1867 2519 222462 45910 3.68341 3.68341 -137.359 -3.68341 0 0 997811. 3452.63 0.36 0.06 0.20 -1 -1 0.36 0.0131524 0.0115286 93 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 8.74 vpr 65.02 MiB -1 -1 0.20 21804 1 0.04 -1 -1 34108 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66580 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 26.1 MiB 1.06 920 11776 4854 6254 668 65.0 MiB 0.08 0.00 4.78758 -149.316 -4.78758 4.78758 0.88 0.000235279 0.000185922 0.0202053 0.0165634 -1 -1 -1 -1 48 3455 47 6.99608e+06 235451 865456. 2994.66 4.16 0.116266 0.098205 28354 207349 -1 2342 22 2187 3298 304499 71557 4.94376 4.94376 -156.132 -4.94376 0 0 1.05005e+06 3633.38 0.38 0.08 0.19 -1 -1 0.38 0.0169104 0.0148448 98 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 7.03 vpr 64.30 MiB -1 -1 0.19 21360 1 0.04 -1 -1 33796 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65840 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 25.5 MiB 0.81 871 12247 5090 6619 538 64.3 MiB 0.07 0.00 4.21616 -136.097 -4.21616 4.21616 0.87 0.000203985 0.000161368 0.0172429 0.014016 -1 -1 -1 -1 46 2790 27 6.99608e+06 220735 828058. 2865.25 2.74 0.0798817 0.0664199 28066 200906 -1 2033 22 1764 2369 168064 38187 3.60811 3.60811 -129.881 -3.60811 0 0 1.01997e+06 3529.29 0.38 0.06 0.18 -1 -1 0.38 0.015177 0.0133268 85 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 8.60 vpr 64.04 MiB -1 -1 0.19 21496 1 0.03 -1 -1 34032 -1 -1 20 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65572 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 25.4 MiB 2.28 641 12008 4694 6159 1155 64.0 MiB 0.07 0.00 3.67135 -114.032 -3.67135 3.67135 0.92 0.0001794 0.000139586 0.0142703 0.0115672 -1 -1 -1 -1 40 2118 44 6.99608e+06 294314 706193. 2443.58 3.03 0.0716951 0.0594958 26914 176310 -1 1753 21 1282 1962 260164 82998 3.52936 3.52936 -121.75 -3.52936 0 0 926341. 3205.33 0.33 0.07 0.16 -1 -1 0.33 0.0115858 0.0100846 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 7.24 vpr 64.81 MiB -1 -1 0.24 21784 1 0.04 -1 -1 33940 -1 -1 18 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66364 32 32 431 332 1 260 82 17 17 289 -1 unnamed_device 26.0 MiB 1.19 1432 14144 5603 7508 1033 64.8 MiB 0.11 0.00 6.40939 -192.555 -6.40939 6.40939 0.87 0.000293343 0.000241236 0.023519 0.0192005 -1 -1 -1 -1 48 3781 32 6.99608e+06 264882 865456. 2994.66 2.39 0.101086 0.0839433 28354 207349 -1 3159 22 2427 3546 304769 61049 5.77539 5.77539 -188.538 -5.77539 0 0 1.05005e+06 3633.38 0.39 0.09 0.19 -1 -1 0.39 0.0202931 0.0179321 116 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 10.06 vpr 64.71 MiB -1 -1 0.18 21424 1 0.04 -1 -1 33904 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66268 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 25.8 MiB 0.88 852 9374 3899 5203 272 64.7 MiB 0.06 0.00 4.9189 -148.418 -4.9189 4.9189 0.96 0.0001978 0.000155265 0.0134781 0.010907 -1 -1 -1 -1 38 2787 31 6.99608e+06 206020 678818. 2348.85 5.64 0.0849261 0.0713523 26626 170182 -1 2002 21 1728 2348 174385 37585 4.06535 4.06535 -139.343 -4.06535 0 0 902133. 3121.57 0.33 0.06 0.15 -1 -1 0.33 0.0150326 0.0132653 83 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 6.63 vpr 63.69 MiB -1 -1 0.17 21296 1 0.03 -1 -1 33756 -1 -1 13 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65220 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 25.1 MiB 0.34 535 10509 4368 5789 352 63.7 MiB 0.05 0.00 2.922 -91.3971 -2.922 2.922 0.90 0.000152909 0.000120376 0.0117652 0.00952878 -1 -1 -1 -1 40 1896 38 6.99608e+06 191304 706193. 2443.58 2.82 0.0608314 0.0505949 26914 176310 -1 1509 21 991 1481 143085 34737 3.14927 3.14927 -103.816 -3.14927 0 0 926341. 3205.33 0.35 0.05 0.16 -1 -1 0.35 0.0106806 0.00931707 51 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 21.39 vpr 64.66 MiB -1 -1 0.19 21516 1 0.03 -1 -1 33876 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66208 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 25.7 MiB 1.86 937 15044 6237 7403 1404 64.7 MiB 0.09 0.00 4.79375 -134.609 -4.79375 4.79375 0.91 0.00021026 0.000166512 0.021647 0.0176101 -1 -1 -1 -1 40 3381 44 6.99608e+06 235451 706193. 2443.58 15.98 0.166152 0.138568 26914 176310 -1 2639 22 2007 3190 342110 79019 5.28776 5.28776 -152.58 -5.28776 0 0 926341. 3205.33 0.35 0.10 0.16 -1 -1 0.35 0.0190367 0.0169094 85 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 7.06 vpr 63.89 MiB -1 -1 0.18 21112 1 0.04 -1 -1 33836 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65420 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 25.4 MiB 1.16 492 10204 2692 5791 1721 63.9 MiB 0.06 0.00 2.966 -96.76 -2.966 2.966 0.89 0.000204258 0.000169958 0.0122816 0.00998525 -1 -1 -1 -1 38 1631 32 6.99608e+06 206020 678818. 2348.85 2.51 0.0615401 0.0511938 26626 170182 -1 1195 22 1046 1513 86598 21931 3.06997 3.06997 -104.764 -3.06997 0 0 902133. 3121.57 0.35 0.04 0.15 -1 -1 0.35 0.0115128 0.0100936 57 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 7.53 vpr 63.77 MiB -1 -1 0.17 21460 1 0.03 -1 -1 33884 -1 -1 13 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65296 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 25.1 MiB 0.81 683 11293 4547 5793 953 63.8 MiB 0.06 0.00 3.84183 -118.192 -3.84183 3.84183 0.93 0.000168769 0.000132695 0.0138151 0.0111057 -1 -1 -1 -1 38 2131 30 6.99608e+06 191304 678818. 2348.85 3.25 0.0790908 0.066432 26626 170182 -1 1548 21 1163 1560 112003 25178 3.20221 3.20221 -112.039 -3.20221 0 0 902133. 3121.57 0.33 0.04 0.16 -1 -1 0.33 0.0123538 0.0105807 69 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 7.64 vpr 64.87 MiB -1 -1 0.20 21484 1 0.04 -1 -1 33820 -1 -1 18 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66424 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 25.8 MiB 1.24 978 11064 4603 5811 650 64.9 MiB 0.08 0.00 4.04056 -127.05 -4.04056 4.04056 0.94 0.000212667 0.000167407 0.0178426 0.0146281 -1 -1 -1 -1 44 3460 36 6.99608e+06 264882 787024. 2723.27 2.85 0.0884711 0.0738558 27778 195446 -1 2237 22 1721 2487 195932 42997 3.88346 3.88346 -131.875 -3.88346 0 0 997811. 3452.63 0.37 0.06 0.18 -1 -1 0.37 0.0156818 0.0138098 97 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 9.74 vpr 64.88 MiB -1 -1 0.19 21412 1 0.04 -1 -1 33836 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66440 32 32 358 289 1 219 79 17 17 289 -1 unnamed_device 26.1 MiB 1.79 980 14444 5001 7107 2336 64.9 MiB 0.09 0.00 4.54753 -143.667 -4.54753 4.54753 0.92 0.000209244 0.000164807 0.0206418 0.0166491 -1 -1 -1 -1 38 3493 41 6.99608e+06 220735 678818. 2348.85 4.52 0.0916971 0.0758829 26626 170182 -1 2608 21 2012 2796 244213 51678 4.40255 4.40255 -157.439 -4.40255 0 0 902133. 3121.57 0.33 0.07 0.15 -1 -1 0.33 0.0147935 0.0129529 93 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 10.82 vpr 64.50 MiB -1 -1 0.19 21408 1 0.04 -1 -1 33744 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66048 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 25.8 MiB 3.91 1118 12585 4147 6271 2167 64.5 MiB 0.08 0.00 4.58917 -148.796 -4.58917 4.58917 0.87 0.000211329 0.000167707 0.018301 0.0148208 -1 -1 -1 -1 40 2940 33 6.99608e+06 220735 706193. 2443.58 3.41 0.0827241 0.0684322 26914 176310 -1 2614 22 1958 2844 308347 61854 4.45201 4.45201 -153.727 -4.45201 0 0 926341. 3205.33 0.35 0.08 0.16 -1 -1 0.35 0.0163191 0.0143447 90 51 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 8.94 vpr 64.16 MiB -1 -1 0.19 21448 1 0.03 -1 -1 33584 -1 -1 11 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65704 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 25.6 MiB 2.28 646 11767 4636 5730 1401 64.2 MiB 0.07 0.00 4.03444 -123.732 -4.03444 4.03444 0.88 0.000174173 0.000137044 0.0159728 0.0129437 -1 -1 -1 -1 46 2438 26 6.99608e+06 161872 828058. 2865.25 3.19 0.0686087 0.0571018 28066 200906 -1 1572 26 1180 1552 122096 28753 3.46386 3.46386 -118.174 -3.46386 0 0 1.01997e+06 3529.29 0.38 0.05 0.19 -1 -1 0.38 0.0137221 0.0118784 67 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 6.47 vpr 64.24 MiB -1 -1 0.17 21420 1 0.03 -1 -1 33804 -1 -1 14 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65784 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 25.4 MiB 1.03 795 12791 5222 5710 1859 64.2 MiB 0.08 0.00 3.72927 -124.319 -3.72927 3.72927 0.86 0.000182303 0.000142738 0.017769 0.0131783 -1 -1 -1 -1 44 2591 26 6.99608e+06 206020 787024. 2723.27 2.12 0.0811803 0.0666083 27778 195446 -1 1899 23 1534 2162 165982 36611 3.60141 3.60141 -123.632 -3.60141 0 0 997811. 3452.63 0.38 0.06 0.18 -1 -1 0.38 0.0148986 0.0129213 86 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 8.26 vpr 64.28 MiB -1 -1 0.19 21568 1 0.04 -1 -1 33532 -1 -1 19 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65824 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 25.4 MiB 1.53 844 13731 4372 6963 2396 64.3 MiB 0.08 0.00 3.3817 -109.729 -3.3817 3.3817 0.87 0.000190383 0.000150543 0.0184834 0.0149634 -1 -1 -1 -1 40 2972 39 6.99608e+06 279598 706193. 2443.58 3.23 0.0951528 0.079712 26914 176310 -1 1994 24 1750 2466 236383 60060 3.06321 3.06321 -110.106 -3.06321 0 0 926341. 3205.33 0.34 0.08 0.16 -1 -1 0.34 0.0190414 0.0167988 91 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 6.62 vpr 63.93 MiB -1 -1 0.18 21560 1 0.03 -1 -1 33896 -1 -1 17 28 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65464 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 25.3 MiB 0.63 703 11976 4217 5816 1943 63.9 MiB 0.07 0.00 3.6892 -102.61 -3.6892 3.6892 0.89 0.000214394 0.00017854 0.0146463 0.0117798 -1 -1 -1 -1 40 2134 23 6.99608e+06 250167 706193. 2443.58 2.59 0.0709358 0.0593246 26914 176310 -1 1788 20 1317 1928 212398 44387 3.51816 3.51816 -110.645 -3.51816 0 0 926341. 3205.33 0.36 0.06 0.17 -1 -1 0.36 0.0122415 0.0107741 71 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 6.50 vpr 64.50 MiB -1 -1 0.19 21580 1 0.03 -1 -1 33836 -1 -1 15 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66044 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 25.6 MiB 0.95 796 9042 3476 4677 889 64.5 MiB 0.06 0.00 4.23312 -132.968 -4.23312 4.23312 0.91 0.000189567 0.000148323 0.0128665 0.0104419 -1 -1 -1 -1 44 2471 25 6.99608e+06 220735 787024. 2723.27 2.03 0.0694446 0.0577216 27778 195446 -1 1793 21 1664 2228 177685 38515 3.71386 3.71386 -130.295 -3.71386 0 0 997811. 3452.63 0.42 0.06 0.18 -1 -1 0.42 0.0154349 0.0136465 88 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 7.69 vpr 64.48 MiB -1 -1 0.17 21616 1 0.03 -1 -1 33764 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66028 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 25.6 MiB 1.02 932 13524 5742 7441 341 64.5 MiB 0.08 0.00 3.33761 -122.631 -3.33761 3.33761 0.90 0.000197042 0.000154606 0.018226 0.0145908 -1 -1 -1 -1 46 2602 32 6.99608e+06 206020 828058. 2865.25 3.13 0.0833634 0.069198 28066 200906 -1 2009 20 1718 2353 172584 38355 3.51211 3.51211 -128.602 -3.51211 0 0 1.01997e+06 3529.29 0.41 0.05 0.19 -1 -1 0.41 0.0135848 0.0119515 93 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 6.00 vpr 63.83 MiB -1 -1 0.18 21312 1 0.03 -1 -1 34036 -1 -1 24 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65364 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 25.2 MiB 0.53 734 13911 5021 5993 2897 63.8 MiB 0.07 0.00 4.52238 -122.271 -4.52238 4.52238 0.87 0.000194385 0.000155127 0.0158827 0.0128993 -1 -1 -1 -1 44 2469 50 6.99608e+06 353176 787024. 2723.27 2.20 0.0758328 0.0626185 27778 195446 -1 1737 22 1226 2079 141220 32771 4.03642 4.03642 -127.786 -4.03642 0 0 997811. 3452.63 0.38 0.05 0.18 -1 -1 0.38 0.0130162 0.0114364 74 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 24.66 vpr 64.58 MiB -1 -1 0.21 21576 1 0.03 -1 -1 33724 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66132 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 25.6 MiB 1.38 829 10204 4200 5555 449 64.6 MiB 0.06 0.00 4.50341 -148.643 -4.50341 4.50341 0.91 0.000205857 0.000161727 0.0150649 0.0122181 -1 -1 -1 -1 48 2835 33 6.99608e+06 206020 865456. 2994.66 19.69 0.169073 0.142889 28354 207349 -1 2230 20 1749 2578 220453 49752 4.10901 4.10901 -145.953 -4.10901 0 0 1.05005e+06 3633.38 0.50 0.06 0.19 -1 -1 0.50 0.0160984 0.0143082 86 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 8.03 vpr 64.67 MiB -1 -1 0.21 21440 1 0.03 -1 -1 34032 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66224 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 25.8 MiB 0.98 1083 14606 4862 7486 2258 64.7 MiB 0.10 0.00 5.11069 -165.7 -5.11069 5.11069 0.90 0.000275155 0.000227748 0.0210966 0.0168538 -1 -1 -1 -1 44 3460 33 6.99608e+06 250167 787024. 2723.27 3.49 0.0940948 0.0778047 27778 195446 -1 2572 23 2258 3110 251900 53678 5.12834 5.12834 -169.932 -5.12834 0 0 997811. 3452.63 0.37 0.07 0.18 -1 -1 0.37 0.0167521 0.0146888 102 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 7.36 vpr 64.82 MiB -1 -1 0.20 21496 1 0.03 -1 -1 33696 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66380 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 25.9 MiB 1.07 1036 9181 3131 4714 1336 64.8 MiB 0.07 0.00 4.33426 -143.87 -4.33426 4.33426 0.88 0.000252903 0.00020596 0.0141902 0.0115908 -1 -1 -1 -1 56 3044 44 6.99608e+06 250167 973134. 3367.25 2.79 0.0911501 0.0760829 29794 239141 -1 2372 22 2062 2896 252385 53060 4.0145 4.0145 -144.544 -4.0145 0 0 1.19926e+06 4149.71 0.43 0.07 0.23 -1 -1 0.43 0.0164165 0.0144277 104 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 12.86 vpr 64.06 MiB -1 -1 0.19 21632 1 0.03 -1 -1 33724 -1 -1 13 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65596 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 25.5 MiB 1.11 635 9713 3107 4623 1983 64.1 MiB 0.06 0.00 4.08266 -116.386 -4.08266 4.08266 0.89 0.000163809 0.000128903 0.0122997 0.00998892 -1 -1 -1 -1 40 2110 26 6.99608e+06 191304 706193. 2443.58 8.31 0.12524 0.104885 26914 176310 -1 1699 22 1404 2028 202134 42834 3.28122 3.28122 -113.727 -3.28122 0 0 926341. 3205.33 0.34 0.06 0.16 -1 -1 0.34 0.0123762 0.0108922 71 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 7.31 vpr 64.71 MiB -1 -1 0.20 21332 1 0.04 -1 -1 34172 -1 -1 18 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66264 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 25.8 MiB 1.09 883 12120 4402 5485 2233 64.7 MiB 0.07 0.00 5.1699 -158.063 -5.1699 5.1699 0.87 0.000220197 0.000173365 0.0180616 0.0145473 -1 -1 -1 -1 48 2922 49 6.99608e+06 264882 865456. 2994.66 2.75 0.0923785 0.0763836 28354 207349 -1 2248 21 2138 3053 249900 59890 5.1971 5.1971 -167.765 -5.1971 0 0 1.05005e+06 3633.38 0.40 0.08 0.20 -1 -1 0.40 0.01988 0.0177144 104 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 6.93 vpr 64.28 MiB -1 -1 0.20 21532 1 0.03 -1 -1 34032 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65820 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 25.7 MiB 0.91 788 9374 3088 4347 1939 64.3 MiB 0.06 0.00 4.91711 -144.854 -4.91711 4.91711 0.89 0.000198684 0.000156806 0.0137493 0.0112378 -1 -1 -1 -1 54 2286 40 6.99608e+06 206020 949917. 3286.91 2.51 0.0797992 0.0661964 29506 232905 -1 1621 19 1321 2164 139952 35343 4.04535 4.04535 -135.966 -4.04535 0 0 1.17392e+06 4061.99 0.44 0.05 0.22 -1 -1 0.44 0.0136072 0.0120445 81 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 11.11 vpr 64.55 MiB -1 -1 0.20 21500 1 0.03 -1 -1 33880 -1 -1 17 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66096 31 32 340 275 1 196 80 17 17 289 -1 unnamed_device 25.6 MiB 1.41 828 14528 6197 7823 508 64.5 MiB 0.09 0.00 5.0524 -144.146 -5.0524 5.0524 0.94 0.000209693 0.000164353 0.0205424 0.0166467 -1 -1 -1 -1 38 3321 44 6.99608e+06 250167 678818. 2348.85 6.30 0.0944396 0.0789478 26626 170182 -1 2238 25 1699 2500 204991 46682 4.45981 4.45981 -147.934 -4.45981 0 0 902133. 3121.57 0.32 0.07 0.15 -1 -1 0.32 0.016524 0.0144303 87 47 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 8.26 vpr 64.75 MiB -1 -1 0.20 21580 1 0.03 -1 -1 34016 -1 -1 19 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66308 30 32 377 310 1 234 81 17 17 289 -1 unnamed_device 25.9 MiB 1.70 998 14606 5096 6874 2636 64.8 MiB 0.09 0.00 4.3242 -135.003 -4.3242 4.3242 0.89 0.00020899 0.000164602 0.0198726 0.0159845 -1 -1 -1 -1 46 3279 31 6.99608e+06 279598 828058. 2865.25 3.09 0.0890044 0.0735867 28066 200906 -1 2277 21 2181 2990 217660 49510 4.4295 4.4295 -146.67 -4.4295 0 0 1.01997e+06 3529.29 0.37 0.06 0.18 -1 -1 0.37 0.0152652 0.0134231 107 83 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 23.75 vpr 64.62 MiB -1 -1 0.19 21548 1 0.03 -1 -1 33708 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66176 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 25.8 MiB 1.90 1123 15831 6103 7773 1955 64.6 MiB 0.10 0.00 4.68727 -152.859 -4.68727 4.68727 0.96 0.000212683 0.000168476 0.0215326 0.0172915 -1 -1 -1 -1 40 3015 21 6.99608e+06 250167 706193. 2443.58 18.29 0.147224 0.121925 26914 176310 -1 2734 19 1951 2741 273955 54955 4.50081 4.50081 -161.822 -4.50081 0 0 926341. 3205.33 0.34 0.07 0.16 -1 -1 0.34 0.0163433 0.0145566 95 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 9.69 vpr 64.66 MiB -1 -1 0.18 21448 1 0.04 -1 -1 33768 -1 -1 20 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66208 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 25.8 MiB 2.59 1106 12156 3661 6482 2013 64.7 MiB 0.08 0.00 3.82165 -125.941 -3.82165 3.82165 0.90 0.000208189 0.000164124 0.0170469 0.0138326 -1 -1 -1 -1 38 3242 28 6.99608e+06 294314 678818. 2348.85 3.69 0.0812439 0.0670645 26626 170182 -1 2602 22 1986 2601 212313 44205 3.85722 3.85722 -135.545 -3.85722 0 0 902133. 3121.57 0.34 0.06 0.15 -1 -1 0.34 0.0155272 0.0135857 109 85 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 9.07 vpr 63.74 MiB -1 -1 0.17 21260 1 0.03 -1 -1 33968 -1 -1 10 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65272 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 25.3 MiB 2.94 497 9529 2774 4777 1978 63.7 MiB 0.05 0.00 3.56099 -102.406 -3.56099 3.56099 0.93 0.000159481 0.000124841 0.0117471 0.00949362 -1 -1 -1 -1 50 1343 28 6.99608e+06 147157 902133. 3121.57 2.74 0.0589365 0.0488094 28642 213929 -1 1025 26 974 1476 91476 23979 3.21827 3.21827 -98.6875 -3.21827 0 0 1.08113e+06 3740.92 0.40 0.04 0.19 -1 -1 0.40 0.0126459 0.0110751 54 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 18.87 vpr 64.68 MiB -1 -1 0.19 21372 1 0.03 -1 -1 34088 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66228 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 25.9 MiB 0.85 934 8831 2712 4206 1913 64.7 MiB 0.07 0.00 5.01054 -157.498 -5.01054 5.01054 0.89 0.000230035 0.000180586 0.0139227 0.0113193 -1 -1 -1 -1 50 2890 36 6.99608e+06 250167 902133. 3121.57 14.44 0.15015 0.124873 28642 213929 -1 2144 24 2068 2921 263495 55933 4.65814 4.65814 -157.361 -4.65814 0 0 1.08113e+06 3740.92 0.42 0.07 0.20 -1 -1 0.42 0.0172905 0.0152266 100 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 8.30 vpr 64.95 MiB -1 -1 0.19 21532 1 0.03 -1 -1 33864 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66512 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 26.0 MiB 1.08 1037 11456 4156 5041 2259 65.0 MiB 0.08 0.00 4.93306 -166.082 -4.93306 4.93306 0.90 0.000262526 0.000202043 0.0186915 0.0153197 -1 -1 -1 -1 44 3965 44 6.99608e+06 250167 787024. 2723.27 3.64 0.105862 0.0886386 27778 195446 -1 2622 24 2664 3735 313256 64961 4.90074 4.90074 -173.084 -4.90074 0 0 997811. 3452.63 0.38 0.09 0.18 -1 -1 0.38 0.0184243 0.0160443 109 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 7.28 vpr 64.11 MiB -1 -1 0.18 21232 1 0.04 -1 -1 33640 -1 -1 11 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65652 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 25.5 MiB 1.57 644 12241 5168 6711 362 64.1 MiB 0.07 0.00 3.78577 -113.025 -3.78577 3.78577 0.89 0.000182515 0.00014383 0.0161813 0.0130893 -1 -1 -1 -1 44 2214 37 6.99608e+06 161872 787024. 2723.27 2.18 0.0695377 0.0576806 27778 195446 -1 1516 21 1065 1330 98779 22991 3.09311 3.09311 -108.774 -3.09311 0 0 997811. 3452.63 0.38 0.04 0.18 -1 -1 0.38 0.0127442 0.0112749 69 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 6.35 vpr 64.13 MiB -1 -1 0.17 21216 1 0.03 -1 -1 34140 -1 -1 13 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65672 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 25.6 MiB 1.18 467 10956 2929 5982 2045 64.1 MiB 0.05 0.00 3.36359 -99.0047 -3.36359 3.36359 0.85 0.000158666 0.000125384 0.0126539 0.010259 -1 -1 -1 -1 48 1458 23 6.99608e+06 191304 865456. 2994.66 1.95 0.0582441 0.0484115 28354 207349 -1 1149 20 1037 1562 107224 27427 2.97667 2.97667 -103.555 -2.97667 0 0 1.05005e+06 3633.38 0.36 0.04 0.21 -1 -1 0.36 0.0101151 0.0089114 57 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 7.57 vpr 64.48 MiB -1 -1 0.19 21632 1 0.03 -1 -1 34004 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66032 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 25.6 MiB 1.07 775 12754 5312 6863 579 64.5 MiB 0.07 0.00 4.29802 -140.072 -4.29802 4.29802 0.85 0.000204377 0.000161654 0.0178208 0.0144354 -1 -1 -1 -1 48 2804 25 6.99608e+06 220735 865456. 2994.66 3.15 0.0793132 0.0658263 28354 207349 -1 2110 22 1910 2568 220393 52114 4.7131 4.7131 -155.264 -4.7131 0 0 1.05005e+06 3633.38 0.40 0.07 0.20 -1 -1 0.40 0.0153058 0.0133453 88 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 7.90 vpr 64.57 MiB -1 -1 0.19 21500 1 0.03 -1 -1 33896 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66120 32 32 356 289 1 217 79 17 17 289 -1 unnamed_device 25.8 MiB 2.09 1200 10050 2860 5275 1915 64.6 MiB 0.07 0.00 4.58812 -146.135 -4.58812 4.58812 0.91 0.00020739 0.000163718 0.0147191 0.0119419 -1 -1 -1 -1 44 3098 28 6.99608e+06 220735 787024. 2723.27 2.24 0.0757196 0.0627811 27778 195446 -1 2424 23 1470 2021 162241 32994 4.01671 4.01671 -141.1 -4.01671 0 0 997811. 3452.63 0.38 0.06 0.18 -1 -1 0.38 0.0163921 0.0144028 95 56 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 8.41 vpr 64.50 MiB -1 -1 0.20 21472 1 0.04 -1 -1 33480 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66044 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 25.6 MiB 0.59 875 12156 5059 6582 515 64.5 MiB 0.08 0.00 4.64591 -137.502 -4.64591 4.64591 0.91 0.000233738 0.000186553 0.0195666 0.016 -1 -1 -1 -1 40 3001 48 6.99608e+06 250167 706193. 2443.58 4.33 0.107766 0.09098 26914 176310 -1 2413 25 2029 3465 277166 62434 5.02705 5.02705 -153.157 -5.02705 0 0 926341. 3205.33 0.35 0.08 0.16 -1 -1 0.35 0.0169699 0.0148645 83 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 9.71 vpr 64.50 MiB -1 -1 0.19 21560 1 0.04 -1 -1 34144 -1 -1 16 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66052 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 25.7 MiB 3.27 811 12860 4243 6447 2170 64.5 MiB 0.08 0.00 3.96842 -107.825 -3.96842 3.96842 0.89 0.000192253 0.000151904 0.0174685 0.0141633 -1 -1 -1 -1 46 2449 28 6.99608e+06 235451 828058. 2865.25 2.87 0.0822414 0.0687165 28066 200906 -1 1888 22 1521 2302 187777 40324 3.20841 3.20841 -110.256 -3.20841 0 0 1.01997e+06 3529.29 0.42 0.06 0.19 -1 -1 0.42 0.0147234 0.0130117 87 52 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 10.11 vpr 63.73 MiB -1 -1 0.18 21600 1 0.04 -1 -1 34008 -1 -1 15 27 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65260 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 25.2 MiB 2.75 489 7669 3106 4069 494 63.7 MiB 0.04 0.00 3.4808 -102.051 -3.4808 3.4808 0.89 0.000168562 0.00013547 0.00935892 0.00757517 -1 -1 -1 -1 38 2144 42 6.99608e+06 220735 678818. 2348.85 3.97 0.0716868 0.0599711 26626 170182 -1 1355 22 1106 1621 145910 35143 3.53956 3.53956 -112.677 -3.53956 0 0 902133. 3121.57 0.36 0.05 0.16 -1 -1 0.36 0.0128824 0.0113329 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 8.58 vpr 64.89 MiB -1 -1 0.20 21724 1 0.04 -1 -1 33904 -1 -1 18 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66444 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 26.1 MiB 1.24 1332 12186 3960 6618 1608 64.9 MiB 0.09 0.00 4.21393 -148.472 -4.21393 4.21393 0.90 0.000237591 0.000188159 0.0194166 0.0157682 -1 -1 -1 -1 46 3802 31 6.99608e+06 264882 828058. 2865.25 3.75 0.103829 0.087101 28066 200906 -1 3098 25 2477 3827 319015 62018 4.29751 4.29751 -154.976 -4.29751 0 0 1.01997e+06 3529.29 0.37 0.09 0.18 -1 -1 0.37 0.0199397 0.017285 111 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 8.67 vpr 64.78 MiB -1 -1 0.21 21544 1 0.04 -1 -1 34028 -1 -1 17 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66332 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 26.0 MiB 1.20 986 5756 1263 4208 285 64.8 MiB 0.05 0.00 5.65424 -162.981 -5.65424 5.65424 0.87 0.00023144 0.000184487 0.0103291 0.00861821 -1 -1 -1 -1 40 3074 34 6.99608e+06 250167 706193. 2443.58 3.99 0.087838 0.0743683 26914 176310 -1 2702 28 2647 3753 480560 145673 5.2637 5.2637 -178.943 -5.2637 0 0 926341. 3205.33 0.34 0.12 0.16 -1 -1 0.34 0.0174312 0.0151086 100 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 6.80 vpr 64.49 MiB -1 -1 0.18 21492 1 0.03 -1 -1 33908 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66036 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 25.6 MiB 1.12 966 12030 5173 6617 240 64.5 MiB 0.07 0.00 3.99123 -142.235 -3.99123 3.99123 0.87 0.000198013 0.000156991 0.0165506 0.0133967 -1 -1 -1 -1 48 2359 23 6.99608e+06 206020 865456. 2994.66 2.25 0.0735164 0.0608419 28354 207349 -1 2012 20 1550 1970 181291 38605 3.6147 3.6147 -137.523 -3.6147 0 0 1.05005e+06 3633.38 0.39 0.05 0.19 -1 -1 0.39 0.0130728 0.0114496 91 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 6.85 vpr 64.59 MiB -1 -1 0.19 21548 1 0.04 -1 -1 33836 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66140 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 25.8 MiB 0.90 812 13768 5924 7391 453 64.6 MiB 0.09 0.00 4.14137 -126.485 -4.14137 4.14137 0.91 0.000220824 0.000160364 0.0199956 0.0161095 -1 -1 -1 -1 46 2566 28 6.99608e+06 220735 828058. 2865.25 2.39 0.0767439 0.0634984 28066 200906 -1 1927 20 1267 1756 117851 26945 3.76272 3.76272 -126.629 -3.76272 0 0 1.01997e+06 3529.29 0.39 0.06 0.18 -1 -1 0.39 0.0163286 0.0145242 81 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 16.72 vpr 64.64 MiB -1 -1 0.19 21888 1 0.04 -1 -1 33864 -1 -1 17 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66188 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 25.9 MiB 2.97 911 12120 4489 5478 2153 64.6 MiB 0.08 0.00 4.14153 -124.204 -4.14153 4.14153 0.88 0.00022142 0.000172563 0.0183256 0.0148013 -1 -1 -1 -1 42 3397 39 6.99608e+06 250167 744469. 2576.02 10.28 0.142158 0.117116 27202 183097 -1 2404 27 2287 3242 323886 88583 4.05342 4.05342 -136.821 -4.05342 0 0 949917. 3286.91 0.35 0.09 0.17 -1 -1 0.35 0.0179834 0.0156583 97 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 8.50 vpr 64.36 MiB -1 -1 0.18 21584 1 0.04 -1 -1 33908 -1 -1 18 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65904 30 32 325 268 1 199 80 17 17 289 -1 unnamed_device 25.6 MiB 2.06 860 13496 5767 7196 533 64.4 MiB 0.08 0.00 3.54615 -113.081 -3.54615 3.54615 0.90 0.000195332 0.000153228 0.0177338 0.0142389 -1 -1 -1 -1 46 2607 47 6.99608e+06 264882 828058. 2865.25 2.92 0.0810817 0.0667399 28066 200906 -1 1990 23 1472 2372 171331 37082 3.14741 3.14741 -111.674 -3.14741 0 0 1.01997e+06 3529.29 0.38 0.05 0.18 -1 -1 0.38 0.014719 0.0129018 89 51 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 9.19 vpr 64.41 MiB -1 -1 0.21 21532 1 0.04 -1 -1 33848 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65956 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 25.5 MiB 1.05 937 9042 3197 4114 1731 64.4 MiB 0.06 0.00 4.39601 -145.139 -4.39601 4.39601 0.92 0.000216088 0.000172129 0.0146907 0.0121024 -1 -1 -1 -1 46 3268 28 6.99608e+06 206020 828058. 2865.25 4.57 0.0848151 0.0712487 28066 200906 -1 2357 20 1918 2884 223863 48793 4.09442 4.09442 -146.658 -4.09442 0 0 1.01997e+06 3529.29 0.39 0.06 0.18 -1 -1 0.39 0.0150085 0.0132932 88 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 10.31 vpr 64.73 MiB -1 -1 0.19 21412 1 0.03 -1 -1 33924 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66280 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 25.8 MiB 3.04 985 11260 4054 5703 1503 64.7 MiB 0.08 0.00 3.75091 -129.281 -3.75091 3.75091 0.91 0.000220133 0.000173359 0.0174726 0.0141696 -1 -1 -1 -1 40 3212 32 6.99608e+06 235451 706193. 2443.58 3.81 0.0856737 0.0708383 26914 176310 -1 2417 21 2274 3028 261524 58194 3.37457 3.37457 -134.662 -3.37457 0 0 926341. 3205.33 0.35 0.08 0.16 -1 -1 0.35 0.0170174 0.0150198 103 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 7.65 vpr 64.04 MiB -1 -1 0.19 21524 1 0.03 -1 -1 34080 -1 -1 14 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65580 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 25.3 MiB 2.59 580 10345 3835 4839 1671 64.0 MiB 0.06 0.00 4.0374 -114.573 -4.0374 4.0374 0.86 0.000164501 0.000129458 0.012638 0.010193 -1 -1 -1 -1 40 1759 25 6.99608e+06 206020 706193. 2443.58 1.76 0.0605921 0.0498926 26914 176310 -1 1521 22 1454 1851 189965 51937 3.55392 3.55392 -121.421 -3.55392 0 0 926341. 3205.33 0.35 0.06 0.16 -1 -1 0.35 0.0119395 0.0104794 70 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 7.19 vpr 64.24 MiB -1 -1 0.18 21600 1 0.03 -1 -1 33984 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65780 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 25.7 MiB 1.31 710 11200 4654 6133 413 64.2 MiB 0.06 0.00 4.05854 -127.727 -4.05854 4.05854 0.87 0.00019001 0.000148564 0.0147609 0.0118215 -1 -1 -1 -1 48 2075 27 6.99608e+06 206020 865456. 2994.66 2.56 0.074308 0.0615765 28354 207349 -1 1685 19 1263 1746 156420 35580 3.82726 3.82726 -130.05 -3.82726 0 0 1.05005e+06 3633.38 0.39 0.05 0.19 -1 -1 0.39 0.0118219 0.0104047 81 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 6.65 vpr 64.45 MiB -1 -1 0.18 21492 1 0.03 -1 -1 33816 -1 -1 15 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65996 31 32 326 261 1 192 78 17 17 289 -1 unnamed_device 25.6 MiB 0.90 833 12196 4708 5911 1577 64.4 MiB 0.08 0.00 4.19283 -126.892 -4.19283 4.19283 0.87 0.000196619 0.000155196 0.017176 0.0138569 -1 -1 -1 -1 44 2512 43 6.99608e+06 220735 787024. 2723.27 2.35 0.085289 0.0706124 27778 195446 -1 1898 17 1425 2036 154007 34405 3.80592 3.80592 -132.202 -3.80592 0 0 997811. 3452.63 0.37 0.05 0.19 -1 -1 0.37 0.0122288 0.0108282 80 33 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 13.34 vpr 63.71 MiB -1 -1 0.17 21368 1 0.03 -1 -1 33972 -1 -1 13 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65236 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 25.2 MiB 1.45 625 8909 3845 4668 396 63.7 MiB 0.05 0.00 3.79267 -110.13 -3.79267 3.79267 0.90 0.000158603 0.000124275 0.0112549 0.00912808 -1 -1 -1 -1 40 1962 39 6.99608e+06 191304 706193. 2443.58 8.45 0.113735 0.0938459 26914 176310 -1 1629 22 1285 1655 160438 38052 3.45001 3.45001 -112.543 -3.45001 0 0 926341. 3205.33 0.32 0.06 0.15 -1 -1 0.32 0.0136599 0.0120521 68 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 13.97 vpr 63.93 MiB -1 -1 0.16 21240 1 0.03 -1 -1 33776 -1 -1 12 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65460 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 25.4 MiB 0.95 737 11436 4762 6383 291 63.9 MiB 0.07 0.00 4.0773 -124.169 -4.0773 4.0773 0.88 0.000188188 0.000150951 0.0143771 0.01165 -1 -1 -1 -1 40 2219 42 6.99608e+06 176588 706193. 2443.58 9.62 0.120889 0.0999352 26914 176310 -1 1820 24 1621 2190 200491 42687 3.24121 3.24121 -120.639 -3.24121 0 0 926341. 3205.33 0.34 0.06 0.16 -1 -1 0.34 0.0131138 0.0114514 73 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 7.34 vpr 64.58 MiB -1 -1 0.20 21532 1 0.04 -1 -1 33568 -1 -1 18 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66128 31 32 373 300 1 231 81 17 17 289 -1 unnamed_device 25.8 MiB 1.20 983 14606 5438 6820 2348 64.6 MiB 0.09 0.00 4.38351 -142.434 -4.38351 4.38351 0.91 0.000221213 0.000175858 0.0221787 0.0181279 -1 -1 -1 -1 44 3308 29 6.99608e+06 264882 787024. 2723.27 2.59 0.0957156 0.0804067 27778 195446 -1 2284 22 2017 2674 212903 46643 3.91555 3.91555 -141.293 -3.91555 0 0 997811. 3452.63 0.40 0.07 0.17 -1 -1 0.40 0.0173901 0.0152237 103 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 7.02 vpr 64.09 MiB -1 -1 0.18 21520 1 0.04 -1 -1 33896 -1 -1 13 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65628 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 25.5 MiB 0.94 724 12236 4456 5440 2340 64.1 MiB 0.09 0.00 3.48012 -106.772 -3.48012 3.48012 0.95 0.000168293 0.000132204 0.0194142 0.015623 -1 -1 -1 -1 40 2354 32 6.99608e+06 191304 706193. 2443.58 2.56 0.0714861 0.0590759 26914 176310 -1 1973 27 1536 2142 255746 49653 3.28462 3.28462 -115.252 -3.28462 0 0 926341. 3205.33 0.35 0.07 0.17 -1 -1 0.35 0.013859 0.0120546 71 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 7.17 vpr 64.46 MiB -1 -1 0.19 21512 1 0.04 -1 -1 34072 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66012 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 25.5 MiB 1.50 1045 14275 6069 7825 381 64.5 MiB 0.09 0.00 3.51899 -121.288 -3.51899 3.51899 0.88 0.000231565 0.000188562 0.0196182 0.0158497 -1 -1 -1 -1 38 2528 20 6.99608e+06 220735 678818. 2348.85 2.37 0.0847683 0.0709587 26626 170182 -1 2176 20 1461 1984 153571 32028 3.28376 3.28376 -123.98 -3.28376 0 0 902133. 3121.57 0.33 0.05 0.15 -1 -1 0.33 0.0141429 0.012478 91 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 9.05 vpr 64.88 MiB -1 -1 0.22 21784 1 0.03 -1 -1 33892 -1 -1 20 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66440 31 32 396 325 1 254 83 17 17 289 -1 unnamed_device 26.0 MiB 2.53 1199 11603 3562 6376 1665 64.9 MiB 0.08 0.00 4.92082 -166.246 -4.92082 4.92082 0.92 0.000226365 0.000178103 0.0179598 0.0145059 -1 -1 -1 -1 44 3396 49 6.99608e+06 294314 787024. 2723.27 2.93 0.0994583 0.0825874 27778 195446 -1 2597 20 2345 3296 248918 52068 4.70579 4.70579 -163.224 -4.70579 0 0 997811. 3452.63 0.37 0.07 0.19 -1 -1 0.37 0.0168987 0.0149109 113 91 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 9.20 vpr 63.92 MiB -1 -1 0.18 21500 1 0.03 -1 -1 33724 -1 -1 12 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65452 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 25.4 MiB 2.22 739 9516 3925 5290 301 63.9 MiB 0.06 0.00 3.40734 -116.434 -3.40734 3.40734 0.89 0.000186367 0.000146081 0.0138027 0.011223 -1 -1 -1 -1 46 2552 39 6.99608e+06 176588 828058. 2865.25 3.54 0.0784392 0.0654359 28066 200906 -1 1830 20 1531 2042 184445 39904 3.54231 3.54231 -116.338 -3.54231 0 0 1.01997e+06 3529.29 0.39 0.06 0.17 -1 -1 0.39 0.0127363 0.0111739 81 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 9.04 vpr 64.20 MiB -1 -1 0.17 21592 1 0.03 -1 -1 34000 -1 -1 11 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65744 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 25.5 MiB 0.86 715 9871 2522 5750 1599 64.2 MiB 0.06 0.00 3.90682 -124.154 -3.90682 3.90682 0.90 0.00017208 0.000135425 0.0129961 0.0105654 -1 -1 -1 -1 38 2484 49 6.99608e+06 161872 678818. 2348.85 4.75 0.0764737 0.0632143 26626 170182 -1 1619 24 1408 1990 124637 31771 3.35457 3.35457 -120.004 -3.35457 0 0 902133. 3121.57 0.33 0.05 0.15 -1 -1 0.33 0.0145373 0.0126812 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 8.76 vpr 64.40 MiB -1 -1 0.19 21512 1 0.03 -1 -1 33764 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65944 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 25.5 MiB 2.40 781 10370 4270 5693 407 64.4 MiB 0.06 0.00 4.09738 -127.458 -4.09738 4.09738 0.90 0.000195507 0.00015401 0.0145559 0.0118067 -1 -1 -1 -1 40 2413 31 6.99608e+06 206020 706193. 2443.58 2.93 0.0750763 0.0620484 26914 176310 -1 1992 23 1736 2478 191462 45425 3.87526 3.87526 -134.613 -3.87526 0 0 926341. 3205.33 0.35 0.06 0.16 -1 -1 0.35 0.0146269 0.0128141 79 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 7.63 vpr 64.53 MiB -1 -1 0.19 21600 1 0.03 -1 -1 33704 -1 -1 18 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66080 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 25.6 MiB 2.07 781 11233 4679 5976 578 64.5 MiB 0.07 0.00 3.78147 -113.144 -3.78147 3.78147 0.93 0.000224225 0.000150325 0.0154204 0.01249 -1 -1 -1 -1 44 2558 43 6.99608e+06 264882 787024. 2723.27 2.07 0.0788434 0.0650539 27778 195446 -1 1831 23 1313 1886 138551 30777 3.28551 3.28551 -106.486 -3.28551 0 0 997811. 3452.63 0.37 0.05 0.19 -1 -1 0.37 0.0152416 0.0134454 88 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 10.41 vpr 64.73 MiB -1 -1 0.21 21616 1 0.04 -1 -1 34024 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66280 32 32 393 312 1 234 80 17 17 289 -1 unnamed_device 25.8 MiB 0.94 1091 9196 3199 4253 1744 64.7 MiB 0.07 0.00 5.35159 -170.536 -5.35159 5.35159 0.92 0.00025624 0.00020845 0.0152279 0.0124842 -1 -1 -1 -1 38 3606 29 6.99608e+06 235451 678818. 2348.85 6.01 0.0869296 0.0724496 26626 170182 -1 2963 22 2472 3677 328041 64783 5.08154 5.08154 -176.159 -5.08154 0 0 902133. 3121.57 0.34 0.08 0.17 -1 -1 0.34 0.0167138 0.0146986 105 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 7.17 vpr 63.76 MiB -1 -1 0.18 21232 1 0.03 -1 -1 33616 -1 -1 13 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65288 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 25.4 MiB 2.15 501 10476 4309 5764 403 63.8 MiB 0.06 0.00 3.34663 -90.271 -3.34663 3.34663 0.88 0.000159242 0.000125764 0.0120633 0.00975657 -1 -1 -1 -1 42 1777 25 6.99608e+06 191304 744469. 2576.02 1.63 0.054677 0.0452649 27202 183097 -1 1367 22 1037 1615 111926 27569 3.00097 3.00097 -97.4931 -3.00097 0 0 949917. 3286.91 0.36 0.04 0.17 -1 -1 0.36 0.0105527 0.00920956 54 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 8.04 vpr 64.95 MiB -1 -1 0.19 21896 1 0.04 -1 -1 33784 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66508 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 26.1 MiB 1.95 1108 15273 5294 7598 2381 64.9 MiB 0.10 0.00 4.76553 -162.292 -4.76553 4.76553 0.87 0.000228611 0.000179929 0.0219153 0.0176357 -1 -1 -1 -1 44 3594 30 6.99608e+06 294314 787024. 2723.27 2.60 0.0995072 0.0830339 27778 195446 -1 2463 21 2299 2874 212343 45589 4.8872 4.8872 -169.312 -4.8872 0 0 997811. 3452.63 0.37 0.07 0.19 -1 -1 0.37 0.0180082 0.0159767 116 90 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 7.32 vpr 64.61 MiB -1 -1 0.18 21344 1 0.04 -1 -1 33720 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66156 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 25.7 MiB 1.06 1251 14700 5946 7371 1383 64.6 MiB 0.09 0.00 4.39022 -162.789 -4.39022 4.39022 0.87 0.000208388 0.000163706 0.0207775 0.0165008 -1 -1 -1 -1 46 3165 23 6.99608e+06 235451 828058. 2865.25 2.84 0.0844643 0.0697909 28066 200906 -1 2578 20 2819 3499 286015 57172 4.20235 4.20235 -164.081 -4.20235 0 0 1.01997e+06 3529.29 0.38 0.07 0.17 -1 -1 0.38 0.0145682 0.0128223 110 96 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 7.80 vpr 64.66 MiB -1 -1 0.19 21664 1 0.04 -1 -1 34012 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66208 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 25.9 MiB 1.77 938 11571 4789 6322 460 64.7 MiB 0.07 0.00 3.68917 -121.181 -3.68917 3.68917 0.89 0.000209325 0.000164815 0.0170271 0.0137672 -1 -1 -1 -1 44 2997 38 6.99608e+06 220735 787024. 2723.27 2.54 0.0869407 0.0720061 27778 195446 -1 2021 22 1573 2077 140143 33620 3.32751 3.32751 -120.003 -3.32751 0 0 997811. 3452.63 0.38 0.05 0.17 -1 -1 0.38 0.0154006 0.0134724 94 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 10.12 vpr 64.61 MiB -1 -1 0.20 21888 1 0.04 -1 -1 34152 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66156 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 25.8 MiB 1.03 990 12078 4723 5862 1493 64.6 MiB 0.08 0.00 5.88882 -169.671 -5.88882 5.88882 0.89 0.000232058 0.000184128 0.0194237 0.015824 -1 -1 -1 -1 46 3428 29 6.99608e+06 220735 828058. 2865.25 5.50 0.102191 0.0859768 28066 200906 -1 2131 22 1989 2876 203116 44964 5.2634 5.2634 -163.518 -5.2634 0 0 1.01997e+06 3529.29 0.39 0.07 0.18 -1 -1 0.39 0.0196951 0.0175241 98 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 5.90 vpr 63.74 MiB -1 -1 0.17 21316 1 0.03 -1 -1 33852 -1 -1 12 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65268 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 25.1 MiB 0.81 491 10769 4564 5875 330 63.7 MiB 0.05 0.00 2.5351 -91.4253 -2.5351 2.5351 0.88 0.0001403 0.000110231 0.0113674 0.00911776 -1 -1 -1 -1 38 1623 24 6.99608e+06 176588 678818. 2348.85 1.83 0.0613351 0.0511744 26626 170182 -1 1243 20 866 1091 98351 21996 2.47467 2.47467 -92.1644 -2.47467 0 0 902133. 3121.57 0.32 0.03 0.15 -1 -1 0.32 0.00930485 0.00813943 53 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 9.61 vpr 64.22 MiB -1 -1 0.16 21364 1 0.03 -1 -1 33708 -1 -1 14 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65764 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 25.4 MiB 4.18 632 10636 4449 5807 380 64.2 MiB 0.06 0.00 3.79502 -118.311 -3.79502 3.79502 0.86 0.000172742 0.000136015 0.0132842 0.0106728 -1 -1 -1 -1 38 1959 24 6.99608e+06 206020 678818. 2348.85 2.26 0.0621461 0.051073 26626 170182 -1 1438 22 1176 1825 151610 32402 3.30746 3.30746 -120.098 -3.30746 0 0 902133. 3121.57 0.34 0.05 0.15 -1 -1 0.34 0.0124889 0.0109254 68 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 15.98 vpr 64.22 MiB -1 -1 0.18 21616 1 0.03 -1 -1 33612 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65760 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 25.4 MiB 0.74 759 10756 3879 5476 1401 64.2 MiB 0.07 0.00 3.9181 -124.027 -3.9181 3.9181 0.94 0.00019012 0.000149853 0.0141791 0.0115179 -1 -1 -1 -1 38 3158 42 6.99608e+06 250167 678818. 2348.85 11.84 0.130702 0.108975 26626 170182 -1 2021 24 1593 2546 236122 49173 3.77071 3.77071 -138.08 -3.77071 0 0 902133. 3121.57 0.33 0.06 0.15 -1 -1 0.33 0.0143208 0.0125203 78 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 10.21 vpr 63.54 MiB -1 -1 0.16 21320 1 0.03 -1 -1 33964 -1 -1 16 25 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65064 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 24.9 MiB 0.84 474 9649 4023 4847 779 63.5 MiB 0.04 0.00 3.40263 -78.2884 -3.40263 3.40263 0.89 0.000149419 0.000108415 0.0104698 0.0084566 -1 -1 -1 -1 38 1451 30 6.99608e+06 235451 678818. 2348.85 6.17 0.102053 0.0843493 26626 170182 -1 1111 25 942 1309 74745 18604 3.07717 3.07717 -78.9965 -3.07717 0 0 902133. 3121.57 0.34 0.03 0.15 -1 -1 0.34 0.0102151 0.00886575 59 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 12.63 vpr 64.51 MiB -1 -1 0.19 21584 1 0.03 -1 -1 33800 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66060 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 25.8 MiB 3.93 1081 13206 5184 6272 1750 64.5 MiB 0.09 0.00 3.9338 -132.793 -3.9338 3.9338 0.88 0.000217167 0.000172102 0.0190465 0.0154592 -1 -1 -1 -1 40 3653 23 6.99608e+06 250167 706193. 2443.58 5.24 0.0911605 0.0761417 26914 176310 -1 3103 24 2274 3382 383840 79750 4.68512 4.68512 -148.279 -4.68512 0 0 926341. 3205.33 0.34 0.09 0.15 -1 -1 0.34 0.0168464 0.0146058 103 72 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 9.95 vpr 64.66 MiB -1 -1 0.21 21948 1 0.04 -1 -1 33696 -1 -1 19 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66216 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 25.7 MiB 2.80 1014 9872 4028 5433 411 64.7 MiB 0.07 0.00 4.45145 -145.194 -4.45145 4.45145 0.88 0.000231266 0.000181953 0.0157473 0.0128034 -1 -1 -1 -1 46 3229 45 6.99608e+06 279598 828058. 2865.25 3.62 0.0960076 0.0797522 28066 200906 -1 2235 22 1873 2532 179334 42457 4.32971 4.32971 -151.097 -4.32971 0 0 1.01997e+06 3529.29 0.37 0.06 0.19 -1 -1 0.37 0.0175642 0.01553 117 90 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_001.v common 10.99 vpr 63.99 MiB -1 -1 0.28 21912 14 0.31 -1 -1 36820 -1 -1 18 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65524 32 32 277 309 1 206 82 17 17 289 -1 unnamed_device 25.2 MiB 2.02 1186 12542 3264 7587 1691 64.0 MiB 0.09 0.00 8.71839 -177.395 -8.71839 8.71839 0.90 0.000287443 0.000228587 0.0237796 0.0193649 -1 -1 -1 -1 38 3483 48 6.79088e+06 242496 678818. 2348.85 5.12 0.128618 0.10809 25966 169698 -1 2756 15 1242 3582 189198 42544 7.79745 7.79745 -167.082 -7.79745 0 0 902133. 3121.57 0.33 0.06 0.15 -1 -1 0.33 0.017996 0.0162659 129 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_002.v common 9.57 vpr 64.20 MiB -1 -1 0.30 21924 14 0.35 -1 -1 36508 -1 -1 20 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65736 30 32 272 304 1 199 82 17 17 289 -1 unnamed_device 25.4 MiB 2.74 1105 6490 1416 4592 482 64.2 MiB 0.05 0.00 7.86897 -158.546 -7.86897 7.86897 0.87 0.000272576 0.000216484 0.0135103 0.0112111 -1 -1 -1 -1 36 3118 40 6.79088e+06 269440 648988. 2245.63 3.11 0.117801 0.0994282 25390 158009 -1 2591 18 1263 3297 200863 45222 7.24659 7.24659 -159.324 -7.24659 0 0 828058. 2865.25 0.31 0.06 0.15 -1 -1 0.31 0.0196887 0.0176967 125 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_003.v common 9.37 vpr 64.09 MiB -1 -1 0.32 21668 11 0.28 -1 -1 36332 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65624 32 32 280 312 1 199 84 17 17 289 -1 unnamed_device 25.5 MiB 2.60 1230 6489 1446 4360 683 64.1 MiB 0.05 0.00 7.04868 -149.017 -7.04868 7.04868 0.89 0.000329953 0.000271168 0.0135378 0.011218 -1 -1 -1 -1 36 3170 20 6.79088e+06 269440 648988. 2245.63 3.04 0.096753 0.0808499 25390 158009 -1 2767 17 1179 3648 200212 45111 6.09953 6.09953 -144.627 -6.09953 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0188468 0.0169579 131 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_004.v common 8.35 vpr 64.04 MiB -1 -1 0.28 21860 12 0.40 -1 -1 36988 -1 -1 23 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65576 29 32 275 307 1 201 84 17 17 289 -1 unnamed_device 25.2 MiB 1.52 1098 14175 4215 7544 2416 64.0 MiB 0.10 0.00 7.26911 -142.27 -7.26911 7.26911 0.88 0.000330691 0.000271665 0.0281569 0.0229783 -1 -1 -1 -1 38 3090 27 6.79088e+06 309856 678818. 2348.85 2.88 0.123797 0.104484 25966 169698 -1 2378 18 1247 3554 182390 41617 6.58078 6.58078 -137.462 -6.58078 0 0 902133. 3121.57 0.34 0.06 0.15 -1 -1 0.34 0.0214384 0.0193743 137 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_005.v common 11.09 vpr 64.48 MiB -1 -1 0.31 21968 13 0.33 -1 -1 36436 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66028 32 32 302 334 1 233 86 17 17 289 -1 unnamed_device 25.7 MiB 1.70 1390 8591 1959 5860 772 64.5 MiB 0.07 0.00 7.78026 -168.052 -7.78026 7.78026 0.86 0.000322363 0.000251282 0.0185904 0.0151703 -1 -1 -1 -1 38 4161 45 6.79088e+06 296384 678818. 2348.85 5.64 0.132469 0.111539 25966 169698 -1 3297 19 1624 4586 266966 57831 6.63466 6.63466 -162.239 -6.63466 0 0 902133. 3121.57 0.33 0.08 0.15 -1 -1 0.33 0.0217482 0.0194837 149 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_006.v common 8.72 vpr 64.27 MiB -1 -1 0.30 21936 13 0.31 -1 -1 36512 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65812 32 32 292 324 1 217 84 17 17 289 -1 unnamed_device 25.3 MiB 1.86 1328 6672 1413 4852 407 64.3 MiB 0.06 0.00 7.49919 -157.909 -7.49919 7.49919 0.86 0.000328391 0.000264037 0.0152012 0.0125788 -1 -1 -1 -1 46 3288 17 6.79088e+06 269440 828058. 2865.25 2.97 0.0993879 0.0836697 27406 200422 -1 2768 17 1320 3932 204231 45167 6.38057 6.38057 -147.675 -6.38057 0 0 1.01997e+06 3529.29 0.38 0.06 0.19 -1 -1 0.38 0.0203643 0.0183946 137 198 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_007.v common 6.56 vpr 63.29 MiB -1 -1 0.26 21428 12 0.23 -1 -1 36480 -1 -1 21 27 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64804 27 32 229 261 1 171 80 17 17 289 -1 unnamed_device 24.8 MiB 1.77 838 8336 2337 5127 872 63.3 MiB 0.05 0.00 6.93882 -125.075 -6.93882 6.93882 0.87 0.000226226 0.000179739 0.0139754 0.0114951 -1 -1 -1 -1 28 2811 29 6.79088e+06 282912 531479. 1839.03 1.34 0.059145 0.0497914 23950 126010 -1 2189 19 1390 3147 183913 43797 6.16912 6.16912 -123.368 -6.16912 0 0 648988. 2245.63 0.26 0.06 0.11 -1 -1 0.26 0.0175802 0.0155209 105 150 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_008.v common 21.67 vpr 63.63 MiB -1 -1 0.24 21452 12 0.24 -1 -1 36592 -1 -1 17 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65156 31 32 229 261 1 184 80 17 17 289 -1 unnamed_device 25.0 MiB 2.70 959 11432 3848 5561 2023 63.6 MiB 0.07 0.00 6.08275 -133.062 -6.08275 6.08275 0.91 0.000229504 0.000181406 0.0180747 0.0145928 -1 -1 -1 -1 40 2532 17 6.79088e+06 229024 706193. 2443.58 15.29 0.142261 0.118043 26254 175826 -1 2353 17 1096 2931 202158 44139 5.49411 5.49411 -132.697 -5.49411 0 0 926341. 3205.33 0.35 0.06 0.16 -1 -1 0.35 0.0159295 0.0142705 104 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_009.v common 10.76 vpr 63.79 MiB -1 -1 0.26 21744 12 0.20 -1 -1 36280 -1 -1 20 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65316 31 32 235 267 1 195 83 17 17 289 -1 unnamed_device 25.2 MiB 4.31 1109 11783 3162 6398 2223 63.8 MiB 0.08 0.00 7.00732 -147.482 -7.00732 7.00732 0.86 0.000241744 0.000192027 0.0190997 0.0154597 -1 -1 -1 -1 38 2960 20 6.79088e+06 269440 678818. 2348.85 2.91 0.0861854 0.0718099 25966 169698 -1 2417 17 1175 2973 165242 36496 6.1825 6.1825 -143.761 -6.1825 0 0 902133. 3121.57 0.34 0.06 0.15 -1 -1 0.34 0.0171894 0.0154923 113 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_010.v common 16.05 vpr 63.75 MiB -1 -1 0.26 21748 13 0.24 -1 -1 36604 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65280 32 32 250 282 1 180 80 17 17 289 -1 unnamed_device 25.1 MiB 2.44 887 9196 2678 4545 1973 63.8 MiB 0.06 0.00 7.40889 -158.515 -7.40889 7.40889 0.87 0.000248599 0.000196636 0.0168347 0.0136865 -1 -1 -1 -1 36 3066 39 6.79088e+06 215552 648988. 2245.63 9.97 0.157398 0.131496 25390 158009 -1 2225 26 1268 3300 277010 95641 7.16043 7.16043 -162.331 -7.16043 0 0 828058. 2865.25 0.33 0.09 0.15 -1 -1 0.33 0.023691 0.0211057 107 156 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_011.v common 8.25 vpr 63.64 MiB -1 -1 0.26 21632 12 0.23 -1 -1 36524 -1 -1 19 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65164 30 32 216 248 1 160 81 17 17 289 -1 unnamed_device 24.8 MiB 1.87 683 10756 3090 5343 2323 63.6 MiB 0.06 0.00 7.23574 -141.324 -7.23574 7.23574 0.87 0.000264806 0.000218659 0.0170392 0.0139228 -1 -1 -1 -1 36 2333 41 6.79088e+06 255968 648988. 2245.63 2.79 0.0934235 0.0787063 25390 158009 -1 1748 15 917 2127 113478 29299 6.44778 6.44778 -140.479 -6.44778 0 0 828058. 2865.25 0.31 0.04 0.14 -1 -1 0.31 0.0141953 0.0128739 97 128 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_012.v common 11.81 vpr 63.59 MiB -1 -1 0.24 21660 12 0.20 -1 -1 36244 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65120 32 32 236 268 1 170 80 17 17 289 -1 unnamed_device 24.9 MiB 2.69 1001 7820 2636 3784 1400 63.6 MiB 0.06 0.00 6.03241 -146.623 -6.03241 6.03241 0.89 0.000231999 0.00018298 0.014248 0.0117325 -1 -1 -1 -1 36 3109 40 6.79088e+06 215552 648988. 2245.63 5.59 0.0948067 0.0796428 25390 158009 -1 2423 16 1077 2911 172059 37799 5.26271 5.26271 -143.485 -5.26271 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0152481 0.0137375 100 142 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_013.v common 9.22 vpr 63.94 MiB -1 -1 0.27 21752 13 0.33 -1 -1 37008 -1 -1 18 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65472 32 32 283 315 1 219 82 17 17 289 -1 unnamed_device 25.0 MiB 2.46 1233 12720 4130 6639 1951 63.9 MiB 0.09 0.00 7.97631 -171.858 -7.97631 7.97631 0.88 0.00030104 0.00023802 0.0258048 0.0208498 -1 -1 -1 -1 38 3289 21 6.79088e+06 242496 678818. 2348.85 2.99 0.123895 0.105222 25966 169698 -1 2546 18 1306 3376 186303 42354 6.66272 6.66272 -157.742 -6.66272 0 0 902133. 3121.57 0.33 0.06 0.15 -1 -1 0.33 0.0204695 0.0184654 132 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_014.v common 12.13 vpr 64.45 MiB -1 -1 0.29 21936 14 0.38 -1 -1 36816 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66000 32 32 303 335 1 229 86 17 17 289 -1 unnamed_device 25.7 MiB 1.93 1316 6701 1480 4957 264 64.5 MiB 0.06 0.00 8.93186 -185.128 -8.93186 8.93186 0.85 0.000319064 0.000255602 0.0152532 0.0127148 -1 -1 -1 -1 36 3741 28 6.79088e+06 296384 648988. 2245.63 6.29 0.170285 0.143416 25390 158009 -1 3074 28 1459 3681 372231 146165 8.07581 8.07581 -180.362 -8.07581 0 0 828058. 2865.25 0.35 0.12 0.14 -1 -1 0.35 0.0297504 0.0263417 151 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_015.v common 8.92 vpr 63.77 MiB -1 -1 0.22 21396 11 0.22 -1 -1 36492 -1 -1 21 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65300 29 32 225 257 1 177 82 17 17 289 -1 unnamed_device 25.1 MiB 2.89 908 8626 2180 6066 380 63.8 MiB 0.06 0.00 6.88418 -136.715 -6.88418 6.88418 0.88 0.000227949 0.000181536 0.0144159 0.0118619 -1 -1 -1 -1 34 3042 48 6.79088e+06 282912 618332. 2139.56 2.54 0.0919723 0.0769207 25102 150614 -1 2376 26 1191 2748 267336 97173 5.91503 5.91503 -133.401 -5.91503 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.0184581 0.0162691 105 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_016.v common 8.88 vpr 64.27 MiB -1 -1 0.29 21996 12 0.33 -1 -1 36268 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65808 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 25.6 MiB 1.64 1369 10813 2694 6226 1893 64.3 MiB 0.08 0.00 7.38162 -160.306 -7.38162 7.38162 0.90 0.000302763 0.000239968 0.0208452 0.0170958 -1 -1 -1 -1 38 3708 26 6.79088e+06 323328 678818. 2348.85 3.44 0.116597 0.0973851 25966 169698 -1 2967 17 1375 4182 225540 49634 6.53388 6.53388 -153.856 -6.53388 0 0 902133. 3121.57 0.33 0.07 0.15 -1 -1 0.33 0.0209487 0.018872 145 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_017.v common 9.20 vpr 64.32 MiB -1 -1 0.27 21888 14 0.31 -1 -1 36336 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65864 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 25.5 MiB 2.44 1236 11613 2985 6550 2078 64.3 MiB 0.08 0.00 8.17676 -170.064 -8.17676 8.17676 0.88 0.000290763 0.000230843 0.0222506 0.0179895 -1 -1 -1 -1 38 3415 19 6.79088e+06 269440 678818. 2348.85 3.07 0.10781 0.0906609 25966 169698 -1 2691 18 1293 3341 180323 40261 6.8496 6.8496 -161.568 -6.8496 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0195061 0.0175022 126 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_018.v common 8.30 vpr 63.68 MiB -1 -1 0.27 21628 12 0.19 -1 -1 35980 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65204 32 32 227 259 1 172 81 17 17 289 -1 unnamed_device 24.8 MiB 2.26 883 11281 4156 5456 1669 63.7 MiB 0.07 0.00 7.10207 -150.267 -7.10207 7.10207 0.88 0.000229076 0.000181081 0.0176714 0.0143358 -1 -1 -1 -1 38 2409 30 6.79088e+06 229024 678818. 2348.85 2.40 0.0907519 0.0758906 25966 169698 -1 1894 31 962 2582 283428 126209 5.93857 5.93857 -140.954 -5.93857 0 0 902133. 3121.57 0.33 0.09 0.14 -1 -1 0.33 0.0213464 0.0186701 104 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_019.v common 7.65 vpr 63.35 MiB -1 -1 0.21 21204 10 0.11 -1 -1 35792 -1 -1 12 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64868 30 32 175 207 1 131 74 17 17 289 -1 unnamed_device 24.6 MiB 2.29 693 4724 1073 3462 189 63.3 MiB 0.03 0.00 5.04691 -118.984 -5.04691 5.04691 0.91 0.000167117 0.000132098 0.00704648 0.00586283 -1 -1 -1 -1 34 2177 27 6.79088e+06 161664 618332. 2139.56 2.06 0.0569373 0.0477062 25102 150614 -1 1767 16 696 1667 107608 23786 4.59685 4.59685 -120.776 -4.59685 0 0 787024. 2723.27 0.30 0.04 0.14 -1 -1 0.30 0.0100332 0.00895157 64 87 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_020.v common 8.11 vpr 63.87 MiB -1 -1 0.27 21712 13 0.21 -1 -1 36336 -1 -1 18 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65400 31 32 231 263 1 185 81 17 17 289 -1 unnamed_device 25.1 MiB 2.52 1078 7081 1598 4291 1192 63.9 MiB 0.05 0.00 7.44012 -155.367 -7.44012 7.44012 0.93 0.00023565 0.000187515 0.0121323 0.00999362 -1 -1 -1 -1 38 2549 23 6.79088e+06 242496 678818. 2348.85 2.02 0.0781268 0.0655262 25966 169698 -1 2114 18 1002 2395 111954 26863 6.19723 6.19723 -141.823 -6.19723 0 0 902133. 3121.57 0.32 0.04 0.17 -1 -1 0.32 0.0163002 0.0146532 107 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_021.v common 9.07 vpr 64.11 MiB -1 -1 0.27 21824 13 0.33 -1 -1 36764 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65644 32 32 304 336 1 225 85 17 17 289 -1 unnamed_device 25.5 MiB 2.46 1376 8083 2272 5247 564 64.1 MiB 0.07 0.00 7.87531 -169.049 -7.87531 7.87531 0.90 0.000298643 0.000237886 0.0169843 0.013941 -1 -1 -1 -1 40 3383 30 6.79088e+06 282912 706193. 2443.58 2.80 0.110488 0.0925586 26254 175826 -1 3149 18 1544 4193 282548 62973 7.01948 7.01948 -163.981 -7.01948 0 0 926341. 3205.33 0.33 0.08 0.16 -1 -1 0.33 0.0205009 0.0184007 142 210 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_022.v common 10.54 vpr 64.09 MiB -1 -1 0.29 22008 13 0.35 -1 -1 36792 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65628 32 32 288 320 1 217 85 17 17 289 -1 unnamed_device 25.6 MiB 2.68 1366 6595 1403 4488 704 64.1 MiB 0.06 0.00 7.64506 -164.428 -7.64506 7.64506 0.95 0.000297679 0.000229254 0.0143004 0.0117903 -1 -1 -1 -1 38 3755 26 6.79088e+06 282912 678818. 2348.85 4.03 0.116885 0.0991424 25966 169698 -1 3109 17 1444 4235 254551 55709 6.63122 6.63122 -156.188 -6.63122 0 0 902133. 3121.57 0.33 0.07 0.15 -1 -1 0.33 0.0193444 0.0173684 141 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_023.v common 6.10 vpr 62.86 MiB -1 -1 0.20 21260 9 0.10 -1 -1 36016 -1 -1 18 26 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64372 26 32 152 184 1 121 76 17 17 289 -1 unnamed_device 24.4 MiB 1.43 706 10316 3839 4776 1701 62.9 MiB 0.05 0.00 5.04309 -98.1528 -5.04309 5.04309 0.88 0.000148505 0.000117159 0.0111922 0.00901901 -1 -1 -1 -1 34 1633 17 6.79088e+06 242496 618332. 2139.56 1.39 0.0508804 0.0422655 25102 150614 -1 1485 15 582 1299 84732 19396 4.11565 4.11565 -91.5069 -4.11565 0 0 787024. 2723.27 0.29 0.03 0.14 -1 -1 0.29 0.00914851 0.00822382 67 76 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_024.v common 10.00 vpr 64.44 MiB -1 -1 0.25 21832 13 0.34 -1 -1 36412 -1 -1 19 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65988 32 32 287 319 1 211 83 17 17 289 -1 unnamed_device 25.5 MiB 1.80 1125 5843 1079 4624 140 64.4 MiB 0.05 0.00 8.08076 -161.905 -8.08076 8.08076 0.93 0.000282055 0.000223434 0.0123909 0.0101931 -1 -1 -1 -1 38 3541 37 6.79088e+06 255968 678818. 2348.85 4.39 0.125641 0.107166 25966 169698 -1 2774 19 1484 4002 217994 49808 7.04987 7.04987 -155.269 -7.04987 0 0 902133. 3121.57 0.33 0.07 0.16 -1 -1 0.33 0.0204971 0.0183379 130 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_025.v common 6.98 vpr 63.29 MiB -1 -1 0.18 21200 8 0.10 -1 -1 36060 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64804 32 32 154 186 1 126 81 17 17 289 -1 unnamed_device 24.4 MiB 2.18 620 6381 1458 4287 636 63.3 MiB 0.04 0.00 3.97346 -91.5032 -3.97346 3.97346 0.87 0.000154628 0.000122405 0.007415 0.00610977 -1 -1 -1 -1 34 1854 23 6.79088e+06 229024 618332. 2139.56 1.54 0.0478642 0.0400271 25102 150614 -1 1546 20 734 1509 107953 25155 4.08086 4.08086 -100.889 -4.08086 0 0 787024. 2723.27 0.29 0.04 0.14 -1 -1 0.29 0.00981016 0.00866532 63 60 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_026.v common 8.76 vpr 64.01 MiB -1 -1 0.25 21644 15 0.28 -1 -1 36216 -1 -1 19 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65548 32 32 254 286 1 202 83 17 17 289 -1 unnamed_device 25.3 MiB 2.48 1221 6203 1498 4397 308 64.0 MiB 0.05 0.00 8.46989 -175.396 -8.46989 8.46989 0.90 0.000264763 0.000209967 0.0122101 0.0100253 -1 -1 -1 -1 38 3232 21 6.79088e+06 255968 678818. 2348.85 2.55 0.0873118 0.073322 25966 169698 -1 2773 18 1360 3837 210322 46659 7.41463 7.41463 -167.004 -7.41463 0 0 902133. 3121.57 0.33 0.06 0.15 -1 -1 0.33 0.017881 0.0160144 122 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_027.v common 9.00 vpr 63.76 MiB -1 -1 0.27 21748 13 0.28 -1 -1 36240 -1 -1 18 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65288 32 32 260 292 1 193 82 17 17 289 -1 unnamed_device 25.2 MiB 2.18 1121 7558 1845 4695 1018 63.8 MiB 0.06 0.00 6.82492 -146.441 -6.82492 6.82492 0.90 0.000261285 0.000206803 0.014368 0.0117735 -1 -1 -1 -1 40 2852 25 6.79088e+06 242496 706193. 2443.58 3.13 0.0909948 0.0761856 26254 175826 -1 2698 20 1308 3901 252106 54121 6.0649 6.0649 -143.158 -6.0649 0 0 926341. 3205.33 0.34 0.07 0.16 -1 -1 0.34 0.0191337 0.0170484 117 166 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_028.v common 9.83 vpr 63.94 MiB -1 -1 0.26 21652 13 0.32 -1 -1 36692 -1 -1 19 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65476 32 32 279 311 1 202 83 17 17 289 -1 unnamed_device 25.2 MiB 2.27 1252 5663 1219 3717 727 63.9 MiB 0.05 0.00 8.11176 -171.626 -8.11176 8.11176 0.90 0.000301108 0.000242793 0.0123351 0.0102449 -1 -1 -1 -1 38 3328 22 6.79088e+06 255968 678818. 2348.85 3.83 0.101789 0.0865391 25966 169698 -1 2770 19 1361 4207 221978 49045 7.12472 7.12472 -161.614 -7.12472 0 0 902133. 3121.57 0.33 0.08 0.15 -1 -1 0.33 0.023705 0.0213609 136 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_029.v common 8.04 vpr 63.97 MiB -1 -1 0.25 21484 12 0.19 -1 -1 36280 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65504 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 25.1 MiB 2.44 909 9196 2899 4953 1344 64.0 MiB 0.06 0.00 6.83474 -151.755 -6.83474 6.83474 0.87 0.000230246 0.000181512 0.0154721 0.0125626 -1 -1 -1 -1 40 2458 21 6.79088e+06 215552 706193. 2443.58 2.09 0.0847064 0.0710546 26254 175826 -1 2162 18 1093 2601 156654 36987 6.27979 6.27979 -148.637 -6.27979 0 0 926341. 3205.33 0.34 0.05 0.15 -1 -1 0.34 0.0160869 0.0143986 103 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_030.v common 9.38 vpr 63.60 MiB -1 -1 0.23 21468 11 0.18 -1 -1 36148 -1 -1 19 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65128 30 32 213 245 1 162 81 17 17 289 -1 unnamed_device 25.0 MiB 2.45 874 9531 2423 5364 1744 63.6 MiB 0.06 0.00 6.09984 -129.865 -6.09984 6.09984 0.88 0.000219023 0.000173303 0.014858 0.0121232 -1 -1 -1 -1 36 2648 21 6.79088e+06 255968 648988. 2245.63 3.48 0.0798366 0.0670645 25390 158009 -1 2057 18 979 2242 129108 29960 5.36338 5.36338 -123.968 -5.36338 0 0 828058. 2865.25 0.31 0.04 0.14 -1 -1 0.31 0.0137813 0.0123134 96 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_031.v common 7.96 vpr 63.50 MiB -1 -1 0.24 21316 11 0.21 -1 -1 36488 -1 -1 21 28 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65020 28 32 227 259 1 173 81 17 17 289 -1 unnamed_device 25.1 MiB 1.51 945 9706 2749 5392 1565 63.5 MiB 0.06 0.00 6.65573 -132.254 -6.65573 6.65573 0.87 0.000236045 0.000187084 0.0157717 0.0128963 -1 -1 -1 -1 36 2852 44 6.79088e+06 282912 648988. 2245.63 2.94 0.0922353 0.077119 25390 158009 -1 2253 17 1028 2705 156034 35206 5.82893 5.82893 -129.747 -5.82893 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0149811 0.013437 109 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_032.v common 20.57 vpr 63.99 MiB -1 -1 0.22 21504 12 0.24 -1 -1 36164 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65528 32 32 274 306 1 208 81 17 17 289 -1 unnamed_device 25.1 MiB 2.61 1298 10581 2710 6410 1461 64.0 MiB 0.07 0.00 7.32069 -168.079 -7.32069 7.32069 0.87 0.000275675 0.000218613 0.0208537 0.016859 -1 -1 -1 -1 42 3270 28 6.79088e+06 229024 744469. 2576.02 14.30 0.18356 0.153747 26542 182613 -1 2722 21 1342 3114 274537 90203 6.53044 6.53044 -160.98 -6.53044 0 0 949917. 3286.91 0.36 0.08 0.17 -1 -1 0.36 0.0201869 0.0179773 117 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_033.v common 10.08 vpr 63.80 MiB -1 -1 0.24 21520 12 0.20 -1 -1 36100 -1 -1 17 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65336 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 25.0 MiB 2.57 906 12464 4448 5883 2133 63.8 MiB 0.08 0.00 6.76776 -137.818 -6.76776 6.76776 0.89 0.000247359 0.000195173 0.021281 0.0171183 -1 -1 -1 -1 36 3090 39 6.79088e+06 229024 648988. 2245.63 3.92 0.100744 0.0834127 25390 158009 -1 2201 20 1328 3715 233391 52318 5.95423 5.95423 -138.769 -5.95423 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0170234 0.0151468 101 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_034.v common 7.10 vpr 63.42 MiB -1 -1 0.25 21836 10 0.17 -1 -1 36152 -1 -1 17 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64940 29 32 220 252 1 167 78 17 17 289 -1 unnamed_device 24.8 MiB 1.24 921 7382 1707 5211 464 63.4 MiB 0.05 0.00 5.94728 -131.013 -5.94728 5.94728 0.88 0.000227837 0.000181069 0.0137421 0.0112966 -1 -1 -1 -1 38 2468 29 6.79088e+06 229024 678818. 2348.85 2.31 0.0817526 0.0684961 25966 169698 -1 2070 17 911 2517 145509 32044 5.07353 5.07353 -123.658 -5.07353 0 0 902133. 3121.57 0.32 0.05 0.15 -1 -1 0.32 0.017356 0.0156447 101 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_035.v common 8.44 vpr 64.34 MiB -1 -1 0.29 22220 13 0.36 -1 -1 36192 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65884 32 32 315 347 1 228 85 17 17 289 -1 unnamed_device 25.6 MiB 2.01 1377 7339 1645 5038 656 64.3 MiB 0.06 0.00 8.22902 -172.723 -8.22902 8.22902 0.85 0.000322416 0.000255731 0.0163126 0.0133874 -1 -1 -1 -1 44 3400 35 6.79088e+06 282912 787024. 2723.27 2.68 0.117158 0.0982553 27118 194962 -1 2777 18 1312 3813 206485 45286 7.09671 7.09671 -164.732 -7.09671 0 0 997811. 3452.63 0.38 0.06 0.17 -1 -1 0.38 0.0224123 0.0201472 147 221 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_036.v common 8.84 vpr 64.26 MiB -1 -1 0.30 22420 14 0.39 -1 -1 36948 -1 -1 19 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65804 32 32 282 314 1 224 83 17 17 289 -1 unnamed_device 25.5 MiB 2.06 1265 11423 3369 5757 2297 64.3 MiB 0.08 0.00 7.78618 -171.47 -7.78618 7.78618 0.91 0.000287108 0.000228491 0.022047 0.0179727 -1 -1 -1 -1 46 3400 17 6.79088e+06 255968 828058. 2865.25 2.76 0.106548 0.0894578 27406 200422 -1 2758 20 1410 3910 205662 45475 6.87069 6.87069 -163.476 -6.87069 0 0 1.01997e+06 3529.29 0.38 0.06 0.19 -1 -1 0.38 0.0217608 0.0195268 137 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_037.v common 12.53 vpr 63.82 MiB -1 -1 0.28 21660 12 0.19 -1 -1 36056 -1 -1 17 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65356 31 32 241 273 1 170 80 17 17 289 -1 unnamed_device 25.1 MiB 2.66 1020 5756 1178 4150 428 63.8 MiB 0.04 0.00 7.06821 -153.603 -7.06821 7.06821 0.91 0.000244809 0.000196553 0.0110766 0.00923601 -1 -1 -1 -1 30 2656 30 6.79088e+06 229024 556674. 1926.21 6.38 0.110775 0.0936111 24526 138013 -1 2263 20 1039 2709 142261 32448 6.36938 6.36938 -150.006 -6.36938 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.0166302 0.0147833 103 150 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_038.v common 9.66 vpr 64.28 MiB -1 -1 0.31 21964 12 0.33 -1 -1 36388 -1 -1 24 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65820 31 32 307 339 1 223 87 17 17 289 -1 unnamed_device 25.4 MiB 3.15 1316 9879 2556 6613 710 64.3 MiB 0.07 0.00 7.54626 -159.356 -7.54626 7.54626 0.86 0.000345402 0.000282262 0.0196785 0.0160894 -1 -1 -1 -1 38 3535 31 6.79088e+06 323328 678818. 2348.85 2.84 0.1129 0.0942423 25966 169698 -1 2947 17 1380 3992 211528 47162 6.49016 6.49016 -151.667 -6.49016 0 0 902133. 3121.57 0.33 0.06 0.15 -1 -1 0.33 0.0205112 0.0184077 146 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_039.v common 8.41 vpr 64.34 MiB -1 -1 0.29 22064 14 0.41 -1 -1 36720 -1 -1 23 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65884 31 32 293 325 1 208 86 17 17 289 -1 unnamed_device 25.4 MiB 1.70 1251 5189 1031 3752 406 64.3 MiB 0.05 0.00 8.43595 -166.985 -8.43595 8.43595 0.85 0.000293565 0.000232988 0.0114951 0.00957618 -1 -1 -1 -1 34 3867 46 6.79088e+06 309856 618332. 2139.56 3.02 0.128385 0.109353 25102 150614 -1 3016 22 1734 4891 301159 66213 7.40657 7.40657 -161.983 -7.40657 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.0226988 0.020102 142 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_040.v common 10.80 vpr 64.27 MiB -1 -1 0.32 22248 13 0.31 -1 -1 36280 -1 -1 21 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65812 31 32 276 308 1 214 84 17 17 289 -1 unnamed_device 25.4 MiB 2.36 1271 13626 4763 6275 2588 64.3 MiB 0.09 0.00 8.48106 -170.153 -8.48106 8.48106 0.86 0.000279089 0.000220605 0.0239231 0.0193138 -1 -1 -1 -1 38 3853 46 6.79088e+06 282912 678818. 2348.85 4.73 0.131724 0.11074 25966 169698 -1 2921 25 1426 3817 344015 115253 7.3508 7.3508 -160.521 -7.3508 0 0 902133. 3121.57 0.34 0.10 0.15 -1 -1 0.34 0.0231343 0.0204819 131 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_041.v common 9.66 vpr 64.24 MiB -1 -1 0.28 21832 13 0.31 -1 -1 36492 -1 -1 20 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65784 31 32 269 301 1 203 83 17 17 289 -1 unnamed_device 25.4 MiB 1.71 1222 7823 1713 5702 408 64.2 MiB 0.06 0.00 7.81091 -159.172 -7.81091 7.81091 0.86 0.000273884 0.000217492 0.0154957 0.0127236 -1 -1 -1 -1 38 3516 39 6.79088e+06 269440 678818. 2348.85 4.22 0.117505 0.0996301 25966 169698 -1 2802 17 1267 3682 219549 47592 6.72962 6.72962 -149.438 -6.72962 0 0 902133. 3121.57 0.33 0.07 0.15 -1 -1 0.33 0.0194824 0.0175854 124 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_042.v common 7.65 vpr 64.10 MiB -1 -1 0.26 21716 12 0.23 -1 -1 36404 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65636 32 32 264 296 1 184 79 17 17 289 -1 unnamed_device 25.2 MiB 1.83 1065 5487 1235 3857 395 64.1 MiB 0.04 0.00 6.67703 -143.122 -6.67703 6.67703 0.88 0.000259857 0.00020588 0.0119147 0.00981156 -1 -1 -1 -1 34 2811 41 6.79088e+06 202080 618332. 2139.56 2.26 0.0978723 0.0819225 25102 150614 -1 2268 14 988 2481 146427 33391 5.86813 5.86813 -136.449 -5.86813 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0173887 0.0157641 110 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_043.v common 9.22 vpr 64.47 MiB -1 -1 0.33 22676 14 0.49 -1 -1 37136 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66020 32 32 324 356 1 243 85 17 17 289 -1 unnamed_device 25.6 MiB 1.43 1554 7897 2063 5110 724 64.5 MiB 0.07 0.00 8.5032 -181.474 -8.5032 8.5032 0.87 0.000337995 0.000268887 0.0186192 0.0152355 -1 -1 -1 -1 40 3897 28 6.79088e+06 282912 706193. 2443.58 3.83 0.139029 0.118498 26254 175826 -1 3723 19 1704 5197 378542 93252 7.3039 7.3039 -174.442 -7.3039 0 0 926341. 3205.33 0.33 0.10 0.16 -1 -1 0.33 0.0248612 0.0223801 159 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_044.v common 11.07 vpr 63.84 MiB -1 -1 0.24 21292 11 0.23 -1 -1 35884 -1 -1 16 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65368 31 32 249 281 1 188 79 17 17 289 -1 unnamed_device 25.0 MiB 2.38 1138 3966 751 3109 106 63.8 MiB 0.04 0.00 6.36587 -138.564 -6.36587 6.36587 0.86 0.000269011 0.000217606 0.00962781 0.00811087 -1 -1 -1 -1 36 3745 42 6.79088e+06 215552 648988. 2245.63 5.19 0.097052 0.0817068 25390 158009 -1 2890 20 1493 4258 294609 62197 5.61398 5.61398 -139.411 -5.61398 0 0 828058. 2865.25 0.31 0.08 0.14 -1 -1 0.31 0.0181764 0.0161713 112 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_045.v common 8.90 vpr 64.35 MiB -1 -1 0.28 21776 13 0.33 -1 -1 36784 -1 -1 21 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65892 31 32 284 316 1 191 84 17 17 289 -1 unnamed_device 25.5 MiB 1.49 1227 8868 2138 5562 1168 64.3 MiB 0.07 0.00 8.05648 -168.256 -8.05648 8.05648 0.88 0.000308773 0.00024631 0.0194646 0.0160511 -1 -1 -1 -1 36 3070 37 6.79088e+06 282912 648988. 2245.63 3.63 0.112338 0.093842 25390 158009 -1 2589 19 1196 3731 211584 47344 6.96022 6.96022 -156.818 -6.96022 0 0 828058. 2865.25 0.31 0.06 0.15 -1 -1 0.31 0.0202433 0.0180578 137 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_046.v common 8.51 vpr 64.22 MiB -1 -1 0.28 22024 12 0.32 -1 -1 36384 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65760 32 32 303 335 1 210 85 17 17 289 -1 unnamed_device 25.5 MiB 1.90 1298 12361 2924 7866 1571 64.2 MiB 0.09 0.00 6.98572 -155.809 -6.98572 6.98572 0.89 0.000299149 0.000236005 0.0238094 0.0192682 -1 -1 -1 -1 38 3592 19 6.79088e+06 282912 678818. 2348.85 2.91 0.120772 0.101881 25966 169698 -1 2849 20 1609 4984 262433 57372 5.91508 5.91508 -148.327 -5.91508 0 0 902133. 3121.57 0.32 0.08 0.15 -1 -1 0.32 0.0224441 0.020001 145 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_047.v common 7.39 vpr 64.00 MiB -1 -1 0.25 21820 13 0.32 -1 -1 36540 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65540 32 32 272 304 1 195 84 17 17 289 -1 unnamed_device 25.2 MiB 1.61 1155 7770 1729 5200 841 64.0 MiB 0.06 0.00 7.69291 -164.646 -7.69291 7.69291 0.87 0.000287593 0.000228659 0.0162083 0.0133256 -1 -1 -1 -1 36 2952 19 6.79088e+06 269440 648988. 2245.63 2.13 0.0944674 0.0792603 25390 158009 -1 2586 17 1154 3000 174478 39827 6.83149 6.83149 -160.017 -6.83149 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0186789 0.016776 128 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_048.v common 23.41 vpr 63.86 MiB -1 -1 0.28 22088 13 0.26 -1 -1 36356 -1 -1 18 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65392 32 32 271 303 1 213 82 17 17 289 -1 unnamed_device 24.9 MiB 2.89 1245 11296 3823 5504 1969 63.9 MiB 0.08 0.00 7.62172 -162.859 -7.62172 7.62172 0.87 0.000394266 0.000302813 0.0215954 0.017418 -1 -1 -1 -1 38 3586 32 6.79088e+06 242496 678818. 2348.85 16.81 0.180093 0.150543 25966 169698 -1 2742 21 1295 3387 290693 97643 6.63466 6.63466 -152.535 -6.63466 0 0 902133. 3121.57 0.34 0.10 0.18 -1 -1 0.34 0.0254643 0.0229151 123 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_049.v common 23.11 vpr 64.15 MiB -1 -1 0.28 21952 12 0.30 -1 -1 36744 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65688 32 32 288 320 1 213 86 17 17 289 -1 unnamed_device 25.3 MiB 2.22 1309 8402 2054 5716 632 64.1 MiB 0.07 0.00 7.46308 -161.108 -7.46308 7.46308 0.88 0.00029565 0.000234763 0.0178765 0.014685 -1 -1 -1 -1 38 3536 26 6.79088e+06 296384 678818. 2348.85 17.15 0.206438 0.175606 25966 169698 -1 2921 17 1322 4142 229259 49783 6.67037 6.67037 -155.519 -6.67037 0 0 902133. 3121.57 0.33 0.07 0.15 -1 -1 0.33 0.0197078 0.0177026 141 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_050.v common 16.22 vpr 64.43 MiB -1 -1 0.29 22224 13 0.36 -1 -1 36572 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65980 32 32 306 338 1 225 85 17 17 289 -1 unnamed_device 25.4 MiB 1.64 1275 4735 898 3382 455 64.4 MiB 0.05 0.00 8.09732 -172.599 -8.09732 8.09732 0.90 0.000333455 0.000269302 0.0126091 0.0105571 -1 -1 -1 -1 36 3758 44 6.79088e+06 282912 648988. 2245.63 10.82 0.184873 0.15548 25390 158009 -1 2962 24 1450 4192 342188 109398 6.87756 6.87756 -155.489 -6.87756 0 0 828058. 2865.25 0.31 0.10 0.15 -1 -1 0.31 0.0252247 0.0223127 146 212 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_051.v common 7.87 vpr 64.13 MiB -1 -1 0.25 21724 14 0.35 -1 -1 36424 -1 -1 19 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65668 32 32 262 294 1 194 83 17 17 289 -1 unnamed_device 25.4 MiB 1.69 1332 6383 1390 4359 634 64.1 MiB 0.05 0.00 8.35004 -171.056 -8.35004 8.35004 0.87 0.000436168 0.000356973 0.0133735 0.0111533 -1 -1 -1 -1 46 2894 25 6.79088e+06 255968 828058. 2865.25 2.40 0.0939103 0.0793335 27406 200422 -1 2584 19 1154 3294 165810 37107 7.17517 7.17517 -156.302 -7.17517 0 0 1.01997e+06 3529.29 0.38 0.06 0.17 -1 -1 0.38 0.0205914 0.0184085 125 168 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_052.v common 19.22 vpr 64.31 MiB -1 -1 0.27 21740 13 0.32 -1 -1 36920 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65852 32 32 291 323 1 212 84 17 17 289 -1 unnamed_device 25.4 MiB 2.13 1280 6306 1448 4128 730 64.3 MiB 0.05 0.00 8.18011 -164.079 -8.18011 8.18011 0.86 0.000290239 0.000231045 0.0137895 0.0115047 -1 -1 -1 -1 38 3568 30 6.79088e+06 269440 678818. 2348.85 13.44 0.191874 0.162012 25966 169698 -1 2820 19 1475 4164 221195 50242 7.67626 7.67626 -165.309 -7.67626 0 0 902133. 3121.57 0.33 0.07 0.15 -1 -1 0.33 0.0200918 0.0179227 136 197 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_053.v common 8.91 vpr 64.21 MiB -1 -1 0.30 21872 13 0.35 -1 -1 36596 -1 -1 22 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65756 31 32 302 334 1 224 85 17 17 289 -1 unnamed_device 25.6 MiB 2.12 1301 8083 1880 5114 1089 64.2 MiB 0.07 0.00 7.82203 -169.793 -7.82203 7.82203 0.87 0.000313264 0.000251319 0.0167832 0.0138118 -1 -1 -1 -1 38 3364 33 6.79088e+06 296384 678818. 2348.85 2.98 0.116249 0.0978672 25966 169698 -1 2875 19 1442 4033 203579 45890 7.16392 7.16392 -162.446 -7.16392 0 0 902133. 3121.57 0.33 0.06 0.15 -1 -1 0.33 0.0216004 0.0193765 144 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_054.v common 8.32 vpr 64.39 MiB -1 -1 0.30 21872 12 0.37 -1 -1 36560 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65932 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 25.4 MiB 1.61 1349 6967 1481 4942 544 64.4 MiB 0.06 0.00 7.58336 -160.336 -7.58336 7.58336 0.90 0.000302569 0.000239976 0.015461 0.012746 -1 -1 -1 -1 38 3461 22 6.79088e+06 282912 678818. 2348.85 2.86 0.109625 0.0924525 25966 169698 -1 2825 17 1341 3714 193952 43570 6.65918 6.65918 -153.457 -6.65918 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0205542 0.0184091 147 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_055.v common 7.60 vpr 63.40 MiB -1 -1 0.21 21540 11 0.15 -1 -1 36216 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 216 248 1 161 78 17 17 289 -1 unnamed_device 24.8 MiB 1.54 854 6552 1491 4896 165 63.4 MiB 0.05 0.00 6.10408 -131.471 -6.10408 6.10408 0.88 0.000211046 0.000166624 0.0108354 0.00887884 -1 -1 -1 -1 36 2444 29 6.79088e+06 188608 648988. 2245.63 2.75 0.0834336 0.0706013 25390 158009 -1 1945 16 889 2176 140210 32931 5.23808 5.23808 -129.554 -5.23808 0 0 828058. 2865.25 0.31 0.04 0.14 -1 -1 0.31 0.0129209 0.0115834 91 122 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_056.v common 9.38 vpr 63.86 MiB -1 -1 0.25 21872 13 0.25 -1 -1 36284 -1 -1 19 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65388 32 32 254 286 1 196 83 17 17 289 -1 unnamed_device 25.1 MiB 2.12 1125 4583 881 3537 165 63.9 MiB 0.04 0.00 7.79846 -167.848 -7.79846 7.79846 0.89 0.000265449 0.000212747 0.00982317 0.00826436 -1 -1 -1 -1 36 3266 28 6.79088e+06 255968 648988. 2245.63 3.71 0.0941779 0.0797027 25390 158009 -1 2548 15 1146 2804 171576 37989 6.91332 6.91332 -163.48 -6.91332 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0169895 0.0152535 117 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_057.v common 9.39 vpr 64.69 MiB -1 -1 0.30 22596 14 0.53 -1 -1 36952 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66244 32 32 338 370 1 252 88 17 17 289 -1 unnamed_device 25.8 MiB 1.42 1553 10618 2680 6617 1321 64.7 MiB 0.09 0.00 9.27313 -184.831 -9.27313 9.27313 0.87 0.00035364 0.000281984 0.0238655 0.0196367 -1 -1 -1 -1 44 4343 46 6.79088e+06 323328 787024. 2723.27 3.89 0.142994 0.119961 27118 194962 -1 3334 17 1642 4998 271773 59529 8.0278 8.0278 -171.471 -8.0278 0 0 997811. 3452.63 0.37 0.08 0.18 -1 -1 0.37 0.0236456 0.0212644 171 244 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_058.v common 10.34 vpr 64.18 MiB -1 -1 0.29 21828 13 0.35 -1 -1 36360 -1 -1 19 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65724 32 32 271 303 1 215 83 17 17 289 -1 unnamed_device 25.4 MiB 1.72 1263 10343 2759 5468 2116 64.2 MiB 0.08 0.00 7.95077 -174.752 -7.95077 7.95077 0.87 0.000290665 0.000227646 0.0209609 0.0170408 -1 -1 -1 -1 38 3631 26 6.79088e+06 255968 678818. 2348.85 4.81 0.107378 0.090117 25966 169698 -1 2958 16 1335 3587 203647 44404 6.89761 6.89761 -163.806 -6.89761 0 0 902133. 3121.57 0.33 0.06 0.15 -1 -1 0.33 0.0184226 0.0165805 131 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_059.v common 5.93 vpr 63.57 MiB -1 -1 0.25 21776 11 0.21 -1 -1 36300 -1 -1 17 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65096 30 32 224 256 1 162 79 17 17 289 -1 unnamed_device 24.9 MiB 0.62 883 7853 1940 5339 574 63.6 MiB 0.05 0.00 6.27294 -133.979 -6.27294 6.27294 0.88 0.000222239 0.000175607 0.0135428 0.0111777 -1 -1 -1 -1 38 2297 16 6.79088e+06 229024 678818. 2348.85 1.79 0.0773 0.0651088 25966 169698 -1 1918 13 859 2398 122973 27825 5.57484 5.57484 -132.391 -5.57484 0 0 902133. 3121.57 0.33 0.04 0.15 -1 -1 0.33 0.012794 0.0116048 100 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_060.v common 23.70 vpr 64.59 MiB -1 -1 0.33 22908 15 0.63 -1 -1 36836 -1 -1 25 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66140 32 32 351 383 1 260 89 17 17 289 -1 unnamed_device 25.8 MiB 1.35 1559 7217 1529 4884 804 64.6 MiB 0.07 0.00 9.47559 -189.1 -9.47559 9.47559 0.89 0.000373333 0.000295547 0.0180302 0.0149111 -1 -1 -1 -1 40 4036 26 6.79088e+06 336800 706193. 2443.58 18.22 0.238146 0.19941 26254 175826 -1 3814 22 2179 6879 441568 95166 8.5413 8.5413 -182.536 -8.5413 0 0 926341. 3205.33 0.34 0.11 0.15 -1 -1 0.34 0.02915 0.0258561 180 257 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_061.v common 12.09 vpr 64.19 MiB -1 -1 0.27 22104 13 0.36 -1 -1 36632 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65732 32 32 297 329 1 215 84 17 17 289 -1 unnamed_device 25.3 MiB 1.41 1327 11613 3037 7153 1423 64.2 MiB 0.08 0.00 8.35567 -179.275 -8.35567 8.35567 0.93 0.000300893 0.000239266 0.0234732 0.0192132 -1 -1 -1 -1 36 3892 45 6.79088e+06 269440 648988. 2245.63 6.75 0.147188 0.12502 25390 158009 -1 2951 20 1522 4208 254330 56298 7.26121 7.26121 -171.101 -7.26121 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.022819 0.0204777 139 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_062.v common 8.14 vpr 63.67 MiB -1 -1 0.21 21328 11 0.17 -1 -1 36628 -1 -1 14 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65200 32 32 231 263 1 166 78 17 17 289 -1 unnamed_device 25.0 MiB 2.07 913 8544 1751 6687 106 63.7 MiB 0.06 0.00 6.71833 -138.755 -6.71833 6.71833 0.90 0.0002379 0.000189583 0.0148893 0.012248 -1 -1 -1 -1 36 2680 22 6.79088e+06 188608 648988. 2245.63 2.58 0.0775847 0.0645499 25390 158009 -1 2048 22 1004 2482 144860 33236 5.57057 5.57057 -137.043 -5.57057 0 0 828058. 2865.25 0.31 0.05 0.15 -1 -1 0.31 0.018013 0.0160281 95 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_063.v common 7.64 vpr 64.40 MiB -1 -1 0.27 21872 12 0.37 -1 -1 36028 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65944 32 32 305 337 1 211 84 17 17 289 -1 unnamed_device 25.7 MiB 1.36 1275 5757 1099 4374 284 64.4 MiB 0.05 0.00 8.05812 -164.83 -8.05812 8.05812 0.89 0.000307611 0.000244335 0.0135778 0.0113464 -1 -1 -1 -1 40 3130 19 6.79088e+06 269440 706193. 2443.58 2.45 0.103315 0.0871389 26254 175826 -1 2958 18 1330 4151 264505 58696 7.08896 7.08896 -157.183 -7.08896 0 0 926341. 3205.33 0.34 0.08 0.16 -1 -1 0.34 0.0247502 0.0224226 145 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_064.v common 11.95 vpr 63.89 MiB -1 -1 0.25 21472 12 0.24 -1 -1 36368 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65428 32 32 243 275 1 185 80 17 17 289 -1 unnamed_device 25.3 MiB 1.65 1063 10572 3521 4821 2230 63.9 MiB 0.07 0.00 7.07212 -150.92 -7.07212 7.07212 0.92 0.000252522 0.00019913 0.0194424 0.0157747 -1 -1 -1 -1 36 3409 40 6.79088e+06 215552 648988. 2245.63 6.64 0.104986 0.088026 25390 158009 -1 2673 17 1278 3195 206345 45647 6.29098 6.29098 -150.366 -6.29098 0 0 828058. 2865.25 0.32 0.06 0.14 -1 -1 0.32 0.0170877 0.0154512 111 149 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_065.v common 8.50 vpr 63.70 MiB -1 -1 0.25 21680 12 0.22 -1 -1 36324 -1 -1 18 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65224 30 32 228 260 1 165 80 17 17 289 -1 unnamed_device 25.2 MiB 1.35 1004 11776 3311 6854 1611 63.7 MiB 0.08 0.00 7.78962 -153.98 -7.78962 7.78962 0.91 0.000237086 0.000186667 0.0205593 0.0166361 -1 -1 -1 -1 36 2647 28 6.79088e+06 242496 648988. 2245.63 3.61 0.106425 0.0900547 25390 158009 -1 2204 16 865 2541 152000 33758 6.54507 6.54507 -146.067 -6.54507 0 0 828058. 2865.25 0.30 0.05 0.15 -1 -1 0.30 0.0148088 0.0133262 105 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_066.v common 10.65 vpr 64.16 MiB -1 -1 0.30 21896 12 0.34 -1 -1 36516 -1 -1 23 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65704 29 32 275 307 1 200 84 17 17 289 -1 unnamed_device 25.5 MiB 2.38 1221 7770 1855 5075 840 64.2 MiB 0.06 0.00 7.43187 -140.251 -7.43187 7.43187 0.89 0.000569505 0.000510167 0.0164716 0.0134951 -1 -1 -1 -1 34 3578 29 6.79088e+06 309856 618332. 2139.56 4.55 0.122244 0.103718 25102 150614 -1 3006 15 1375 3970 281069 58660 6.41972 6.41972 -135.251 -6.41972 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0184229 0.0166139 136 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_067.v common 7.69 vpr 64.38 MiB -1 -1 0.29 22084 13 0.42 -1 -1 36520 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65920 32 32 330 362 1 254 87 17 17 289 -1 unnamed_device 25.5 MiB 1.19 1359 13335 4246 7124 1965 64.4 MiB 0.10 0.00 8.15621 -168.312 -8.15621 8.15621 0.89 0.0003242 0.000257365 0.0276918 0.0226102 -1 -1 -1 -1 46 3494 23 6.79088e+06 309856 828058. 2865.25 2.49 0.121826 0.10184 27406 200422 -1 2798 17 1555 4022 186401 43603 7.04638 7.04638 -158.022 -7.04638 0 0 1.01997e+06 3529.29 0.38 0.06 0.18 -1 -1 0.38 0.0219693 0.019823 159 236 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_068.v common 8.10 vpr 64.11 MiB -1 -1 0.28 21988 12 0.30 -1 -1 36556 -1 -1 19 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65652 32 32 290 322 1 219 83 17 17 289 -1 unnamed_device 25.3 MiB 1.23 1355 8543 2261 5601 681 64.1 MiB 0.07 0.00 8.04027 -168.911 -8.04027 8.04027 0.90 0.000305315 0.000243829 0.0185997 0.0153354 -1 -1 -1 -1 46 3186 27 6.79088e+06 255968 828058. 2865.25 3.04 0.108564 0.0911621 27406 200422 -1 2643 19 1391 4028 208150 46578 6.74888 6.74888 -158.158 -6.74888 0 0 1.01997e+06 3529.29 0.38 0.07 0.18 -1 -1 0.38 0.0210952 0.0189173 138 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_069.v common 8.95 vpr 63.61 MiB -1 -1 0.27 21520 12 0.18 -1 -1 36584 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65136 32 32 214 246 1 159 80 17 17 289 -1 unnamed_device 24.8 MiB 2.60 863 11260 4224 5242 1794 63.6 MiB 0.07 0.00 7.26107 -147.208 -7.26107 7.26107 0.89 0.000230494 0.000184068 0.0174678 0.0142113 -1 -1 -1 -1 36 2331 19 6.79088e+06 215552 648988. 2245.63 2.78 0.0844205 0.0711935 25390 158009 -1 1967 15 845 2356 149699 33404 6.41977 6.41977 -139.921 -6.41977 0 0 828058. 2865.25 0.32 0.05 0.14 -1 -1 0.32 0.0135132 0.0122086 93 120 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_070.v common 14.85 vpr 63.89 MiB -1 -1 0.25 21788 12 0.27 -1 -1 36564 -1 -1 20 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65420 31 32 244 276 1 178 83 17 17 289 -1 unnamed_device 25.1 MiB 1.84 1108 3503 656 2559 288 63.9 MiB 0.03 0.00 7.09757 -147.836 -7.09757 7.09757 0.90 0.000251763 0.000200726 0.007775 0.00662372 -1 -1 -1 -1 30 3246 30 6.79088e+06 269440 556674. 1926.21 9.40 0.113098 0.0950152 24526 138013 -1 2672 21 1252 3451 184765 41988 6.47548 6.47548 -150.315 -6.47548 0 0 706193. 2443.58 0.28 0.07 0.13 -1 -1 0.28 0.0212659 0.018677 112 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_071.v common 7.73 vpr 64.17 MiB -1 -1 0.28 21736 11 0.23 -1 -1 36472 -1 -1 21 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65712 30 32 276 308 1 190 83 17 17 289 -1 unnamed_device 25.4 MiB 1.79 1054 9263 2245 5843 1175 64.2 MiB 0.07 0.00 6.88762 -135.169 -6.88762 6.88762 0.91 0.000339841 0.000281041 0.0191505 0.0157505 -1 -1 -1 -1 38 2945 19 6.79088e+06 282912 678818. 2348.85 2.21 0.0962087 0.0800687 25966 169698 -1 2413 18 1115 3680 189750 43063 5.99343 5.99343 -130.249 -5.99343 0 0 902133. 3121.57 0.32 0.06 0.15 -1 -1 0.32 0.0184155 0.0164271 126 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_072.v common 6.63 vpr 63.98 MiB -1 -1 0.25 21640 11 0.24 -1 -1 36532 -1 -1 19 28 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65516 28 32 253 285 1 177 79 17 17 289 -1 unnamed_device 25.1 MiB 1.07 995 10050 2718 6209 1123 64.0 MiB 0.06 0.00 6.45019 -124.228 -6.45019 6.45019 0.86 0.00025159 0.000200075 0.0181809 0.014783 -1 -1 -1 -1 38 2647 20 6.79088e+06 255968 678818. 2348.85 2.02 0.0953641 0.0801837 25966 169698 -1 2249 19 1131 3466 185142 40463 5.64548 5.64548 -120.405 -5.64548 0 0 902133. 3121.57 0.33 0.06 0.15 -1 -1 0.33 0.0185367 0.0165503 116 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_073.v common 8.46 vpr 64.17 MiB -1 -1 0.26 21716 13 0.26 -1 -1 36308 -1 -1 17 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65708 30 32 235 267 1 171 79 17 17 289 -1 unnamed_device 25.5 MiB 2.65 969 10557 2812 6852 893 64.2 MiB 0.07 0.00 7.0265 -142.766 -7.0265 7.0265 0.88 0.000282303 0.000230391 0.0185272 0.0151046 -1 -1 -1 -1 38 2499 22 6.79088e+06 229024 678818. 2348.85 2.21 0.0903504 0.0755629 25966 169698 -1 2100 19 973 2722 134749 31327 6.40165 6.40165 -139.95 -6.40165 0 0 902133. 3121.57 0.32 0.05 0.15 -1 -1 0.32 0.0184286 0.0165741 108 147 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_074.v common 19.28 vpr 64.28 MiB -1 -1 0.25 21756 12 0.24 -1 -1 36308 -1 -1 18 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65820 32 32 264 296 1 201 82 17 17 289 -1 unnamed_device 25.3 MiB 2.79 1167 9872 2780 5471 1621 64.3 MiB 0.07 0.00 7.31132 -167.014 -7.31132 7.31132 0.86 0.000264499 0.000209915 0.018229 0.0146678 -1 -1 -1 -1 38 3358 22 6.79088e+06 242496 678818. 2348.85 12.90 0.149213 0.123779 25966 169698 -1 2616 16 1138 2926 158588 35298 6.38052 6.38052 -156.716 -6.38052 0 0 902133. 3121.57 0.33 0.05 0.15 -1 -1 0.33 0.0171777 0.0154801 119 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_075.v common 8.62 vpr 64.26 MiB -1 -1 0.27 21652 13 0.36 -1 -1 36560 -1 -1 21 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65800 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 25.4 MiB 1.40 988 9783 2758 5943 1082 64.3 MiB 0.07 0.00 8.18266 -152.572 -8.18266 8.18266 0.88 0.000287036 0.000223866 0.0187048 0.0151386 -1 -1 -1 -1 36 3345 28 6.79088e+06 282912 648988. 2245.63 3.56 0.108656 0.090751 25390 158009 -1 2527 19 1403 4134 243095 57317 7.38646 7.38646 -147.553 -7.38646 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0197226 0.0175627 136 187 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_076.v common 7.79 vpr 64.15 MiB -1 -1 0.29 22020 14 0.33 -1 -1 37084 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65692 32 32 290 322 1 211 84 17 17 289 -1 unnamed_device 25.3 MiB 1.46 1245 13992 4430 7427 2135 64.2 MiB 0.10 0.00 8.45277 -175.285 -8.45277 8.45277 0.88 0.000307147 0.000236719 0.0277306 0.022229 -1 -1 -1 -1 46 3019 19 6.79088e+06 269440 828058. 2865.25 2.56 0.121167 0.102127 27406 200422 -1 2515 18 1193 3569 171019 38649 7.28928 7.28928 -161.175 -7.28928 0 0 1.01997e+06 3529.29 0.39 0.06 0.17 -1 -1 0.39 0.0200397 0.0180146 132 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_077.v common 11.77 vpr 64.28 MiB -1 -1 0.29 22372 14 0.30 -1 -1 36616 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65824 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 25.5 MiB 2.59 1219 5506 1194 3684 628 64.3 MiB 0.05 0.00 8.08149 -162.851 -8.08149 8.08149 0.88 0.000279531 0.000222989 0.0125087 0.0103987 -1 -1 -1 -1 36 3582 35 6.79088e+06 229024 648988. 2245.63 5.43 0.114903 0.0975682 25390 158009 -1 2752 19 1307 3808 241835 52748 6.88531 6.88531 -154.809 -6.88531 0 0 828058. 2865.25 0.32 0.09 0.14 -1 -1 0.32 0.0253505 0.0228467 119 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_078.v common 20.85 vpr 64.25 MiB -1 -1 0.31 22340 13 0.42 -1 -1 36912 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65788 32 32 296 328 1 224 85 17 17 289 -1 unnamed_device 25.2 MiB 1.83 1337 14779 4197 8584 1998 64.2 MiB 0.10 0.00 8.4678 -172.702 -8.4678 8.4678 0.88 0.000305341 0.000243142 0.0284362 0.0230968 -1 -1 -1 -1 38 3676 48 6.79088e+06 282912 678818. 2348.85 15.07 0.236669 0.200495 25966 169698 -1 3099 28 1497 4330 401264 158279 7.55101 7.55101 -166.266 -7.55101 0 0 902133. 3121.57 0.33 0.13 0.16 -1 -1 0.33 0.0282562 0.0249182 145 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_079.v common 8.33 vpr 63.72 MiB -1 -1 0.24 21528 13 0.23 -1 -1 36344 -1 -1 17 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65252 30 32 234 266 1 174 79 17 17 289 -1 unnamed_device 25.0 MiB 2.22 971 11402 3221 6944 1237 63.7 MiB 0.07 0.00 7.37867 -152.623 -7.37867 7.37867 0.88 0.000232 0.000183041 0.0187646 0.0152218 -1 -1 -1 -1 30 3089 46 6.79088e+06 229024 556674. 1926.21 2.57 0.0723239 0.0602026 24526 138013 -1 2347 17 1030 2656 140863 32234 6.66267 6.66267 -147.632 -6.66267 0 0 706193. 2443.58 0.28 0.05 0.12 -1 -1 0.28 0.0164395 0.0148506 104 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_080.v common 8.27 vpr 64.17 MiB -1 -1 0.30 22232 13 0.54 -1 -1 36644 -1 -1 21 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65712 30 32 291 323 1 223 83 17 17 289 -1 unnamed_device 25.3 MiB 1.66 1226 6203 1393 4036 774 64.2 MiB 0.05 0.00 8.37399 -164.454 -8.37399 8.37399 0.92 0.0003064 0.000243795 0.0146387 0.0121628 -1 -1 -1 -1 38 3383 21 6.79088e+06 282912 678818. 2348.85 2.58 0.107603 0.0907891 25966 169698 -1 2692 19 1392 3870 198202 44973 7.30385 7.30385 -157.208 -7.30385 0 0 902133. 3121.57 0.34 0.07 0.15 -1 -1 0.34 0.0230948 0.0207001 144 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_081.v common 9.08 vpr 64.05 MiB -1 -1 0.29 21912 14 0.37 -1 -1 36056 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65588 32 32 274 306 1 201 81 17 17 289 -1 unnamed_device 25.2 MiB 2.01 1220 8831 2339 5185 1307 64.1 MiB 0.07 0.00 8.43664 -177.857 -8.43664 8.43664 0.86 0.000267391 0.000211058 0.016633 0.0134736 -1 -1 -1 -1 38 3412 29 6.79088e+06 229024 678818. 2348.85 3.21 0.10304 0.0861622 25966 169698 -1 2715 23 1368 4033 233965 50066 7.75127 7.75127 -174.096 -7.75127 0 0 902133. 3121.57 0.33 0.07 0.15 -1 -1 0.33 0.0229107 0.0202821 127 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_082.v common 10.49 vpr 64.10 MiB -1 -1 0.28 22008 13 0.28 -1 -1 36332 -1 -1 17 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65636 31 32 266 298 1 194 80 17 17 289 -1 unnamed_device 25.0 MiB 1.78 1018 10056 2882 5099 2075 64.1 MiB 0.07 0.00 7.45028 -151.18 -7.45028 7.45028 0.89 0.000268157 0.000212095 0.0194509 0.0158388 -1 -1 -1 -1 36 3259 28 6.79088e+06 229024 648988. 2245.63 4.94 0.120777 0.102807 25390 158009 -1 2643 18 1429 3975 253181 55848 6.74528 6.74528 -150.387 -6.74528 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0188261 0.0169265 122 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_083.v common 10.82 vpr 63.89 MiB -1 -1 0.28 21972 13 0.26 -1 -1 36368 -1 -1 22 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65424 30 32 266 298 1 200 84 17 17 289 -1 unnamed_device 25.1 MiB 2.11 1131 8319 2355 4583 1381 63.9 MiB 0.06 0.00 7.49592 -149.558 -7.49592 7.49592 0.87 0.000261521 0.000206678 0.0153258 0.0125583 -1 -1 -1 -1 36 3396 30 6.79088e+06 296384 648988. 2245.63 5.03 0.104138 0.0877263 25390 158009 -1 2724 15 1255 3390 217318 47668 6.64352 6.64352 -144.455 -6.64352 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0167497 0.0151098 123 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_084.v common 9.18 vpr 64.38 MiB -1 -1 0.29 21884 14 0.44 -1 -1 36620 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65924 32 32 310 342 1 229 85 17 17 289 -1 unnamed_device 25.6 MiB 1.66 1332 11803 3711 6311 1781 64.4 MiB 0.09 0.00 8.47332 -174.325 -8.47332 8.47332 0.93 0.000334058 0.00026657 0.0258452 0.0210709 -1 -1 -1 -1 40 3627 36 6.79088e+06 282912 706193. 2443.58 3.50 0.134108 0.113175 26254 175826 -1 3319 19 1685 5093 354961 76925 7.38651 7.38651 -167.314 -7.38651 0 0 926341. 3205.33 0.36 0.10 0.16 -1 -1 0.36 0.0265238 0.0239927 152 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_085.v common 7.91 vpr 64.15 MiB -1 -1 0.31 21784 11 0.34 -1 -1 36524 -1 -1 22 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65692 29 32 262 294 1 201 83 17 17 289 -1 unnamed_device 25.4 MiB 2.19 1187 9803 3077 5789 937 64.2 MiB 0.07 0.00 7.32112 -142.904 -7.32112 7.32112 0.87 0.000279691 0.00022244 0.0187499 0.0152235 -1 -1 -1 -1 30 3094 33 6.79088e+06 296384 556674. 1926.21 2.04 0.0822179 0.0695579 24526 138013 -1 2563 15 1165 3347 160722 37461 6.46667 6.46667 -139.078 -6.46667 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.0173754 0.0156876 134 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_086.v common 10.52 vpr 63.84 MiB -1 -1 0.22 21364 13 0.19 -1 -1 36272 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65376 32 32 222 254 1 182 79 17 17 289 -1 unnamed_device 25.1 MiB 3.87 1035 5318 1067 4048 203 63.8 MiB 0.04 0.00 6.99248 -161.236 -6.99248 6.99248 0.87 0.000261176 0.000213235 0.00985797 0.00813266 -1 -1 -1 -1 34 3444 42 6.79088e+06 202080 618332. 2139.56 3.26 0.0832439 0.0695336 25102 150614 -1 2604 22 1228 2959 273887 81898 6.40514 6.40514 -163.936 -6.40514 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.0165428 0.0146808 99 128 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_087.v common 8.97 vpr 63.91 MiB -1 -1 0.29 21864 14 0.28 -1 -1 36508 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65448 32 32 267 299 1 198 81 17 17 289 -1 unnamed_device 25.2 MiB 2.01 1250 4456 885 3313 258 63.9 MiB 0.04 0.00 8.38045 -174.115 -8.38045 8.38045 0.88 0.000278794 0.00022252 0.0111062 0.00929059 -1 -1 -1 -1 36 3265 43 6.79088e+06 229024 648988. 2245.63 3.38 0.111829 0.095034 25390 158009 -1 2720 18 1249 3337 202574 44403 7.34737 7.34737 -167.601 -7.34737 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0187043 0.0168004 122 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_088.v common 9.20 vpr 64.40 MiB -1 -1 0.30 22588 15 0.51 -1 -1 36080 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65948 32 32 334 366 1 250 88 17 17 289 -1 unnamed_device 25.8 MiB 2.03 1484 9253 2259 6050 944 64.4 MiB 0.08 0.00 8.87836 -189.569 -8.87836 8.87836 0.89 0.000343145 0.000272909 0.0228454 0.0187174 -1 -1 -1 -1 38 3870 29 6.79088e+06 323328 678818. 2348.85 3.14 0.149302 0.127238 25966 169698 -1 3149 20 1729 4589 229265 52252 7.67991 7.67991 -179.191 -7.67991 0 0 902133. 3121.57 0.34 0.08 0.15 -1 -1 0.34 0.0264208 0.0235607 164 240 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_089.v common 8.48 vpr 63.34 MiB -1 -1 0.25 21520 11 0.20 -1 -1 36420 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 220 252 1 168 80 17 17 289 -1 unnamed_device 24.7 MiB 2.02 863 10916 3769 4696 2451 63.3 MiB 0.06 0.00 6.70603 -139.827 -6.70603 6.70603 0.91 0.000216515 0.000171348 0.016307 0.0132088 -1 -1 -1 -1 36 2507 19 6.79088e+06 215552 648988. 2245.63 3.01 0.0801888 0.0670358 25390 158009 -1 2032 20 956 2486 140727 33215 5.82893 5.82893 -135.434 -5.82893 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.01526 0.0135858 97 126 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_090.v common 20.69 vpr 63.72 MiB -1 -1 0.23 21352 12 0.23 -1 -1 36172 -1 -1 17 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65248 31 32 244 276 1 191 80 17 17 289 -1 unnamed_device 25.2 MiB 1.94 1084 6788 1723 4832 233 63.7 MiB 0.05 0.00 6.66627 -147.96 -6.66627 6.66627 0.86 0.000243816 0.000193744 0.0128305 0.0105721 -1 -1 -1 -1 40 2883 20 6.79088e+06 229024 706193. 2443.58 15.22 0.158014 0.132069 26254 175826 -1 2742 20 1285 3332 222917 48765 6.02908 6.02908 -145.897 -6.02908 0 0 926341. 3205.33 0.34 0.06 0.15 -1 -1 0.34 0.0172465 0.015323 110 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_091.v common 17.49 vpr 64.17 MiB -1 -1 0.29 21968 12 0.36 -1 -1 36488 -1 -1 19 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65708 32 32 300 332 1 218 83 17 17 289 -1 unnamed_device 25.2 MiB 1.51 1207 11783 4120 5343 2320 64.2 MiB 0.08 0.00 7.30286 -159.953 -7.30286 7.30286 0.87 0.00030603 0.000242276 0.0243601 0.0198348 -1 -1 -1 -1 38 3359 40 6.79088e+06 255968 678818. 2348.85 12.22 0.194451 0.161842 25966 169698 -1 2649 16 1324 3690 183138 42791 6.49812 6.49812 -151.05 -6.49812 0 0 902133. 3121.57 0.32 0.06 0.15 -1 -1 0.32 0.0205613 0.0185503 143 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_092.v common 10.67 vpr 64.06 MiB -1 -1 0.28 22096 12 0.29 -1 -1 36344 -1 -1 19 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65596 32 32 271 303 1 210 83 17 17 289 -1 unnamed_device 25.3 MiB 2.19 1287 12503 3462 6480 2561 64.1 MiB 0.09 0.00 7.56098 -155.748 -7.56098 7.56098 0.87 0.000276068 0.000216352 0.0225535 0.0182166 -1 -1 -1 -1 40 3696 38 6.79088e+06 255968 706193. 2443.58 4.62 0.135123 0.115763 26254 175826 -1 3296 33 1534 4492 706599 301301 6.38062 6.38062 -154.578 -6.38062 0 0 926341. 3205.33 0.34 0.19 0.16 -1 -1 0.34 0.0272189 0.0238633 129 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_093.v common 9.01 vpr 64.89 MiB -1 -1 0.30 22104 14 0.55 -1 -1 36672 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66444 32 32 327 359 1 236 86 17 17 289 -1 unnamed_device 26.0 MiB 2.26 1355 14639 3834 9114 1691 64.9 MiB 0.11 0.00 8.8746 -178.899 -8.8746 8.8746 0.87 0.0003437 0.000274486 0.0312257 0.0253249 -1 -1 -1 -1 44 3437 21 6.79088e+06 296384 787024. 2723.27 2.54 0.13361 0.112093 27118 194962 -1 2971 17 1549 4664 242467 55768 7.78601 7.78601 -168.081 -7.78601 0 0 997811. 3452.63 0.37 0.07 0.18 -1 -1 0.37 0.0237452 0.0214266 167 233 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_094.v common 7.76 vpr 64.07 MiB -1 -1 0.29 21556 12 0.25 -1 -1 36384 -1 -1 19 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65612 30 32 246 278 1 190 81 17 17 289 -1 unnamed_device 25.2 MiB 1.43 1159 7956 2272 5164 520 64.1 MiB 0.06 0.00 7.18863 -142.1 -7.18863 7.18863 0.86 0.000271161 0.000218558 0.0152348 0.0123521 -1 -1 -1 -1 46 2786 16 6.79088e+06 255968 828058. 2865.25 2.71 0.0846098 0.0708201 27406 200422 -1 2411 17 1025 3107 160837 35887 6.20488 6.20488 -133.311 -6.20488 0 0 1.01997e+06 3529.29 0.38 0.05 0.18 -1 -1 0.38 0.0170654 0.0153819 120 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_095.v common 7.10 vpr 63.67 MiB -1 -1 0.22 21596 11 0.22 -1 -1 36036 -1 -1 19 27 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65200 27 32 219 251 1 164 78 17 17 289 -1 unnamed_device 25.1 MiB 2.03 723 8378 2042 5918 418 63.7 MiB 0.05 0.00 7.21752 -126.98 -7.21752 7.21752 0.86 0.000220393 0.000174635 0.013633 0.0110982 -1 -1 -1 -1 30 2453 31 6.79088e+06 255968 556674. 1926.21 1.70 0.0599965 0.0505099 24526 138013 -1 1858 17 1043 2825 131913 33470 6.28323 6.28323 -126.905 -6.28323 0 0 706193. 2443.58 0.28 0.04 0.12 -1 -1 0.28 0.0144648 0.0129977 103 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_096.v common 10.83 vpr 64.64 MiB -1 -1 0.33 22488 13 0.52 -1 -1 36752 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66192 32 32 380 412 1 275 90 17 17 289 -1 unnamed_device 25.8 MiB 2.32 1657 9537 2520 6357 660 64.6 MiB 0.09 0.00 8.12297 -168.527 -8.12297 8.12297 0.88 0.000395899 0.000316514 0.0232488 0.0190608 -1 -1 -1 -1 40 4417 48 6.79088e+06 350272 706193. 2443.58 4.47 0.16472 0.138643 26254 175826 -1 4056 20 2002 5949 375778 80918 7.01061 7.01061 -160.57 -7.01061 0 0 926341. 3205.33 0.34 0.11 0.16 -1 -1 0.34 0.0313426 0.0280464 189 286 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_097.v common 9.08 vpr 64.12 MiB -1 -1 0.30 21984 14 0.31 -1 -1 36536 -1 -1 21 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65660 31 32 277 309 1 196 84 17 17 289 -1 unnamed_device 25.5 MiB 2.03 1072 7770 1789 5369 612 64.1 MiB 0.06 0.00 8.3779 -165.706 -8.3779 8.3779 0.87 0.00029262 0.00023548 0.0159889 0.0132182 -1 -1 -1 -1 36 3014 34 6.79088e+06 282912 648988. 2245.63 3.35 0.10427 0.0873492 25390 158009 -1 2529 17 1112 2992 170582 39422 7.4761 7.4761 -162.537 -7.4761 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0191844 0.0173064 129 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_098.v common 9.20 vpr 63.68 MiB -1 -1 0.26 21832 12 0.21 -1 -1 36708 -1 -1 18 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65208 32 32 229 261 1 176 82 17 17 289 -1 unnamed_device 25.2 MiB 1.73 1078 7914 1805 5400 709 63.7 MiB 0.05 0.00 7.28787 -159.969 -7.28787 7.28787 0.87 0.000238706 0.000190552 0.0132596 0.0109548 -1 -1 -1 -1 36 2782 20 6.79088e+06 242496 648988. 2245.63 3.92 0.0848182 0.0716486 25390 158009 -1 2255 16 1008 2402 136904 31819 6.14227 6.14227 -150.778 -6.14227 0 0 828058. 2865.25 0.31 0.05 0.15 -1 -1 0.31 0.0153056 0.0137901 107 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_099.v common 12.50 vpr 64.19 MiB -1 -1 0.28 21776 13 0.34 -1 -1 36592 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65728 32 32 263 295 1 196 84 17 17 289 -1 unnamed_device 25.4 MiB 1.95 1065 10698 4067 5787 844 64.2 MiB 0.07 0.00 7.98061 -163.524 -7.98061 7.98061 0.86 0.000269779 0.000213768 0.0192227 0.0156587 -1 -1 -1 -1 36 3909 46 6.79088e+06 269440 648988. 2245.63 6.92 0.117238 0.0981445 25390 158009 -1 2692 17 1384 3771 259060 67340 6.79921 6.79921 -153.949 -6.79921 0 0 828058. 2865.25 0.32 0.07 0.14 -1 -1 0.32 0.0187965 0.0167873 128 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_100.v common 9.65 vpr 64.20 MiB -1 -1 0.30 22308 13 0.40 -1 -1 36452 -1 -1 23 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65744 31 32 321 353 1 242 86 17 17 289 -1 unnamed_device 25.5 MiB 1.97 1396 6890 1500 5037 353 64.2 MiB 0.06 0.00 7.43872 -154.496 -7.43872 7.43872 0.87 0.000325015 0.000257865 0.0168091 0.0139154 -1 -1 -1 -1 40 3737 36 6.79088e+06 309856 706193. 2443.58 3.71 0.124398 0.104604 26254 175826 -1 3682 27 2058 6214 669400 215172 6.83487 6.83487 -156.489 -6.83487 0 0 926341. 3205.33 0.34 0.17 0.16 -1 -1 0.34 0.0298576 0.0264696 156 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_101.v common 19.14 vpr 64.36 MiB -1 -1 0.27 21768 11 0.30 -1 -1 36260 -1 -1 22 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65908 30 32 287 319 1 199 84 17 17 289 -1 unnamed_device 25.5 MiB 1.65 1110 11613 3419 5918 2276 64.4 MiB 0.08 0.00 7.42892 -141.349 -7.42892 7.42892 0.86 0.000295954 0.000234425 0.0229563 0.0184624 -1 -1 -1 -1 40 2846 20 6.79088e+06 296384 706193. 2443.58 13.86 0.20384 0.17007 26254 175826 -1 2618 18 1293 3907 258023 62669 6.37282 6.37282 -138.264 -6.37282 0 0 926341. 3205.33 0.34 0.07 0.15 -1 -1 0.34 0.0202377 0.0181181 139 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_102.v common 11.01 vpr 64.24 MiB -1 -1 0.29 22392 15 0.42 -1 -1 36200 -1 -1 19 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65784 32 32 296 328 1 217 83 17 17 289 -1 unnamed_device 25.3 MiB 1.64 1158 4223 686 3480 57 64.2 MiB 0.04 0.00 8.41622 -176.296 -8.41622 8.41622 0.87 0.000304767 0.000241993 0.0108887 0.00909589 -1 -1 -1 -1 38 3611 49 6.79088e+06 255968 678818. 2348.85 5.62 0.127151 0.107421 25966 169698 -1 2680 20 1426 4396 232365 53103 7.21437 7.21437 -162.943 -7.21437 0 0 902133. 3121.57 0.33 0.07 0.15 -1 -1 0.33 0.0221896 0.0198252 145 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_103.v common 7.61 vpr 64.22 MiB -1 -1 0.29 22372 13 0.39 -1 -1 36612 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65764 32 32 285 317 1 216 84 17 17 289 -1 unnamed_device 25.4 MiB 1.71 1276 7221 1624 4993 604 64.2 MiB 0.06 0.00 7.85531 -170.15 -7.85531 7.85531 0.87 0.00029485 0.00023493 0.0156438 0.0129636 -1 -1 -1 -1 38 3322 23 6.79088e+06 269440 678818. 2348.85 2.09 0.100526 0.0841969 25966 169698 -1 2775 19 1297 3768 192177 43619 6.67391 6.67391 -156.024 -6.67391 0 0 902133. 3121.57 0.34 0.06 0.16 -1 -1 0.34 0.0209342 0.0187179 141 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_104.v common 10.03 vpr 63.63 MiB -1 -1 0.24 21308 12 0.24 -1 -1 36228 -1 -1 19 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65156 29 32 239 271 1 187 80 17 17 289 -1 unnamed_device 25.1 MiB 2.18 941 12292 3647 6240 2405 63.6 MiB 0.08 0.00 7.84567 -154.348 -7.84567 7.84567 0.89 0.000253936 0.000194063 0.0208423 0.0169293 -1 -1 -1 -1 36 3159 47 6.79088e+06 255968 648988. 2245.63 4.30 0.106664 0.0891116 25390 158009 -1 2472 21 1302 3079 197616 45139 6.84606 6.84606 -149.622 -6.84606 0 0 828058. 2865.25 0.32 0.06 0.14 -1 -1 0.32 0.0183489 0.0162454 112 154 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_105.v common 9.92 vpr 63.53 MiB -1 -1 0.23 21772 11 0.19 -1 -1 36088 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65052 32 32 235 267 1 177 79 17 17 289 -1 unnamed_device 25.0 MiB 2.85 1083 3966 758 3081 127 63.5 MiB 0.03 0.00 6.83947 -148.082 -6.83947 6.83947 0.87 0.000227454 0.000180372 0.00785354 0.0065266 -1 -1 -1 -1 34 3143 44 6.79088e+06 202080 618332. 2139.56 3.69 0.0841381 0.0702702 25102 150614 -1 2742 18 1192 2985 213870 46281 6.10302 6.10302 -148.662 -6.10302 0 0 787024. 2723.27 0.29 0.06 0.13 -1 -1 0.29 0.0151898 0.0135263 99 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_106.v common 8.43 vpr 64.22 MiB -1 -1 0.29 21548 13 0.40 -1 -1 36204 -1 -1 21 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65764 31 32 294 326 1 213 84 17 17 289 -1 unnamed_device 25.3 MiB 1.64 1276 7221 1604 4833 784 64.2 MiB 0.06 0.00 8.37916 -162.744 -8.37916 8.37916 0.91 0.000325611 0.000262418 0.0166359 0.0137431 -1 -1 -1 -1 38 3408 30 6.79088e+06 282912 678818. 2348.85 2.93 0.128083 0.109284 25966 169698 -1 2832 17 1371 4127 228456 50332 7.06981 7.06981 -151.734 -7.06981 0 0 902133. 3121.57 0.32 0.07 0.15 -1 -1 0.32 0.0204271 0.0184269 144 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_107.v common 6.77 vpr 63.20 MiB -1 -1 0.23 21320 10 0.20 -1 -1 36348 -1 -1 17 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64720 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 24.7 MiB 1.62 808 5722 1225 4266 231 63.2 MiB 0.04 0.00 6.21616 -120.606 -6.21616 6.21616 0.89 0.000221164 0.000175007 0.0104045 0.00864764 -1 -1 -1 -1 30 2732 29 6.79088e+06 229024 556674. 1926.21 1.76 0.0575519 0.0487109 24526 138013 -1 2028 15 966 2271 122606 29724 5.32762 5.32762 -121.477 -5.32762 0 0 706193. 2443.58 0.27 0.04 0.12 -1 -1 0.27 0.0133679 0.0120228 98 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_108.v common 10.33 vpr 63.57 MiB -1 -1 0.24 21400 14 0.23 -1 -1 36056 -1 -1 18 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65100 32 32 239 271 1 183 82 17 17 289 -1 unnamed_device 24.9 MiB 3.37 1099 12720 3439 7948 1333 63.6 MiB 0.08 0.00 7.66942 -163.822 -7.66942 7.66942 0.87 0.000243529 0.000192041 0.0205285 0.0166728 -1 -1 -1 -1 36 3025 27 6.79088e+06 242496 648988. 2245.63 3.39 0.1061 0.0897605 25390 158009 -1 2555 19 1122 2802 177721 38329 6.67042 6.67042 -157.002 -6.67042 0 0 828058. 2865.25 0.32 0.06 0.16 -1 -1 0.32 0.0177506 0.0159192 109 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_109.v common 19.46 vpr 64.16 MiB -1 -1 0.29 22164 13 0.32 -1 -1 36612 -1 -1 19 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65696 31 32 266 298 1 209 82 17 17 289 -1 unnamed_device 25.4 MiB 2.49 1233 13432 4516 6489 2427 64.2 MiB 0.09 0.00 7.95965 -167.858 -7.95965 7.95965 0.86 0.000266072 0.000210831 0.0240325 0.0195684 -1 -1 -1 -1 40 3008 40 6.79088e+06 255968 706193. 2443.58 13.27 0.19373 0.162099 26254 175826 -1 2838 16 1339 3498 222720 49547 6.87761 6.87761 -160.894 -6.87761 0 0 926341. 3205.33 0.35 0.07 0.16 -1 -1 0.35 0.0181432 0.0163924 124 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_110.v common 10.79 vpr 63.81 MiB -1 -1 0.25 21560 12 0.18 -1 -1 36236 -1 -1 17 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65344 31 32 225 257 1 171 80 17 17 289 -1 unnamed_device 25.1 MiB 3.85 973 6100 1428 4438 234 63.8 MiB 0.04 0.00 7.06748 -154.36 -7.06748 7.06748 0.86 0.000223202 0.000177422 0.0105329 0.00868933 -1 -1 -1 -1 36 2757 20 6.79088e+06 229024 648988. 2245.63 3.48 0.0825741 0.0701336 25390 158009 -1 2293 14 959 2284 150234 32953 6.25178 6.25178 -149.108 -6.25178 0 0 828058. 2865.25 0.32 0.05 0.14 -1 -1 0.32 0.0135492 0.0122999 96 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_111.v common 9.64 vpr 64.29 MiB -1 -1 0.29 22044 12 0.24 -1 -1 37240 -1 -1 18 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65836 32 32 288 320 1 202 82 17 17 289 -1 unnamed_device 25.4 MiB 2.41 1283 13432 3933 7023 2476 64.3 MiB 0.09 0.00 6.994 -152.251 -6.994 6.994 0.86 0.000281395 0.000222495 0.0250705 0.0201939 -1 -1 -1 -1 38 3258 45 6.79088e+06 242496 678818. 2348.85 3.56 0.132132 0.110604 25966 169698 -1 2792 20 1289 3786 376231 129036 6.19713 6.19713 -147.635 -6.19713 0 0 902133. 3121.57 0.33 0.11 0.15 -1 -1 0.33 0.0209715 0.0187289 130 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_112.v common 9.70 vpr 64.27 MiB -1 -1 0.30 22156 13 0.36 -1 -1 36336 -1 -1 20 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65812 31 32 282 314 1 210 83 17 17 289 -1 unnamed_device 25.4 MiB 1.29 1255 7103 1784 4908 411 64.3 MiB 0.06 0.00 7.93183 -164.51 -7.93183 7.93183 0.85 0.000299155 0.000231455 0.0147265 0.0120838 -1 -1 -1 -1 34 4320 48 6.79088e+06 269440 618332. 2139.56 4.75 0.131731 0.111526 25102 150614 -1 3155 18 1371 3899 244448 54181 6.88526 6.88526 -161.632 -6.88526 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.021508 0.0192024 143 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_113.v common 8.96 vpr 63.73 MiB -1 -1 0.24 21776 11 0.21 -1 -1 36276 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65260 32 32 233 265 1 182 79 17 17 289 -1 unnamed_device 25.0 MiB 2.28 990 7515 1854 5471 190 63.7 MiB 0.05 0.00 6.41871 -149.746 -6.41871 6.41871 0.85 0.000240487 0.000190646 0.0137526 0.0112731 -1 -1 -1 -1 38 3026 47 6.79088e+06 202080 678818. 2348.85 3.20 0.0953982 0.0797864 25966 169698 -1 2413 21 1194 3250 178371 39313 5.48535 5.48535 -142.68 -5.48535 0 0 902133. 3121.57 0.32 0.06 0.16 -1 -1 0.32 0.0186843 0.0166456 105 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_114.v common 12.04 vpr 63.91 MiB -1 -1 0.26 21764 13 0.26 -1 -1 36520 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65444 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 25.2 MiB 2.82 917 4473 833 3541 99 63.9 MiB 0.04 0.00 7.87829 -165.569 -7.87829 7.87829 0.87 0.000276185 0.000223089 0.0103146 0.00871419 -1 -1 -1 -1 38 3450 43 6.79088e+06 202080 678818. 2348.85 5.60 0.10592 0.0900874 25966 169698 -1 2306 16 1127 3059 160954 38761 7.08558 7.08558 -157.83 -7.08558 0 0 902133. 3121.57 0.35 0.06 0.15 -1 -1 0.35 0.0203278 0.0184164 111 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_115.v common 10.51 vpr 64.06 MiB -1 -1 0.27 21772 13 0.31 -1 -1 36836 -1 -1 18 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65600 32 32 285 317 1 216 82 17 17 289 -1 unnamed_device 25.3 MiB 1.58 1260 5600 1161 4083 356 64.1 MiB 0.05 0.00 7.71882 -168.307 -7.71882 7.71882 0.86 0.000285745 0.000227702 0.0123871 0.0102528 -1 -1 -1 -1 38 3737 30 6.79088e+06 242496 678818. 2348.85 5.29 0.11418 0.0971218 25966 169698 -1 2953 18 1578 4251 227933 50692 6.83143 6.83143 -163.944 -6.83143 0 0 902133. 3121.57 0.33 0.07 0.15 -1 -1 0.33 0.0210355 0.0186374 135 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_116.v common 10.58 vpr 63.96 MiB -1 -1 0.27 21756 11 0.24 -1 -1 36588 -1 -1 20 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65500 29 32 243 275 1 190 81 17 17 289 -1 unnamed_device 25.1 MiB 1.68 1127 10581 2985 5703 1893 64.0 MiB 0.07 0.00 6.61008 -134.136 -6.61008 6.61008 0.86 0.000279865 0.000224683 0.0199887 0.0159653 -1 -1 -1 -1 36 3306 47 6.79088e+06 269440 648988. 2245.63 5.42 0.107102 0.0892004 25390 158009 -1 2514 16 1106 3134 199443 43558 5.42613 5.42613 -127.322 -5.42613 0 0 828058. 2865.25 0.30 0.05 0.14 -1 -1 0.30 0.0147866 0.0132906 115 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_117.v common 8.64 vpr 64.46 MiB -1 -1 0.30 22416 14 0.40 -1 -1 36752 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66008 32 32 318 350 1 240 87 17 17 289 -1 unnamed_device 25.7 MiB 1.59 1488 8535 2146 5424 965 64.5 MiB 0.07 0.00 8.76875 -186.498 -8.76875 8.76875 0.86 0.000362583 0.000287018 0.0193083 0.0159735 -1 -1 -1 -1 38 3684 27 6.79088e+06 309856 678818. 2348.85 3.26 0.119182 0.100318 25966 169698 -1 2955 19 1551 4202 207936 47522 7.68406 7.68406 -173.86 -7.68406 0 0 902133. 3121.57 0.32 0.07 0.15 -1 -1 0.32 0.0242756 0.021789 159 224 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_118.v common 9.05 vpr 63.55 MiB -1 -1 0.23 21436 12 0.19 -1 -1 36484 -1 -1 18 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65076 31 32 222 254 1 185 81 17 17 289 -1 unnamed_device 24.8 MiB 3.65 1096 6031 1363 3831 837 63.6 MiB 0.04 0.00 6.47142 -144.358 -6.47142 6.47142 0.85 0.000220001 0.000174562 0.00993625 0.00817493 -1 -1 -1 -1 34 2909 32 6.79088e+06 242496 618332. 2139.56 2.08 0.0777082 0.0648327 25102 150614 -1 2421 17 1034 2357 151779 34030 5.9596 5.9596 -144.961 -5.9596 0 0 787024. 2723.27 0.29 0.05 0.14 -1 -1 0.29 0.0143555 0.0128796 105 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_119.v common 10.86 vpr 64.31 MiB -1 -1 0.30 22320 13 0.36 -1 -1 36444 -1 -1 19 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65852 32 32 282 314 1 207 83 17 17 289 -1 unnamed_device 25.5 MiB 1.63 1347 4043 780 2904 359 64.3 MiB 0.04 0.00 8.02094 -165.56 -8.02094 8.02094 0.86 0.000288331 0.000229171 0.0095516 0.00798834 -1 -1 -1 -1 36 3935 48 6.79088e+06 255968 648988. 2245.63 5.57 0.110551 0.0928784 25390 158009 -1 3170 18 1474 4112 257378 55889 6.75652 6.75652 -156.97 -6.75652 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0198135 0.0177058 134 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_120.v common 7.79 vpr 63.45 MiB -1 -1 0.26 22100 13 0.22 -1 -1 36400 -1 -1 18 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64976 32 32 238 270 1 179 82 17 17 289 -1 unnamed_device 25.0 MiB 1.63 1085 7914 1906 5077 931 63.5 MiB 0.05 0.00 7.51507 -164.29 -7.51507 7.51507 0.86 0.000281415 0.000219862 0.0140605 0.0113313 -1 -1 -1 -1 36 2804 28 6.79088e+06 242496 648988. 2245.63 2.72 0.0842775 0.0699883 25390 158009 -1 2373 16 961 2488 145746 32856 6.54507 6.54507 -157.043 -6.54507 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0148654 0.0133871 105 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_121.v common 11.97 vpr 64.10 MiB -1 -1 0.27 21832 12 0.27 -1 -1 36496 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65640 32 32 269 301 1 191 84 17 17 289 -1 unnamed_device 25.3 MiB 2.01 1205 12711 3448 7705 1558 64.1 MiB 0.09 0.00 7.30358 -162.225 -7.30358 7.30358 0.86 0.000277649 0.000220438 0.0233518 0.019052 -1 -1 -1 -1 36 3744 48 6.79088e+06 269440 648988. 2245.63 6.30 0.139177 0.117967 25390 158009 -1 2886 17 1210 3824 230778 49498 6.19718 6.19718 -153.421 -6.19718 0 0 828058. 2865.25 0.32 0.06 0.14 -1 -1 0.32 0.0189406 0.0169951 128 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_122.v common 23.82 vpr 64.78 MiB -1 -1 0.35 22816 15 0.60 -1 -1 37112 -1 -1 25 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66336 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 26.0 MiB 1.41 1525 10583 2684 6530 1369 64.8 MiB 0.09 0.00 9.41018 -195.78 -9.41018 9.41018 0.87 0.000383362 0.000293163 0.0245095 0.0198033 -1 -1 -1 -1 40 4114 45 6.79088e+06 336800 706193. 2443.58 18.01 0.258328 0.215055 26254 175826 -1 4000 52 4022 11811 1250416 466982 8.81104 8.81104 -192.679 -8.81104 0 0 926341. 3205.33 0.35 0.33 0.16 -1 -1 0.35 0.0512644 0.0441197 183 256 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_123.v common 8.91 vpr 63.21 MiB -1 -1 0.21 21220 10 0.12 -1 -1 35972 -1 -1 11 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64728 30 32 174 206 1 132 73 17 17 289 -1 unnamed_device 24.6 MiB 2.40 569 10257 4278 5714 265 63.2 MiB 0.05 0.00 4.82946 -112.742 -4.82946 4.82946 0.87 0.000165392 0.000129978 0.0128564 0.0103551 -1 -1 -1 -1 36 2039 50 6.79088e+06 148192 648988. 2245.63 3.28 0.0727513 0.0606662 25390 158009 -1 1387 19 709 1580 96839 23573 4.50726 4.50726 -111.085 -4.50726 0 0 828058. 2865.25 0.31 0.04 0.14 -1 -1 0.31 0.0109364 0.00971432 64 86 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_124.v common 8.44 vpr 63.99 MiB -1 -1 0.26 21564 13 0.23 -1 -1 36052 -1 -1 17 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65528 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 25.3 MiB 1.87 1029 5825 1231 4146 448 64.0 MiB 0.05 0.00 7.87321 -160.437 -7.87321 7.87321 0.90 0.000237756 0.000189143 0.0117383 0.00985194 -1 -1 -1 -1 34 2956 35 6.79088e+06 229024 618332. 2139.56 2.96 0.0844697 0.0707607 25102 150614 -1 2528 20 1164 2881 175744 40261 7.08552 7.08552 -160.21 -7.08552 0 0 787024. 2723.27 0.29 0.06 0.13 -1 -1 0.29 0.0177657 0.0158539 103 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_125.v common 9.54 vpr 63.97 MiB -1 -1 0.24 21624 12 0.25 -1 -1 36232 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65504 32 32 264 296 1 198 81 17 17 289 -1 unnamed_device 25.1 MiB 2.67 1009 12506 4599 6333 1574 64.0 MiB 0.08 0.00 7.16042 -155.076 -7.16042 7.16042 0.87 0.000261399 0.000207888 0.0231888 0.018796 -1 -1 -1 -1 38 3077 27 6.79088e+06 229024 678818. 2348.85 3.33 0.0989852 0.082064 25966 169698 -1 2467 16 1204 3071 181392 41122 6.24752 6.24752 -151.183 -6.24752 0 0 902133. 3121.57 0.33 0.05 0.15 -1 -1 0.33 0.0166954 0.0150332 115 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_126.v common 6.14 vpr 63.21 MiB -1 -1 0.22 21372 9 0.16 -1 -1 36276 -1 -1 19 25 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64732 25 32 183 215 1 134 76 17 17 289 -1 unnamed_device 24.8 MiB 1.23 748 10796 2964 6480 1352 63.2 MiB 0.05 0.00 4.9582 -97.454 -4.9582 4.9582 0.88 0.000179932 0.000142284 0.0140972 0.0113696 -1 -1 -1 -1 28 2171 21 6.79088e+06 255968 531479. 1839.03 1.67 0.0496978 0.0415872 23950 126010 -1 1961 17 814 2175 142079 32307 4.5107 4.5107 -100.849 -4.5107 0 0 648988. 2245.63 0.25 0.04 0.11 -1 -1 0.25 0.0116048 0.0103505 86 110 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_127.v common 20.49 vpr 64.26 MiB -1 -1 0.29 21892 12 0.32 -1 -1 36612 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65804 32 32 300 332 1 227 85 17 17 289 -1 unnamed_device 25.4 MiB 1.65 1301 7897 1769 4878 1250 64.3 MiB 0.06 0.00 7.57033 -160.892 -7.57033 7.57033 0.89 0.000308527 0.000245223 0.0165643 0.0136249 -1 -1 -1 -1 40 3568 32 6.79088e+06 282912 706193. 2443.58 15.05 0.222588 0.188644 26254 175826 -1 3380 19 1713 4993 342694 73491 6.58422 6.58422 -157.178 -6.58422 0 0 926341. 3205.33 0.34 0.09 0.17 -1 -1 0.34 0.0214021 0.0191499 140 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_128.v common 18.74 vpr 64.20 MiB -1 -1 0.31 22508 13 0.37 -1 -1 36564 -1 -1 24 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65736 31 32 290 322 1 215 87 17 17 289 -1 unnamed_device 25.3 MiB 2.00 1277 8535 2081 5648 806 64.2 MiB 0.07 0.00 8.4853 -176.747 -8.4853 8.4853 0.88 0.00029878 0.000237391 0.0175466 0.0143222 -1 -1 -1 -1 30 4058 33 6.79088e+06 323328 556674. 1926.21 13.02 0.162962 0.138082 24526 138013 -1 3141 20 1517 4357 239407 53989 7.3039 7.3039 -168.302 -7.3039 0 0 706193. 2443.58 0.28 0.07 0.12 -1 -1 0.28 0.0220861 0.0197264 146 199 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 8.51 vpr 64.33 MiB -1 -1 0.19 21584 1 0.03 -1 -1 34000 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65872 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 25.4 MiB 4.12 992 16773 5017 8446 3310 64.3 MiB 0.12 0.00 5.50182 -160.116 -5.50182 5.50182 0.89 0.000217392 0.000172749 0.0202573 0.0163653 -1 -1 -1 -1 30 2790 25 6.87369e+06 363320 556674. 1926.21 1.14 0.0600286 0.0497682 25186 138497 -1 2050 21 1426 2321 167960 54826 4.58385 4.58385 -149.725 -4.58385 0 0 706193. 2443.58 0.27 0.06 0.12 -1 -1 0.27 0.0144926 0.0125486 142 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 8.70 vpr 64.35 MiB -1 -1 0.19 21636 1 0.03 -1 -1 33936 -1 -1 24 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65896 30 32 363 293 1 200 86 17 17 289 -1 unnamed_device 25.6 MiB 3.81 985 11804 3116 7588 1100 64.4 MiB 0.09 0.00 4.6679 -136.949 -4.6679 4.6679 0.93 0.00020882 0.000165526 0.0153518 0.0124577 -1 -1 -1 -1 38 2075 19 6.87369e+06 335372 678818. 2348.85 1.58 0.0697692 0.0572803 26626 170182 -1 1843 21 1475 2215 137639 32758 3.98296 3.98296 -132.597 -3.98296 0 0 902133. 3121.57 0.34 0.05 0.14 -1 -1 0.34 0.0150757 0.0131826 141 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 9.00 vpr 64.14 MiB -1 -1 0.18 21456 1 0.03 -1 -1 33772 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65684 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 25.3 MiB 4.24 979 10873 2754 7440 679 64.1 MiB 0.08 0.00 4.36457 -122.364 -4.36457 4.36457 0.89 0.000182972 0.00014521 0.0124166 0.00997204 -1 -1 -1 -1 34 2557 26 6.87369e+06 293451 618332. 2139.56 1.53 0.0653695 0.0536214 25762 151098 -1 2008 23 1430 1899 131183 31865 3.84576 3.84576 -123.257 -3.84576 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0127133 0.0109722 124 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 6.20 vpr 63.94 MiB -1 -1 0.19 21452 1 0.03 -1 -1 33676 -1 -1 29 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65476 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 25.4 MiB 1.48 974 13557 4041 7216 2300 63.9 MiB 0.10 0.00 4.63038 -128.348 -4.63038 4.63038 0.87 0.000185454 0.000146198 0.0153275 0.0124612 -1 -1 -1 -1 34 2407 26 6.87369e+06 405241 618332. 2139.56 1.52 0.066463 0.0546049 25762 151098 -1 1961 22 1401 2565 182639 41805 3.8767 3.8767 -124.544 -3.8767 0 0 787024. 2723.27 0.29 0.05 0.14 -1 -1 0.29 0.0118213 0.0101877 124 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 7.04 vpr 64.41 MiB -1 -1 0.17 21356 1 0.03 -1 -1 33660 -1 -1 27 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65956 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 25.6 MiB 2.16 1051 17023 5465 9028 2530 64.4 MiB 0.12 0.00 4.52512 -133.724 -4.52512 4.52512 0.88 0.000201529 0.000159499 0.0188235 0.0148836 -1 -1 -1 -1 34 2741 27 6.87369e+06 377294 618332. 2139.56 1.63 0.0775819 0.0634841 25762 151098 -1 2360 24 1773 3437 275466 61389 3.9127 3.9127 -134.692 -3.9127 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0142261 0.0119439 131 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 6.08 vpr 64.25 MiB -1 -1 0.20 21340 1 0.03 -1 -1 33796 -1 -1 30 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65796 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 25.4 MiB 1.88 1058 17134 5267 9607 2260 64.3 MiB 0.12 0.00 3.34527 -120.073 -3.34527 3.34527 0.87 0.000218603 0.00017219 0.0202554 0.016458 -1 -1 -1 -1 32 2826 21 6.87369e+06 419215 586450. 2029.24 0.95 0.0556855 0.0461075 25474 144626 -1 2263 21 1465 2393 192469 43839 3.15781 3.15781 -124.682 -3.15781 0 0 744469. 2576.02 0.29 0.06 0.13 -1 -1 0.29 0.0134695 0.011624 136 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 7.37 vpr 63.79 MiB -1 -1 0.18 21524 1 0.03 -1 -1 34180 -1 -1 19 27 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65320 27 32 259 221 1 141 78 17 17 289 -1 unnamed_device 25.3 MiB 2.88 666 11532 3128 7372 1032 63.8 MiB 0.06 0.00 3.87934 -105.571 -3.87934 3.87934 0.87 0.000168595 0.000134332 0.0121237 0.00963779 -1 -1 -1 -1 34 1687 23 6.87369e+06 265503 618332. 2139.56 1.38 0.0549054 0.0449015 25762 151098 -1 1454 23 1227 2083 146465 34887 2.92996 2.92996 -102.338 -2.92996 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0105566 0.00910985 97 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 5.25 vpr 63.88 MiB -1 -1 0.18 21244 1 0.03 -1 -1 33684 -1 -1 32 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65412 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 25.2 MiB 1.26 977 15431 4363 8928 2140 63.9 MiB 0.10 0.00 3.48795 -106.181 -3.48795 3.48795 0.86 0.000180863 0.000143801 0.0144896 0.0116236 -1 -1 -1 -1 30 2176 24 6.87369e+06 447163 556674. 1926.21 0.89 0.044912 0.0371143 25186 138497 -1 1868 21 942 1689 101117 22863 2.58436 2.58436 -98.3935 -2.58436 0 0 706193. 2443.58 0.27 0.04 0.12 -1 -1 0.27 0.0107869 0.00937976 119 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 8.09 vpr 63.79 MiB -1 -1 0.20 21552 1 0.03 -1 -1 34124 -1 -1 17 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65316 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 25.1 MiB 3.42 888 12980 4535 6374 2071 63.8 MiB 0.08 0.00 3.31297 -114.045 -3.31297 3.31297 0.87 0.000181538 0.000142661 0.0157881 0.0126348 -1 -1 -1 -1 34 2335 21 6.87369e+06 237555 618332. 2139.56 1.49 0.0674077 0.055309 25762 151098 -1 2046 18 1239 1803 154821 34852 3.09961 3.09961 -119.68 -3.09961 0 0 787024. 2723.27 0.30 0.04 0.13 -1 -1 0.30 0.0107691 0.00936183 113 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 9.78 vpr 63.61 MiB -1 -1 0.20 21576 1 0.03 -1 -1 33868 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65140 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 25.0 MiB 5.09 870 10400 2388 6951 1061 63.6 MiB 0.07 0.00 3.96554 -131.116 -3.96554 3.96554 0.89 0.000180716 0.000142889 0.0125026 0.0101082 -1 -1 -1 -1 34 2168 22 6.87369e+06 223581 618332. 2139.56 1.44 0.0636113 0.0524674 25762 151098 -1 1797 23 1331 2222 162159 37386 3.08026 3.08026 -125.632 -3.08026 0 0 787024. 2723.27 0.32 0.05 0.14 -1 -1 0.32 0.0121771 0.0104954 107 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 8.69 vpr 64.05 MiB -1 -1 0.19 21508 1 0.03 -1 -1 33956 -1 -1 16 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65592 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 25.2 MiB 4.14 661 6718 1392 5000 326 64.1 MiB 0.05 0.00 3.87398 -111.275 -3.87398 3.87398 0.87 0.000176543 0.00013915 0.008433 0.00681307 -1 -1 -1 -1 34 1788 24 6.87369e+06 223581 618332. 2139.56 1.41 0.0576011 0.0474062 25762 151098 -1 1485 22 1074 1734 115497 27750 2.96596 2.96596 -108.426 -2.96596 0 0 787024. 2723.27 0.30 0.04 0.14 -1 -1 0.30 0.0113795 0.00977261 98 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 8.02 vpr 63.83 MiB -1 -1 0.17 21600 1 0.03 -1 -1 33444 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65360 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 25.2 MiB 3.47 808 7606 1773 5149 684 63.8 MiB 0.06 0.00 3.6704 -113.65 -3.6704 3.6704 0.88 0.000168811 0.000132835 0.00866371 0.00699783 -1 -1 -1 -1 34 2163 24 6.87369e+06 237555 618332. 2139.56 1.44 0.0553507 0.0455829 25762 151098 -1 1798 17 1055 1503 107396 25939 3.04261 3.04261 -113.8 -3.04261 0 0 787024. 2723.27 0.30 0.04 0.14 -1 -1 0.30 0.0115029 0.0100669 107 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 10.96 vpr 64.27 MiB -1 -1 0.19 21664 1 0.03 -1 -1 34060 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65812 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 25.6 MiB 5.00 843 12183 3137 7426 1620 64.3 MiB 0.10 0.00 4.18499 -131.201 -4.18499 4.18499 0.87 0.000213814 0.000170245 0.0152805 0.0123207 -1 -1 -1 -1 36 2671 41 6.87369e+06 321398 648988. 2245.63 2.72 0.088454 0.0737936 26050 158493 -1 2062 22 1974 3012 214596 52850 3.52851 3.52851 -128.635 -3.52851 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0143818 0.0124351 142 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 7.31 vpr 64.50 MiB -1 -1 0.19 21552 1 0.04 -1 -1 34076 -1 -1 31 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66052 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 25.6 MiB 3.13 910 14567 3971 8883 1713 64.5 MiB 0.11 0.00 4.81568 -140.871 -4.81568 4.81568 0.87 0.000222205 0.000176582 0.0162889 0.0130433 -1 -1 -1 -1 30 2435 22 6.87369e+06 433189 556674. 1926.21 0.97 0.0512967 0.0422141 25186 138497 -1 1932 21 1346 2179 134417 31060 3.80436 3.80436 -134.289 -3.80436 0 0 706193. 2443.58 0.30 0.05 0.12 -1 -1 0.30 0.0130764 0.011223 133 61 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 6.66 vpr 63.70 MiB -1 -1 0.17 21160 1 0.03 -1 -1 33644 -1 -1 19 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65232 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 25.3 MiB 2.65 780 9368 2426 5947 995 63.7 MiB 0.06 0.00 3.03342 -94.7718 -3.03342 3.03342 0.88 0.000161452 0.000127603 0.0119105 0.00959906 -1 -1 -1 -1 32 2012 24 6.87369e+06 265503 586450. 2029.24 0.90 0.0401974 0.033263 25474 144626 -1 1689 24 1222 1996 155355 35631 2.89726 2.89726 -98.8151 -2.89726 0 0 744469. 2576.02 0.28 0.05 0.13 -1 -1 0.28 0.0110788 0.00946006 94 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 11.05 vpr 64.35 MiB -1 -1 0.19 21532 1 0.03 -1 -1 33936 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65892 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 25.6 MiB 3.00 1098 16273 6888 8626 759 64.3 MiB 0.11 0.00 3.7276 -123.933 -3.7276 3.7276 0.88 0.000214107 0.000169295 0.0202248 0.016307 -1 -1 -1 -1 30 2688 22 6.87369e+06 335372 556674. 1926.21 4.85 0.0986908 0.0817035 25186 138497 -1 2213 19 1465 2579 155231 37186 3.02451 3.02451 -118.452 -3.02451 0 0 706193. 2443.58 0.28 0.05 0.12 -1 -1 0.28 0.0129597 0.0112098 135 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 9.93 vpr 64.36 MiB -1 -1 0.18 21512 1 0.03 -1 -1 33664 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65900 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 25.4 MiB 5.21 1093 10315 2797 6648 870 64.4 MiB 0.08 0.00 4.18499 -137.545 -4.18499 4.18499 0.87 0.000201274 0.000159325 0.0134844 0.0108486 -1 -1 -1 -1 34 2792 22 6.87369e+06 293451 618332. 2139.56 1.52 0.0713528 0.0588687 25762 151098 -1 2280 21 1588 2312 178533 39644 3.21661 3.21661 -126.358 -3.21661 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0132114 0.0115057 140 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 7.28 vpr 64.02 MiB -1 -1 0.19 21436 1 0.03 -1 -1 33724 -1 -1 28 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65560 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 25.0 MiB 3.29 867 16445 5131 9259 2055 64.0 MiB 0.10 0.00 2.85191 -106.24 -2.85191 2.85191 0.88 0.000185716 0.000144756 0.0162943 0.0128716 -1 -1 -1 -1 30 1915 21 6.87369e+06 391268 556674. 1926.21 0.88 0.0466519 0.0380285 25186 138497 -1 1643 20 1156 1984 111966 26084 1.93252 1.93252 -95.358 -1.93252 0 0 706193. 2443.58 0.28 0.04 0.12 -1 -1 0.28 0.0112675 0.00965214 109 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 5.07 vpr 63.52 MiB -1 -1 0.17 21232 1 0.03 -1 -1 33852 -1 -1 14 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65048 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 25.0 MiB 1.07 548 9196 3125 4759 1312 63.5 MiB 0.05 0.00 2.38778 -80.5436 -2.38778 2.38778 0.91 0.0001446 0.000113739 0.00938499 0.00749858 -1 -1 -1 -1 30 1363 23 6.87369e+06 195634 556674. 1926.21 0.84 0.0329234 0.0269981 25186 138497 -1 1117 18 558 803 49612 11779 2.06882 2.06882 -84.1472 -2.06882 0 0 706193. 2443.58 0.28 0.03 0.12 -1 -1 0.28 0.00770304 0.00665885 71 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 8.78 vpr 63.76 MiB -1 -1 0.19 21464 1 0.03 -1 -1 33992 -1 -1 19 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65288 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 25.1 MiB 4.81 940 10406 3145 6506 755 63.8 MiB 0.08 0.00 5.00887 -149.776 -5.00887 5.00887 0.86 0.00017477 0.000138479 0.0117171 0.00940101 -1 -1 -1 -1 30 2234 22 6.87369e+06 265503 556674. 1926.21 0.89 0.0415066 0.0342714 25186 138497 -1 1813 18 871 1255 70103 17136 3.44261 3.44261 -132.101 -3.44261 0 0 706193. 2443.58 0.27 0.03 0.12 -1 -1 0.27 0.01055 0.00924348 116 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 5.59 vpr 64.50 MiB -1 -1 0.17 21616 1 0.03 -1 -1 34020 -1 -1 35 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66048 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 25.6 MiB 1.32 1070 16515 4276 10581 1658 64.5 MiB 0.11 0.00 4.18253 -136.483 -4.18253 4.18253 0.90 0.000218939 0.000173716 0.0182828 0.0146876 -1 -1 -1 -1 32 2544 27 6.87369e+06 489084 586450. 2029.24 0.99 0.0558548 0.0460373 25474 144626 -1 2155 19 1439 2152 176436 39627 3.6371 3.6371 -132.704 -3.6371 0 0 744469. 2576.02 0.29 0.05 0.13 -1 -1 0.29 0.0118721 0.0102692 137 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 8.54 vpr 64.51 MiB -1 -1 0.19 21848 1 0.03 -1 -1 33772 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66060 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 25.6 MiB 3.84 1162 10481 3111 6377 993 64.5 MiB 0.08 0.00 4.31025 -134.645 -4.31025 4.31025 0.88 0.000213009 0.000168271 0.0137125 0.0109948 -1 -1 -1 -1 34 2905 21 6.87369e+06 307425 618332. 2139.56 1.49 0.0695954 0.0570431 25762 151098 -1 2438 21 1694 2671 225483 49755 3.71046 3.71046 -133.687 -3.71046 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0147713 0.0128025 142 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 6.64 vpr 63.23 MiB -1 -1 0.18 21204 1 0.03 -1 -1 34132 -1 -1 17 26 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64744 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 24.8 MiB 2.51 352 9555 3939 4800 816 63.2 MiB 0.04 0.00 2.60613 -72.4296 -2.60613 2.60613 0.90 0.000126887 9.8819e-05 0.00886621 0.007068 -1 -1 -1 -1 30 1310 31 6.87369e+06 237555 556674. 1926.21 0.97 0.0326299 0.026786 25186 138497 -1 893 26 691 1039 62560 16373 2.27547 2.27547 -71.0198 -2.27547 0 0 706193. 2443.58 0.29 0.03 0.12 -1 -1 0.29 0.00941443 0.00807459 67 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 6.62 vpr 64.26 MiB -1 -1 0.18 21388 1 0.03 -1 -1 33940 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65800 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 25.3 MiB 1.80 1029 10263 2694 6379 1190 64.3 MiB 0.07 0.00 4.63338 -131.361 -4.63338 4.63338 0.89 0.000211893 0.000172216 0.0113791 0.0091156 -1 -1 -1 -1 34 2410 23 6.87369e+06 321398 618332. 2139.56 1.51 0.0621788 0.0513478 25762 151098 -1 2071 24 1472 2681 184281 41722 3.7964 3.7964 -126.792 -3.7964 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0124751 0.0107363 119 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 5.24 vpr 63.29 MiB -1 -1 0.16 21268 1 0.03 -1 -1 33536 -1 -1 12 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64804 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 24.7 MiB 0.87 415 9836 3792 4975 1069 63.3 MiB 0.04 0.00 2.58823 -76.4648 -2.58823 2.58823 0.87 0.000125104 9.7628e-05 0.00884574 0.00709388 -1 -1 -1 -1 34 1145 25 6.87369e+06 167686 618332. 2139.56 1.32 0.0430803 0.0355142 25762 151098 -1 885 16 568 649 42105 11703 1.91852 1.91852 -73.9266 -1.91852 0 0 787024. 2723.27 0.31 0.02 0.14 -1 -1 0.31 0.00643702 0.00563631 65 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 5.43 vpr 63.78 MiB -1 -1 0.17 21612 1 0.03 -1 -1 34048 -1 -1 30 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65312 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 25.1 MiB 1.40 1004 15430 3940 9856 1634 63.8 MiB 0.10 0.00 4.64012 -131.611 -4.64012 4.64012 0.86 0.000187172 0.000147852 0.0150625 0.0120806 -1 -1 -1 -1 32 2393 20 6.87369e+06 419215 586450. 2029.24 0.92 0.0460406 0.0380854 25474 144626 -1 1946 21 1053 1702 124165 28883 3.7541 3.7541 -122.23 -3.7541 0 0 744469. 2576.02 0.30 0.04 0.13 -1 -1 0.30 0.011511 0.00997266 120 24 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 6.04 vpr 63.88 MiB -1 -1 0.18 21460 1 0.04 -1 -1 34124 -1 -1 31 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65416 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 25.4 MiB 1.30 1073 17591 5429 9856 2306 63.9 MiB 0.12 0.00 3.58631 -114.754 -3.58631 3.58631 0.86 0.00018755 0.000147804 0.0171624 0.0136837 -1 -1 -1 -1 34 2373 20 6.87369e+06 433189 618332. 2139.56 1.46 0.0703845 0.0580749 25762 151098 -1 2028 19 1130 2110 126575 29957 2.92126 2.92126 -109.204 -2.92126 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0125005 0.0108608 130 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 7.29 vpr 64.48 MiB -1 -1 0.17 21576 1 0.03 -1 -1 33980 -1 -1 28 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66028 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 25.6 MiB 2.33 1004 15824 5333 7131 3360 64.5 MiB 0.09 0.00 4.74578 -132.154 -4.74578 4.74578 0.87 0.000200646 0.000157617 0.0170658 0.0136257 -1 -1 -1 -1 34 2495 24 6.87369e+06 391268 618332. 2139.56 1.77 0.0769595 0.0633788 25762 151098 -1 2006 23 1429 2568 184000 43320 3.81646 3.81646 -126.442 -3.81646 0 0 787024. 2723.27 0.33 0.06 0.14 -1 -1 0.33 0.0136491 0.0117499 131 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 6.03 vpr 63.66 MiB -1 -1 0.18 21464 1 0.03 -1 -1 33508 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65188 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 25.1 MiB 1.44 894 11776 3852 5929 1995 63.7 MiB 0.07 0.00 3.01142 -109.398 -3.01142 3.01142 0.86 0.000176946 0.00013899 0.0138676 0.0110936 -1 -1 -1 -1 34 1983 21 6.87369e+06 223581 618332. 2139.56 1.41 0.0634284 0.0524243 25762 151098 -1 1738 19 935 1554 112505 25755 2.78496 2.78496 -110.254 -2.78496 0 0 787024. 2723.27 0.33 0.04 0.13 -1 -1 0.33 0.0111853 0.00959634 99 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 5.74 vpr 63.60 MiB -1 -1 0.18 21244 1 0.03 -1 -1 33760 -1 -1 26 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65128 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 25.1 MiB 1.66 686 13738 3515 8195 2028 63.6 MiB 0.08 0.00 3.22907 -99.998 -3.22907 3.22907 0.87 0.000161894 0.000128535 0.0127397 0.0101941 -1 -1 -1 -1 32 1791 21 6.87369e+06 363320 586450. 2029.24 0.89 0.0389462 0.0320306 25474 144626 -1 1519 21 966 1551 138665 31664 3.03361 3.03361 -102.154 -3.03361 0 0 744469. 2576.02 0.29 0.04 0.13 -1 -1 0.29 0.0109926 0.00958498 97 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 5.60 vpr 63.57 MiB -1 -1 0.18 21204 1 0.03 -1 -1 33892 -1 -1 18 28 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65100 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 25.1 MiB 1.45 760 11698 3432 6949 1317 63.6 MiB 0.07 0.00 3.46101 -100.103 -3.46101 3.46101 0.87 0.000156832 0.000123268 0.0125783 0.0100956 -1 -1 -1 -1 32 2253 27 6.87369e+06 251529 586450. 2029.24 0.96 0.0411185 0.0337766 25474 144626 -1 1755 23 1204 2187 187934 42549 3.07756 3.07756 -104.944 -3.07756 0 0 744469. 2576.02 0.29 0.05 0.13 -1 -1 0.29 0.0111367 0.00951466 95 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 6.45 vpr 63.70 MiB -1 -1 0.17 21180 1 0.03 -1 -1 33836 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65224 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 25.2 MiB 1.93 766 11106 2788 6396 1922 63.7 MiB 0.07 0.00 3.84524 -116.411 -3.84524 3.84524 0.87 0.000197252 0.000146353 0.0117572 0.00943593 -1 -1 -1 -1 34 1889 24 6.87369e+06 237555 618332. 2139.56 1.39 0.0562714 0.0464698 25762 151098 -1 1686 21 1144 1880 136805 31506 2.90826 2.90826 -111.82 -2.90826 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0114918 0.00994396 101 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 5.48 vpr 63.86 MiB -1 -1 0.17 21540 1 0.03 -1 -1 33932 -1 -1 26 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65392 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 25.3 MiB 1.31 707 5831 1162 4318 351 63.9 MiB 0.05 0.00 3.52097 -104.958 -3.52097 3.52097 0.87 0.000171914 0.000134749 0.00644796 0.00517352 -1 -1 -1 -1 26 2268 25 6.87369e+06 363320 503264. 1741.40 1.14 0.0351103 0.0290267 24322 120374 -1 1908 24 1432 2460 211794 50111 3.34816 3.34816 -113.514 -3.34816 0 0 618332. 2139.56 0.24 0.06 0.11 -1 -1 0.24 0.0111884 0.00959163 102 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 7.85 vpr 63.75 MiB -1 -1 0.17 21568 1 0.03 -1 -1 33840 -1 -1 25 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65276 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 25.1 MiB 3.79 703 8591 2001 5849 741 63.7 MiB 0.06 0.00 3.08002 -96.8082 -3.08002 3.08002 0.87 0.000174136 0.000138121 0.00935411 0.00754332 -1 -1 -1 -1 32 2079 29 6.87369e+06 349346 586450. 2029.24 0.96 0.0418974 0.0346882 25474 144626 -1 1673 21 1230 1792 142577 34533 2.40547 2.40547 -97.8315 -2.40547 0 0 744469. 2576.02 0.29 0.04 0.13 -1 -1 0.29 0.011033 0.00946145 106 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 8.48 vpr 64.49 MiB -1 -1 0.18 21608 1 0.03 -1 -1 34092 -1 -1 40 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66040 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 25.7 MiB 4.25 1195 18160 4666 11113 2381 64.5 MiB 0.14 0.00 4.16289 -124.14 -4.16289 4.16289 0.86 0.000229536 0.000180967 0.0181676 0.0144561 -1 -1 -1 -1 32 3261 23 6.87369e+06 558954 586450. 2029.24 1.01 0.0561579 0.0461033 25474 144626 -1 2610 22 1638 3229 246794 56458 4.1243 4.1243 -129.916 -4.1243 0 0 744469. 2576.02 0.29 0.07 0.13 -1 -1 0.29 0.0152047 0.0130998 156 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 8.93 vpr 64.48 MiB -1 -1 0.19 21620 1 0.03 -1 -1 33872 -1 -1 38 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66028 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 25.7 MiB 4.08 1033 17476 4934 10272 2270 64.5 MiB 0.12 0.00 3.9888 -134.401 -3.9888 3.9888 0.87 0.000229321 0.000182431 0.0182869 0.0145763 -1 -1 -1 -1 34 2352 21 6.87369e+06 531006 618332. 2139.56 1.53 0.0844112 0.0689581 25762 151098 -1 2021 19 1552 2502 154132 36441 3.07746 3.07746 -120.734 -3.07746 0 0 787024. 2723.27 0.32 0.05 0.13 -1 -1 0.32 0.0130941 0.0113113 148 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 8.62 vpr 63.88 MiB -1 -1 0.19 21436 1 0.03 -1 -1 33496 -1 -1 18 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65412 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 25.2 MiB 3.89 827 12506 3647 6930 1929 63.9 MiB 0.08 0.00 4.12999 -122.522 -4.12999 4.12999 0.88 0.000173881 0.000136756 0.0144355 0.0116593 -1 -1 -1 -1 34 2129 21 6.87369e+06 251529 618332. 2139.56 1.50 0.0606221 0.0498021 25762 151098 -1 1834 20 1281 1931 143544 34065 3.45621 3.45621 -119.844 -3.45621 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0109344 0.00949315 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 8.56 vpr 64.23 MiB -1 -1 0.17 21420 1 0.03 -1 -1 33908 -1 -1 26 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65772 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 25.5 MiB 3.52 986 12959 4044 6276 2639 64.2 MiB 0.09 0.00 3.77586 -121.787 -3.77586 3.77586 0.91 0.000210073 0.000165408 0.0155697 0.0124705 -1 -1 -1 -1 34 2740 27 6.87369e+06 363320 618332. 2139.56 1.70 0.0819817 0.0673999 25762 151098 -1 2242 22 1647 2835 204711 47759 3.12956 3.12956 -121.716 -3.12956 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0155844 0.0134228 136 61 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 11.03 vpr 64.66 MiB -1 -1 0.20 21684 1 0.03 -1 -1 33864 -1 -1 25 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66208 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 25.8 MiB 5.80 1219 10033 2675 6590 768 64.7 MiB 0.09 0.00 5.67608 -170.361 -5.67608 5.67608 0.85 0.000215035 0.000170419 0.0128736 0.0104017 -1 -1 -1 -1 34 3445 48 6.87369e+06 349346 618332. 2139.56 1.98 0.0848909 0.0694761 25762 151098 -1 2683 23 2323 3428 293108 64897 4.86379 4.86379 -170.23 -4.86379 0 0 787024. 2723.27 0.32 0.08 0.14 -1 -1 0.32 0.015249 0.0131515 159 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 10.35 vpr 64.50 MiB -1 -1 0.20 21544 1 0.03 -1 -1 33864 -1 -1 27 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66044 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 25.8 MiB 5.58 920 11145 2994 7135 1016 64.5 MiB 0.10 0.00 5.24874 -155.932 -5.24874 5.24874 0.86 0.00022297 0.000174611 0.0140711 0.011303 -1 -1 -1 -1 34 2724 30 6.87369e+06 377294 618332. 2139.56 1.58 0.07622 0.0624516 25762 151098 -1 2074 21 1789 2709 186218 47251 4.63715 4.63715 -156.683 -4.63715 0 0 787024. 2723.27 0.31 0.06 0.13 -1 -1 0.31 0.0148903 0.0129278 152 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 8.04 vpr 64.29 MiB -1 -1 0.18 21348 1 0.03 -1 -1 33760 -1 -1 25 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65832 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 25.4 MiB 3.70 890 9058 2302 6004 752 64.3 MiB 0.08 0.00 4.13563 -126.898 -4.13563 4.13563 0.96 0.000204981 0.000162576 0.0121584 0.00987331 -1 -1 -1 -1 32 3034 27 6.87369e+06 349346 586450. 2029.24 1.04 0.0504547 0.0418583 25474 144626 -1 2241 19 1631 2733 219947 53339 3.29421 3.29421 -122.325 -3.29421 0 0 744469. 2576.02 0.29 0.06 0.13 -1 -1 0.29 0.0121847 0.0105805 131 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 8.31 vpr 63.91 MiB -1 -1 0.18 21600 1 0.03 -1 -1 34120 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65444 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 25.2 MiB 3.66 1007 14907 5613 7321 1973 63.9 MiB 0.10 0.00 4.35225 -119.373 -4.35225 4.35225 0.86 0.000180219 0.000142392 0.0162985 0.0129916 -1 -1 -1 -1 34 2610 26 6.87369e+06 279477 618332. 2139.56 1.51 0.068598 0.0563448 25762 151098 -1 2183 24 1390 2007 154868 35799 3.95806 3.95806 -125.287 -3.95806 0 0 787024. 2723.27 0.31 0.05 0.13 -1 -1 0.31 0.0124195 0.0106856 119 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 8.68 vpr 64.83 MiB -1 -1 0.22 21816 1 0.03 -1 -1 34136 -1 -1 38 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66388 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 26.0 MiB 4.21 1243 16762 4798 10410 1554 64.8 MiB 0.14 0.00 4.91341 -161.214 -4.91341 4.91341 0.87 0.000279995 0.000224746 0.0205663 0.0165792 -1 -1 -1 -1 32 3317 36 6.87369e+06 531006 586450. 2029.24 1.13 0.0731824 0.06056 25474 144626 -1 2723 16 1683 2742 221851 50536 4.03776 4.03776 -154.055 -4.03776 0 0 744469. 2576.02 0.29 0.06 0.13 -1 -1 0.29 0.0149162 0.0130734 173 87 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 6.52 vpr 63.63 MiB -1 -1 0.17 21204 1 0.03 -1 -1 33696 -1 -1 22 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65156 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 25.1 MiB 2.55 672 7339 1576 4955 808 63.6 MiB 0.05 0.00 3.55895 -103.04 -3.55895 3.55895 0.86 0.000196884 0.000155301 0.00821501 0.00658229 -1 -1 -1 -1 32 1962 22 6.87369e+06 307425 586450. 2029.24 0.94 0.0350549 0.0289551 25474 144626 -1 1649 22 1252 2135 162207 38995 2.88796 2.88796 -104.481 -2.88796 0 0 744469. 2576.02 0.28 0.05 0.13 -1 -1 0.28 0.0102635 0.00880367 96 28 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 7.94 vpr 64.35 MiB -1 -1 0.19 21664 1 0.03 -1 -1 33944 -1 -1 23 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65896 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 25.5 MiB 3.84 1158 13127 3358 8192 1577 64.4 MiB 0.10 0.00 4.80948 -147.413 -4.80948 4.80948 0.87 0.000204709 0.000158017 0.0158426 0.0124126 -1 -1 -1 -1 30 3059 23 6.87369e+06 321398 556674. 1926.21 0.98 0.0516685 0.0423348 25186 138497 -1 2479 20 1353 2038 146343 31929 3.92376 3.92376 -138.461 -3.92376 0 0 706193. 2443.58 0.27 0.05 0.12 -1 -1 0.27 0.0125177 0.0108805 140 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 6.85 vpr 64.09 MiB -1 -1 0.18 21568 1 0.04 -1 -1 34064 -1 -1 32 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65632 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 25.3 MiB 2.56 1064 11703 2949 7949 805 64.1 MiB 0.09 0.00 3.7235 -118.87 -3.7235 3.7235 0.89 0.000214498 0.000170261 0.0133162 0.0106671 -1 -1 -1 -1 28 2710 26 6.87369e+06 447163 531479. 1839.03 1.11 0.049963 0.0411625 24610 126494 -1 2453 23 1578 2751 231219 51613 3.38641 3.38641 -125.641 -3.38641 0 0 648988. 2245.63 0.26 0.06 0.11 -1 -1 0.26 0.0136939 0.0117776 132 53 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 5.65 vpr 63.76 MiB -1 -1 0.17 21504 1 0.03 -1 -1 33824 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65292 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 25.1 MiB 1.47 984 6120 1199 4615 306 63.8 MiB 0.06 0.00 4.14049 -128.002 -4.14049 4.14049 0.93 0.000183612 0.000145389 0.00747757 0.00607191 -1 -1 -1 -1 32 2790 25 6.87369e+06 363320 586450. 2029.24 1.01 0.0404815 0.0338292 25474 144626 -1 2197 22 1532 2815 214696 50708 3.5868 3.5868 -125.637 -3.5868 0 0 744469. 2576.02 0.28 0.06 0.13 -1 -1 0.28 0.0119646 0.010365 123 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 9.12 vpr 64.24 MiB -1 -1 0.20 21456 1 0.03 -1 -1 33960 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65780 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 25.3 MiB 4.18 1135 13883 3973 8209 1701 64.2 MiB 0.10 0.00 4.95345 -149.04 -4.95345 4.95345 0.86 0.000206099 0.000163198 0.0172178 0.0138493 -1 -1 -1 -1 34 2680 19 6.87369e+06 307425 618332. 2139.56 1.70 0.0813986 0.0676801 25762 151098 -1 2300 18 1333 1762 130570 29977 3.8404 3.8404 -137.578 -3.8404 0 0 787024. 2723.27 0.31 0.04 0.14 -1 -1 0.31 0.0121718 0.0106346 136 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 9.00 vpr 64.25 MiB -1 -1 0.21 21476 1 0.03 -1 -1 33828 -1 -1 32 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65792 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 25.4 MiB 3.77 887 17835 5720 8884 3231 64.2 MiB 0.12 0.00 3.78934 -120.114 -3.78934 3.78934 0.89 0.000206801 0.000163232 0.0201687 0.0161617 -1 -1 -1 -1 36 2335 23 6.87369e+06 447163 648988. 2245.63 1.92 0.0803492 0.0659414 26050 158493 -1 1838 16 1140 2130 129087 32042 3.31711 3.31711 -116.549 -3.31711 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0119392 0.010366 136 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 8.78 vpr 64.39 MiB -1 -1 0.19 21684 1 0.03 -1 -1 33900 -1 -1 35 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65940 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 25.4 MiB 3.86 937 16971 4971 8753 3247 64.4 MiB 0.12 0.00 4.12873 -132.442 -4.12873 4.12873 0.85 0.000219084 0.000173316 0.0182127 0.0145954 -1 -1 -1 -1 34 2718 26 6.87369e+06 489084 618332. 2139.56 1.73 0.0796005 0.065304 25762 151098 -1 2066 22 1668 2690 198901 47188 3.31716 3.31716 -120.864 -3.31716 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0142968 0.0122603 144 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 5.43 vpr 63.89 MiB -1 -1 0.19 21520 1 0.03 -1 -1 33924 -1 -1 33 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65420 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 25.2 MiB 1.30 950 11863 2938 8144 781 63.9 MiB 0.09 0.00 4.28779 -126.336 -4.28779 4.28779 0.86 0.000185384 0.000146661 0.011894 0.00957567 -1 -1 -1 -1 32 2445 24 6.87369e+06 461137 586450. 2029.24 0.95 0.0440985 0.036476 25474 144626 -1 2085 21 1314 2365 183655 42268 3.6921 3.6921 -124.78 -3.6921 0 0 744469. 2576.02 0.28 0.05 0.13 -1 -1 0.28 0.0115595 0.00997995 124 24 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 8.40 vpr 64.02 MiB -1 -1 0.18 21564 1 0.04 -1 -1 34044 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65556 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 25.5 MiB 3.71 982 14072 3725 8207 2140 64.0 MiB 0.10 0.00 4.76758 -137.763 -4.76758 4.76758 0.86 0.000192846 0.000153494 0.0160173 0.0128907 -1 -1 -1 -1 34 2626 24 6.87369e+06 307425 618332. 2139.56 1.48 0.0691839 0.0568788 25762 151098 -1 2196 25 1842 2696 197778 45492 3.8247 3.8247 -129.883 -3.8247 0 0 787024. 2723.27 0.29 0.06 0.13 -1 -1 0.29 0.0159108 0.0138456 135 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 9.67 vpr 64.70 MiB -1 -1 0.20 21812 1 0.03 -1 -1 33680 -1 -1 22 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66256 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 25.7 MiB 3.70 1107 16267 4807 9259 2201 64.7 MiB 0.12 0.00 4.75448 -144.408 -4.75448 4.75448 0.87 0.000211369 0.000166651 0.0205508 0.0164032 -1 -1 -1 -1 34 3196 22 6.87369e+06 307425 618332. 2139.56 2.59 0.0918204 0.0765512 25762 151098 -1 2511 24 1945 3198 270338 61028 4.16936 4.16936 -144.077 -4.16936 0 0 787024. 2723.27 0.31 0.07 0.14 -1 -1 0.31 0.015381 0.0132659 141 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 8.73 vpr 64.48 MiB -1 -1 0.20 21500 1 0.03 -1 -1 34192 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66032 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 25.7 MiB 3.75 1063 9385 2579 6271 535 64.5 MiB 0.08 0.00 4.4085 -135.318 -4.4085 4.4085 0.88 0.000246281 0.000199372 0.0134671 0.011054 -1 -1 -1 -1 34 3018 23 6.87369e+06 293451 618332. 2139.56 1.63 0.0766212 0.0634457 25762 151098 -1 2545 21 1704 3056 247319 56220 3.8237 3.8237 -136.367 -3.8237 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0139007 0.0119758 135 77 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 5.74 vpr 63.55 MiB -1 -1 0.18 21116 1 0.03 -1 -1 34176 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 24.9 MiB 1.23 618 7457 1687 5261 509 63.5 MiB 0.05 0.00 3.47695 -100.633 -3.47695 3.47695 0.87 0.000185731 0.000151293 0.00808224 0.00656838 -1 -1 -1 -1 28 1979 29 6.87369e+06 307425 531479. 1839.03 1.40 0.0379984 0.0315949 24610 126494 -1 1725 19 1119 1757 142622 35883 2.81396 2.81396 -104.891 -2.81396 0 0 648988. 2245.63 0.26 0.04 0.11 -1 -1 0.26 0.00940755 0.00814981 93 23 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 7.76 vpr 64.27 MiB -1 -1 0.21 21572 1 0.03 -1 -1 34144 -1 -1 18 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65812 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 25.6 MiB 2.84 945 13432 4185 7036 2211 64.3 MiB 0.09 0.00 3.78256 -132.968 -3.78256 3.78256 0.87 0.000200469 0.00015811 0.0173695 0.0139996 -1 -1 -1 -1 34 2610 20 6.87369e+06 251529 618332. 2139.56 1.65 0.0696586 0.0570374 25762 151098 -1 2258 24 1858 2665 241814 53754 3.4618 3.4618 -134.64 -3.4618 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0135124 0.0116071 124 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 10.03 vpr 64.50 MiB -1 -1 0.20 21784 1 0.03 -1 -1 33924 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66044 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 25.6 MiB 4.25 1267 11983 3302 6304 2377 64.5 MiB 0.11 0.00 5.48208 -158.647 -5.48208 5.48208 0.88 0.00022477 0.00017763 0.01675 0.0136925 -1 -1 -1 -1 34 3774 46 6.87369e+06 335372 618332. 2139.56 2.50 0.103216 0.0863165 25762 151098 -1 2816 20 2121 3257 267636 63434 4.8824 4.8824 -161.854 -4.8824 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0146874 0.0127984 166 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 8.06 vpr 64.47 MiB -1 -1 0.17 21524 1 0.03 -1 -1 33924 -1 -1 34 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66016 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 25.5 MiB 3.93 1044 14048 3802 8919 1327 64.5 MiB 0.10 0.00 4.31147 -138.674 -4.31147 4.31147 0.86 0.000211123 0.000169083 0.0145409 0.0116653 -1 -1 -1 -1 28 2441 22 6.87369e+06 475111 531479. 1839.03 0.95 0.0487379 0.040258 24610 126494 -1 2295 23 1620 2678 202128 45280 3.09026 3.09026 -127.972 -3.09026 0 0 648988. 2245.63 0.26 0.06 0.11 -1 -1 0.26 0.0139504 0.0120348 137 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 5.66 vpr 63.66 MiB -1 -1 0.19 21456 1 0.03 -1 -1 34160 -1 -1 25 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65184 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 25.1 MiB 1.02 638 14295 3167 9759 1369 63.7 MiB 0.08 0.00 3.573 -107.747 -3.573 3.573 0.91 0.000184091 0.000139265 0.0156394 0.0125036 -1 -1 -1 -1 28 2093 49 6.87369e+06 349346 531479. 1839.03 1.54 0.0565213 0.0467189 24610 126494 -1 1708 23 1291 2042 156044 38519 3.09756 3.09756 -114.089 -3.09756 0 0 648988. 2245.63 0.26 0.05 0.11 -1 -1 0.26 0.011828 0.0101509 104 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 12.81 vpr 64.70 MiB -1 -1 0.20 21900 1 0.03 -1 -1 33696 -1 -1 25 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66252 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 25.7 MiB 7.23 1345 13553 3739 8295 1519 64.7 MiB 0.11 0.00 5.88501 -174.993 -5.88501 5.88501 0.86 0.000245323 0.00019343 0.0187615 0.015055 -1 -1 -1 -1 36 3244 24 6.87369e+06 349346 648988. 2245.63 2.31 0.0880204 0.0724885 26050 158493 -1 2821 22 2283 3476 317566 69187 4.6476 4.6476 -163.711 -4.6476 0 0 828058. 2865.25 0.31 0.08 0.14 -1 -1 0.31 0.0167235 0.0144216 171 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 8.17 vpr 64.32 MiB -1 -1 0.21 21516 1 0.03 -1 -1 34060 -1 -1 35 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65864 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 25.5 MiB 3.96 991 19023 5843 10714 2466 64.3 MiB 0.13 0.00 4.60102 -140.95 -4.60102 4.60102 0.89 0.000208127 0.000164665 0.0201842 0.0159919 -1 -1 -1 -1 28 2347 24 6.87369e+06 489084 531479. 1839.03 0.96 0.0545055 0.0445963 24610 126494 -1 2160 21 1572 2552 174583 41140 3.7901 3.7901 -135.578 -3.7901 0 0 648988. 2245.63 0.26 0.05 0.11 -1 -1 0.26 0.0125939 0.0108846 135 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 5.59 vpr 63.68 MiB -1 -1 0.16 21152 1 0.03 -1 -1 34144 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65212 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 25.0 MiB 1.13 773 11398 3057 7257 1084 63.7 MiB 0.07 0.00 3.5954 -103.22 -3.5954 3.5954 0.87 0.000155596 0.000123173 0.0101212 0.00811918 -1 -1 -1 -1 34 1951 23 6.87369e+06 335372 618332. 2139.56 1.38 0.0513009 0.0422595 25762 151098 -1 1568 17 903 1512 100341 24273 2.92426 2.92426 -99.3986 -2.92426 0 0 787024. 2723.27 0.30 0.04 0.14 -1 -1 0.30 0.00838239 0.00726734 94 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 6.97 vpr 64.38 MiB -1 -1 0.19 21496 1 0.03 -1 -1 33860 -1 -1 37 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65928 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 25.4 MiB 2.88 1100 15611 4394 9181 2036 64.4 MiB 0.11 0.00 5.24422 -137.452 -5.24422 5.24422 0.86 0.000250968 0.000201365 0.0165942 0.0132878 -1 -1 -1 -1 30 2517 25 6.87369e+06 517032 556674. 1926.21 0.94 0.0525168 0.0431364 25186 138497 -1 2066 19 1062 2224 129406 29709 4.11965 4.11965 -128.758 -4.11965 0 0 706193. 2443.58 0.27 0.04 0.12 -1 -1 0.27 0.0120706 0.0104877 145 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 5.56 vpr 63.54 MiB -1 -1 0.18 21192 1 0.03 -1 -1 34100 -1 -1 19 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 25.1 MiB 1.56 806 14303 4874 7080 2349 63.5 MiB 0.08 0.00 3.43775 -108.88 -3.43775 3.43775 0.86 0.00016034 0.000126234 0.0141108 0.0112364 -1 -1 -1 -1 30 1962 20 6.87369e+06 265503 556674. 1926.21 0.91 0.0402696 0.0330655 25186 138497 -1 1661 19 1041 1865 115410 26078 2.85796 2.85796 -108.295 -2.85796 0 0 706193. 2443.58 0.28 0.04 0.12 -1 -1 0.28 0.0102036 0.00892491 98 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 7.13 vpr 63.88 MiB -1 -1 0.19 21544 1 0.04 -1 -1 34208 -1 -1 34 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65416 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 25.3 MiB 3.05 844 16959 4603 10486 1870 63.9 MiB 0.10 0.00 3.87934 -115.346 -3.87934 3.87934 0.87 0.000201069 0.000136921 0.0149077 0.011701 -1 -1 -1 -1 28 1981 18 6.87369e+06 475111 531479. 1839.03 0.89 0.0424226 0.0346479 24610 126494 -1 1929 24 1355 2462 170836 39582 3.10226 3.10226 -115.695 -3.10226 0 0 648988. 2245.63 0.25 0.05 0.12 -1 -1 0.25 0.0112471 0.00959406 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 10.29 vpr 64.10 MiB -1 -1 0.19 21468 1 0.03 -1 -1 34008 -1 -1 24 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65640 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 25.3 MiB 5.40 1009 14221 4548 7033 2640 64.1 MiB 0.10 0.00 4.12353 -122.981 -4.12353 4.12353 0.89 0.000201607 0.000159274 0.0180321 0.0144694 -1 -1 -1 -1 34 2595 24 6.87369e+06 335372 618332. 2139.56 1.54 0.0737166 0.0601646 25762 151098 -1 2283 23 1888 2879 220409 50981 3.35291 3.35291 -119.962 -3.35291 0 0 787024. 2723.27 0.29 0.06 0.13 -1 -1 0.29 0.0138334 0.0119034 138 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 7.78 vpr 64.16 MiB -1 -1 0.20 21620 1 0.03 -1 -1 33716 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65696 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 25.3 MiB 3.05 979 14964 4132 9262 1570 64.2 MiB 0.11 0.00 4.41935 -144.511 -4.41935 4.41935 0.89 0.000223373 0.000177032 0.0196241 0.0159406 -1 -1 -1 -1 34 2262 22 6.87369e+06 363320 618332. 2139.56 1.49 0.078053 0.0644658 25762 151098 -1 1874 21 1397 2097 141545 33476 3.96296 3.96296 -136.55 -3.96296 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0130412 0.0112637 132 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 7.50 vpr 64.34 MiB -1 -1 0.19 21424 1 0.03 -1 -1 33540 -1 -1 27 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65884 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 25.5 MiB 3.20 1060 12943 3369 8335 1239 64.3 MiB 0.10 0.00 4.82683 -144.882 -4.82683 4.82683 0.87 0.000231243 0.00018828 0.0153243 0.0123569 -1 -1 -1 -1 32 2771 40 6.87369e+06 377294 586450. 2029.24 1.11 0.0631507 0.0526685 25474 144626 -1 2341 21 1610 2888 258610 57275 3.91576 3.91576 -141.496 -3.91576 0 0 744469. 2576.02 0.30 0.07 0.13 -1 -1 0.30 0.0133944 0.0115883 133 51 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 9.43 vpr 63.88 MiB -1 -1 0.16 21484 1 0.03 -1 -1 33696 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65416 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 25.3 MiB 4.86 898 11233 2898 7220 1115 63.9 MiB 0.08 0.00 4.78272 -135.094 -4.78272 4.78272 0.89 0.000201272 0.000163274 0.0138391 0.0111807 -1 -1 -1 -1 34 2238 25 6.87369e+06 209608 618332. 2139.56 1.42 0.060307 0.0495095 25762 151098 -1 1856 19 949 1318 98854 22515 3.2292 3.2292 -118.065 -3.2292 0 0 787024. 2723.27 0.30 0.04 0.13 -1 -1 0.30 0.0104533 0.00909971 103 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 8.41 vpr 64.12 MiB -1 -1 0.18 21572 1 0.03 -1 -1 33708 -1 -1 17 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65660 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 25.4 MiB 3.59 852 9712 2603 6178 931 64.1 MiB 0.07 0.00 3.7214 -119.25 -3.7214 3.7214 0.86 0.000183259 0.000144617 0.0122168 0.00983741 -1 -1 -1 -1 34 2440 41 6.87369e+06 237555 618332. 2139.56 1.60 0.0696976 0.0571619 25762 151098 -1 1987 23 1447 2180 181291 41758 3.2835 3.2835 -120.806 -3.2835 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0142525 0.0123797 114 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 7.19 vpr 64.22 MiB -1 -1 0.19 21500 1 0.03 -1 -1 33836 -1 -1 34 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65760 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 25.4 MiB 3.11 924 12798 3409 8384 1005 64.2 MiB 0.09 0.00 3.48905 -102.127 -3.48905 3.48905 0.89 0.000191759 0.000151781 0.0130683 0.0104301 -1 -1 -1 -1 28 2301 21 6.87369e+06 475111 531479. 1839.03 0.94 0.047146 0.0389255 24610 126494 -1 2051 21 1207 2406 163683 38026 2.93926 2.93926 -104.1 -2.93926 0 0 648988. 2245.63 0.26 0.05 0.12 -1 -1 0.26 0.0119777 0.0103086 124 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 6.72 vpr 64.05 MiB -1 -1 0.18 21588 1 0.03 -1 -1 34036 -1 -1 35 28 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65584 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 25.2 MiB 2.30 881 17159 5393 9230 2536 64.0 MiB 0.11 0.00 4.16979 -108.643 -4.16979 4.16979 0.88 0.000174671 0.000138171 0.0161798 0.0128686 -1 -1 -1 -1 26 2324 34 6.87369e+06 489084 503264. 1741.40 1.29 0.0484731 0.0396303 24322 120374 -1 2062 24 1373 2548 261583 55392 3.966 3.966 -116.28 -3.966 0 0 618332. 2139.56 0.24 0.07 0.11 -1 -1 0.24 0.0120659 0.0103096 117 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 9.43 vpr 63.98 MiB -1 -1 0.18 21492 1 0.03 -1 -1 34108 -1 -1 17 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65516 30 32 317 269 1 156 79 17 17 289 -1 unnamed_device 25.1 MiB 3.93 809 13092 4770 6917 1405 64.0 MiB 0.08 0.00 3.85608 -118.614 -3.85608 3.85608 0.86 0.000183817 0.000144609 0.0156417 0.0124822 -1 -1 -1 -1 30 2084 24 6.87369e+06 237555 556674. 1926.21 2.40 0.0755705 0.0617202 25186 138497 -1 1731 18 1161 2035 128861 29834 2.83766 2.83766 -112.297 -2.83766 0 0 706193. 2443.58 0.27 0.04 0.12 -1 -1 0.27 0.0107421 0.00921368 105 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 8.69 vpr 64.11 MiB -1 -1 0.19 21404 1 0.03 -1 -1 33800 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65644 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 25.3 MiB 3.88 1036 10756 3215 6482 1059 64.1 MiB 0.08 0.00 3.6884 -127.691 -3.6884 3.6884 0.86 0.000193828 0.000152936 0.0137165 0.0110409 -1 -1 -1 -1 34 2701 19 6.87369e+06 237555 618332. 2139.56 1.59 0.0657353 0.0539136 25762 151098 -1 2296 20 1527 2272 197567 44265 3.28591 3.28591 -130.033 -3.28591 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0119938 0.010373 122 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 5.63 vpr 64.02 MiB -1 -1 0.19 21568 1 0.03 -1 -1 34084 -1 -1 31 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65560 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 25.3 MiB 1.36 1012 10744 2561 7474 709 64.0 MiB 0.08 0.00 4.55512 -132.128 -4.55512 4.55512 0.89 0.000186951 0.00014754 0.0111891 0.00879744 -1 -1 -1 -1 30 2480 24 6.87369e+06 433189 556674. 1926.21 1.04 0.0428633 0.0353869 25186 138497 -1 2052 22 1079 2002 143467 30775 3.3592 3.3592 -119.088 -3.3592 0 0 706193. 2443.58 0.28 0.05 0.14 -1 -1 0.28 0.0152971 0.0133835 129 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 10.53 vpr 64.43 MiB -1 -1 0.19 21692 1 0.03 -1 -1 33520 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65980 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 25.5 MiB 4.85 991 16023 4565 8930 2528 64.4 MiB 0.12 0.00 4.82048 -149.465 -4.82048 4.82048 0.87 0.000205949 0.00016229 0.0192859 0.0155108 -1 -1 -1 -1 34 3392 28 6.87369e+06 321398 618332. 2139.56 2.35 0.0834287 0.0684184 25762 151098 -1 2503 23 2181 3291 278560 65633 4.13006 4.13006 -148.675 -4.13006 0 0 787024. 2723.27 0.31 0.08 0.13 -1 -1 0.31 0.0164201 0.0143193 147 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 9.56 vpr 64.70 MiB -1 -1 0.19 21404 1 0.03 -1 -1 33788 -1 -1 36 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66252 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 25.7 MiB 5.10 978 12164 2681 7945 1538 64.7 MiB 0.08 0.00 5.314 -155.075 -5.314 5.314 0.86 0.000230005 0.000178822 0.0134726 0.0106731 -1 -1 -1 -1 30 2902 25 6.87369e+06 503058 556674. 1926.21 1.32 0.0523121 0.0428717 25186 138497 -1 2004 20 1329 2376 136001 33949 4.02235 4.02235 -142.136 -4.02235 0 0 706193. 2443.58 0.28 0.05 0.12 -1 -1 0.28 0.013369 0.0115866 147 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 10.10 vpr 64.59 MiB -1 -1 0.19 21452 1 0.03 -1 -1 33884 -1 -1 41 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66144 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 25.6 MiB 3.97 1071 14431 4037 9367 1027 64.6 MiB 0.12 0.00 4.54908 -143.401 -4.54908 4.54908 0.90 0.000241624 0.000192231 0.0180896 0.0138319 -1 -1 -1 -1 26 3450 43 6.87369e+06 572927 503264. 1741.40 2.90 0.0690116 0.056194 24322 120374 -1 2750 24 2085 3776 389607 85971 4.2086 4.2086 -148.799 -4.2086 0 0 618332. 2139.56 0.24 0.09 0.10 -1 -1 0.24 0.0149508 0.012786 148 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 7.97 vpr 63.89 MiB -1 -1 0.17 21512 1 0.03 -1 -1 33688 -1 -1 17 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65420 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 25.3 MiB 3.31 839 13261 4339 6686 2236 63.9 MiB 0.09 0.00 3.89188 -120.186 -3.89188 3.89188 0.90 0.000173703 0.000137086 0.0158339 0.01274 -1 -1 -1 -1 34 2030 23 6.87369e+06 237555 618332. 2139.56 1.48 0.0652139 0.054027 25762 151098 -1 1732 20 1092 1954 136878 32517 2.84696 2.84696 -109.404 -2.84696 0 0 787024. 2723.27 0.28 0.04 0.12 -1 -1 0.28 0.00962702 0.00834271 99 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 9.73 vpr 64.27 MiB -1 -1 0.20 21384 1 0.03 -1 -1 33940 -1 -1 22 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65816 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 25.3 MiB 4.93 1044 13260 3550 8119 1591 64.3 MiB 0.11 0.00 4.61482 -143.823 -4.61482 4.61482 0.88 0.000218949 0.000172608 0.0188824 0.0152717 -1 -1 -1 -1 34 2567 22 6.87369e+06 307425 618332. 2139.56 1.56 0.078298 0.0643329 25762 151098 -1 2198 21 1641 2564 203753 44634 3.8886 3.8886 -139.378 -3.8886 0 0 787024. 2723.27 0.29 0.06 0.13 -1 -1 0.29 0.0130224 0.0112781 136 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 8.08 vpr 64.29 MiB -1 -1 0.18 21556 1 0.03 -1 -1 33796 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65828 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 25.4 MiB 3.29 1037 9111 2097 6458 556 64.3 MiB 0.07 0.00 5.22106 -152.651 -5.22106 5.22106 0.87 0.000210716 0.000167583 0.0113397 0.0091687 -1 -1 -1 -1 34 2776 30 6.87369e+06 321398 618332. 2139.56 1.63 0.0701968 0.0577076 25762 151098 -1 2362 23 1709 2786 230735 51614 4.07176 4.07176 -144.258 -4.07176 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.014083 0.0121261 140 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 9.07 vpr 64.36 MiB -1 -1 0.21 21452 1 0.03 -1 -1 33920 -1 -1 28 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65904 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 25.5 MiB 3.99 1053 16207 5040 8570 2597 64.4 MiB 0.12 0.00 5.4124 -149.797 -5.4124 5.4124 0.87 0.000199347 0.000157444 0.0181351 0.0146101 -1 -1 -1 -1 34 2846 23 6.87369e+06 391268 618332. 2139.56 1.87 0.0772232 0.0636806 25762 151098 -1 2223 21 1638 2564 188756 44603 4.66515 4.66515 -146.332 -4.66515 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0128254 0.0111323 141 47 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 8.58 vpr 64.41 MiB -1 -1 0.19 21512 1 0.03 -1 -1 34092 -1 -1 31 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65956 30 32 377 310 1 181 93 17 17 289 -1 unnamed_device 25.5 MiB 4.29 925 12903 3392 7693 1818 64.4 MiB 0.10 0.00 4.69758 -137.96 -4.69758 4.69758 0.86 0.000209868 0.000164769 0.0146888 0.0117146 -1 -1 -1 -1 28 2649 21 6.87369e+06 433189 531479. 1839.03 1.16 0.0514802 0.0421063 24610 126494 -1 2191 19 1414 2329 179999 42937 3.46156 3.46156 -129.767 -3.46156 0 0 648988. 2245.63 0.25 0.06 0.11 -1 -1 0.25 0.0128945 0.011153 136 83 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 8.11 vpr 64.36 MiB -1 -1 0.19 21592 1 0.03 -1 -1 33644 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65904 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 25.5 MiB 3.30 1052 9943 2760 6470 713 64.4 MiB 0.09 0.00 4.73658 -142.26 -4.73658 4.73658 0.86 0.000237184 0.000193276 0.0140186 0.0115019 -1 -1 -1 -1 34 2918 23 6.87369e+06 293451 618332. 2139.56 1.60 0.0719063 0.0593052 25762 151098 -1 2375 24 1836 3219 237418 55210 4.11106 4.11106 -143.911 -4.11106 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.014805 0.0127572 132 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 7.42 vpr 64.15 MiB -1 -1 0.22 21428 1 0.03 -1 -1 33648 -1 -1 29 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65692 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 25.4 MiB 3.28 985 14361 3761 8676 1924 64.2 MiB 0.10 0.00 4.09163 -124.793 -4.09163 4.09163 0.89 0.000207836 0.000163961 0.0168279 0.0135041 -1 -1 -1 -1 30 2131 23 6.87369e+06 405241 556674. 1926.21 0.92 0.0532075 0.0436334 25186 138497 -1 1690 18 1078 1813 98061 23508 2.93501 2.93501 -111.204 -2.93501 0 0 706193. 2443.58 0.28 0.04 0.12 -1 -1 0.28 0.012209 0.0105906 132 85 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 6.09 vpr 63.50 MiB -1 -1 0.17 21204 1 0.03 -1 -1 33880 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 24.8 MiB 1.62 780 9356 2513 5902 941 63.5 MiB 0.06 0.00 3.99928 -120.309 -3.99928 3.99928 0.87 0.00015973 0.000126082 0.00972099 0.00779122 -1 -1 -1 -1 34 1813 21 6.87369e+06 237555 618332. 2139.56 1.39 0.0528279 0.0435685 25762 151098 -1 1604 20 854 1316 101333 23397 2.87996 2.87996 -108.612 -2.87996 0 0 787024. 2723.27 0.29 0.04 0.14 -1 -1 0.29 0.00950901 0.00824143 96 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 10.08 vpr 64.38 MiB -1 -1 0.19 21548 1 0.03 -1 -1 34088 -1 -1 34 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65920 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 25.4 MiB 5.82 1081 10898 2607 7262 1029 64.4 MiB 0.09 0.00 4.62608 -141.152 -4.62608 4.62608 0.86 0.000214349 0.00016931 0.0123603 0.0098143 -1 -1 -1 -1 28 2708 23 6.87369e+06 475111 531479. 1839.03 1.15 0.0536319 0.0445342 24610 126494 -1 2458 22 1693 2867 224205 50600 3.8954 3.8954 -141.192 -3.8954 0 0 648988. 2245.63 0.26 0.06 0.11 -1 -1 0.26 0.0135503 0.0116224 137 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 10.78 vpr 64.34 MiB -1 -1 0.20 21568 1 0.04 -1 -1 33752 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65880 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 25.6 MiB 5.73 999 9013 2093 6314 606 64.3 MiB 0.08 0.00 4.56982 -152.894 -4.56982 4.56982 0.86 0.000223354 0.000176314 0.0125736 0.0101569 -1 -1 -1 -1 34 2775 24 6.87369e+06 293451 618332. 2139.56 1.87 0.0786465 0.0649695 25762 151098 -1 2295 20 1844 3015 218749 51049 3.7934 3.7934 -148.97 -3.7934 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0150006 0.0130132 142 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 8.16 vpr 63.70 MiB -1 -1 0.18 21580 1 0.03 -1 -1 33724 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65228 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 25.2 MiB 3.71 750 8508 2024 5759 725 63.7 MiB 0.06 0.00 4.48134 -122.374 -4.48134 4.48134 0.85 0.00016799 0.000132168 0.0098704 0.00799461 -1 -1 -1 -1 34 2152 23 6.87369e+06 223581 618332. 2139.56 1.41 0.0553541 0.0455721 25762 151098 -1 1715 18 1028 1348 88426 23124 3.3655 3.3655 -115.562 -3.3655 0 0 787024. 2723.27 0.29 0.03 0.13 -1 -1 0.29 0.00956476 0.0083355 106 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 5.54 vpr 63.65 MiB -1 -1 0.17 21184 1 0.03 -1 -1 33696 -1 -1 20 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65176 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 25.2 MiB 1.58 827 12143 3533 6628 1982 63.6 MiB 0.07 0.00 3.95118 -117.571 -3.95118 3.95118 0.87 0.000157545 0.000123952 0.0119351 0.0095313 -1 -1 -1 -1 30 2035 24 6.87369e+06 279477 556674. 1926.21 0.89 0.0388592 0.0320785 25186 138497 -1 1786 21 1044 1832 114076 25448 2.88196 2.88196 -110.159 -2.88196 0 0 706193. 2443.58 0.28 0.04 0.12 -1 -1 0.28 0.00999443 0.00863205 99 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 9.51 vpr 64.50 MiB -1 -1 0.19 21388 1 0.03 -1 -1 33984 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66044 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 25.6 MiB 4.44 991 14871 5387 7142 2342 64.5 MiB 0.10 0.00 4.73658 -148.901 -4.73658 4.73658 0.87 0.000204989 0.000161932 0.0175868 0.0140458 -1 -1 -1 -1 34 3440 28 6.87369e+06 321398 618332. 2139.56 1.85 0.0769473 0.0629483 25762 151098 -1 2472 23 2154 2974 246206 55991 4.48946 4.48946 -149.449 -4.48946 0 0 787024. 2723.27 0.31 0.08 0.13 -1 -1 0.31 0.0161747 0.0139942 145 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 9.12 vpr 64.56 MiB -1 -1 0.19 21580 1 0.03 -1 -1 34100 -1 -1 27 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66108 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 25.6 MiB 4.14 1154 11923 3090 8152 681 64.6 MiB 0.10 0.00 5.18474 -149.968 -5.18474 5.18474 0.87 0.000222012 0.000177045 0.0152303 0.0123451 -1 -1 -1 -1 34 3034 41 6.87369e+06 377294 618332. 2139.56 1.78 0.081948 0.0675749 25762 151098 -1 2254 22 1523 2265 155197 40705 4.52365 4.52365 -151.721 -4.52365 0 0 787024. 2723.27 0.31 0.05 0.13 -1 -1 0.31 0.0136362 0.0117584 142 56 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 6.38 vpr 63.70 MiB -1 -1 0.20 21436 1 0.03 -1 -1 33856 -1 -1 36 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65224 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.9 MiB 1.06 1048 20284 6297 10335 3652 63.7 MiB 0.13 0.00 5.33542 -146.763 -5.33542 5.33542 0.86 0.000216977 0.00017302 0.0207815 0.0166711 -1 -1 -1 -1 34 3116 28 6.87369e+06 503058 618332. 2139.56 2.06 0.0837578 0.0684927 25762 151098 -1 2452 22 1878 3312 278955 63395 4.70785 4.70785 -145.786 -4.70785 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.0150766 0.0130911 157 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 7.00 vpr 64.03 MiB -1 -1 0.19 21720 1 0.03 -1 -1 33760 -1 -1 34 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65564 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 25.1 MiB 2.97 934 17397 5220 9797 2380 64.0 MiB 0.10 0.00 3.59195 -107.694 -3.59195 3.59195 0.86 0.000185467 0.000146251 0.0162253 0.0128967 -1 -1 -1 -1 30 2081 23 6.87369e+06 475111 556674. 1926.21 0.91 0.0471479 0.0386653 25186 138497 -1 1768 19 973 1696 95345 22746 2.80666 2.80666 -101.502 -2.80666 0 0 706193. 2443.58 0.28 0.04 0.12 -1 -1 0.28 0.0113866 0.00990853 119 52 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 5.93 vpr 63.67 MiB -1 -1 0.19 21572 1 0.03 -1 -1 34360 -1 -1 21 27 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65196 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 25.2 MiB 1.36 647 12980 4064 8068 848 63.7 MiB 0.07 0.00 3.48275 -97.807 -3.48275 3.48275 0.87 0.000162659 0.000121533 0.0131598 0.0103956 -1 -1 -1 -1 34 1699 22 6.87369e+06 293451 618332. 2139.56 1.35 0.0546758 0.0444766 25762 151098 -1 1429 20 1057 1601 114649 26035 2.72966 2.72966 -93.4311 -2.72966 0 0 787024. 2723.27 0.31 0.04 0.13 -1 -1 0.31 0.00939077 0.00809281 96 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 10.49 vpr 64.57 MiB -1 -1 0.20 21792 1 0.03 -1 -1 33988 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66120 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 25.8 MiB 5.43 1306 7108 1644 4961 503 64.6 MiB 0.07 0.00 4.4536 -142.144 -4.4536 4.4536 0.87 0.000237625 0.000188052 0.0112593 0.00911151 -1 -1 -1 -1 34 3921 24 6.87369e+06 335372 618332. 2139.56 1.79 0.0764642 0.0625209 25762 151098 -1 3133 21 2077 3410 276995 63575 4.57546 4.57546 -154.017 -4.57546 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0188484 0.0165798 165 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 11.87 vpr 64.33 MiB -1 -1 0.19 21468 1 0.03 -1 -1 33768 -1 -1 22 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65872 31 32 365 296 1 202 85 17 17 289 -1 unnamed_device 25.5 MiB 6.91 1071 15151 5059 7758 2334 64.3 MiB 0.10 0.00 5.62787 -168.296 -5.62787 5.62787 0.86 0.000206487 0.000162654 0.0191333 0.0153283 -1 -1 -1 -1 36 2526 36 6.87369e+06 307425 648988. 2245.63 1.73 0.0823969 0.0675825 26050 158493 -1 2113 21 1551 2426 157015 37447 4.59085 4.59085 -154.24 -4.59085 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0134691 0.0116523 139 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 11.67 vpr 64.26 MiB -1 -1 0.19 21452 1 0.03 -1 -1 34112 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65804 32 32 331 280 1 185 81 17 17 289 -1 unnamed_device 25.6 MiB 7.03 884 8831 2130 6252 449 64.3 MiB 0.07 0.00 4.48255 -144.515 -4.48255 4.48255 0.87 0.000189185 0.00014829 0.0111893 0.00897289 -1 -1 -1 -1 34 2511 25 6.87369e+06 237555 618332. 2139.56 1.45 0.0631945 0.0516384 25762 151098 -1 2085 20 1422 2107 158928 37458 3.98026 3.98026 -143.093 -3.98026 0 0 787024. 2723.27 0.32 0.05 0.14 -1 -1 0.32 0.0122753 0.0106186 118 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 5.88 vpr 64.26 MiB -1 -1 0.18 21488 1 0.03 -1 -1 33816 -1 -1 33 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65804 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 25.4 MiB 1.75 978 12751 2883 8925 943 64.3 MiB 0.09 0.00 4.92341 -136.221 -4.92341 4.92341 0.86 0.000233221 0.000163401 0.013419 0.010638 -1 -1 -1 -1 32 2844 25 6.87369e+06 461137 586450. 2029.24 1.00 0.0468676 0.0384912 25474 144626 -1 2202 24 1453 2365 203989 46275 3.7844 3.7844 -126.569 -3.7844 0 0 744469. 2576.02 0.29 0.06 0.13 -1 -1 0.29 0.0141345 0.0121704 129 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 6.74 vpr 64.32 MiB -1 -1 0.19 21356 1 0.03 -1 -1 33756 -1 -1 34 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65860 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 25.7 MiB 2.53 994 11641 2686 8324 631 64.3 MiB 0.09 0.00 4.45728 -128.707 -4.45728 4.45728 0.86 0.000227679 0.00018129 0.0138821 0.0112255 -1 -1 -1 -1 26 2822 32 6.87369e+06 475111 503264. 1741.40 1.09 0.056187 0.0464994 24322 120374 -1 2420 24 1643 2677 211161 49524 4.10046 4.10046 -136.732 -4.10046 0 0 618332. 2139.56 0.24 0.06 0.11 -1 -1 0.24 0.0155306 0.0133668 149 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 7.02 vpr 64.16 MiB -1 -1 0.20 21500 1 0.03 -1 -1 34140 -1 -1 31 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65700 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 25.4 MiB 2.68 790 16473 4651 9095 2727 64.2 MiB 0.11 0.00 3.6935 -103.107 -3.6935 3.6935 0.86 0.000189885 0.000150042 0.0165365 0.0131881 -1 -1 -1 -1 30 2610 40 6.87369e+06 433189 556674. 1926.21 1.20 0.0555933 0.0455279 25186 138497 -1 1665 19 1172 2092 115397 30397 2.83221 2.83221 -100.063 -2.83221 0 0 706193. 2443.58 0.28 0.04 0.13 -1 -1 0.28 0.0114488 0.00991402 124 51 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 10.59 vpr 64.11 MiB -1 -1 0.19 21596 1 0.03 -1 -1 33984 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65652 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 25.6 MiB 5.48 1285 14639 4463 8795 1381 64.1 MiB 0.11 0.00 4.87673 -155.976 -4.87673 4.87673 0.86 0.00021841 0.00016591 0.0184577 0.0146479 -1 -1 -1 -1 36 3172 31 6.87369e+06 307425 648988. 2245.63 1.86 0.0781861 0.0638386 26050 158493 -1 2654 21 1778 2884 251542 53356 4.19495 4.19495 -148.621 -4.19495 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0144029 0.0124861 148 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 8.56 vpr 64.55 MiB -1 -1 0.16 21416 1 0.03 -1 -1 33436 -1 -1 36 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66096 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 25.8 MiB 4.16 1114 17964 5405 9806 2753 64.5 MiB 0.14 0.00 4.14663 -137.433 -4.14663 4.14663 0.91 0.000221219 0.000173367 0.0198504 0.0158461 -1 -1 -1 -1 28 3006 33 6.87369e+06 503058 531479. 1839.03 1.07 0.063717 0.0521149 24610 126494 -1 2459 21 1688 2717 206629 48333 3.48446 3.48446 -134.388 -3.48446 0 0 648988. 2245.63 0.26 0.07 0.11 -1 -1 0.26 0.0149446 0.0129223 147 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 6.40 vpr 63.95 MiB -1 -1 0.18 21660 1 0.03 -1 -1 33996 -1 -1 19 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65488 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 25.2 MiB 2.47 708 14184 4108 7835 2241 64.0 MiB 0.07 0.00 3.90218 -115.978 -3.90218 3.90218 0.90 0.00016032 0.000125708 0.0154568 0.0124164 -1 -1 -1 -1 28 1736 21 6.87369e+06 265503 531479. 1839.03 0.86 0.0452246 0.0371815 24610 126494 -1 1548 18 1133 1639 120489 27801 3.16076 3.16076 -114.916 -3.16076 0 0 648988. 2245.63 0.27 0.04 0.11 -1 -1 0.27 0.00934291 0.00812722 101 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 7.32 vpr 64.08 MiB -1 -1 0.18 21508 1 0.03 -1 -1 34004 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65616 32 32 310 266 1 175 81 17 17 289 -1 unnamed_device 25.4 MiB 2.69 963 14081 4182 8130 1769 64.1 MiB 0.09 0.00 3.97822 -122.829 -3.97822 3.97822 0.89 0.000188158 0.000146273 0.0169303 0.0134773 -1 -1 -1 -1 34 2188 24 6.87369e+06 237555 618332. 2139.56 1.48 0.0683485 0.0558112 25762 151098 -1 1967 18 1248 1705 141947 30974 3.3007 3.3007 -124.41 -3.3007 0 0 787024. 2723.27 0.31 0.04 0.13 -1 -1 0.31 0.0107915 0.0093941 112 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 6.51 vpr 64.37 MiB -1 -1 0.19 21512 1 0.03 -1 -1 33732 -1 -1 39 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65912 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 25.5 MiB 2.06 880 19380 5710 10605 3065 64.4 MiB 0.13 0.00 4.54717 -125.702 -4.54717 4.54717 0.86 0.000219557 0.000169668 0.0193951 0.0154263 -1 -1 -1 -1 28 2476 25 6.87369e+06 544980 531479. 1839.03 1.28 0.0562995 0.046308 24610 126494 -1 2103 21 1460 2605 205764 46881 4.4682 4.4682 -129.602 -4.4682 0 0 648988. 2245.63 0.26 0.06 0.11 -1 -1 0.26 0.0124492 0.010691 135 33 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 7.92 vpr 63.69 MiB -1 -1 0.20 21380 1 0.03 -1 -1 33948 -1 -1 19 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65216 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 25.2 MiB 3.42 859 10916 2514 7778 624 63.7 MiB 0.08 0.00 4.61538 -122.043 -4.61538 4.61538 0.89 0.000167145 0.000131779 0.0129629 0.010479 -1 -1 -1 -1 34 2080 22 6.87369e+06 265503 618332. 2139.56 1.36 0.0571326 0.0470818 25762 151098 -1 1752 23 1110 1432 97234 23995 3.57416 3.57416 -114.879 -3.57416 0 0 787024. 2723.27 0.30 0.04 0.13 -1 -1 0.30 0.0109649 0.00946401 107 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 8.83 vpr 63.80 MiB -1 -1 0.16 21632 1 0.03 -1 -1 33924 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65332 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 25.3 MiB 4.72 890 13092 3761 8015 1316 63.8 MiB 0.08 0.00 3.89598 -125.954 -3.89598 3.89598 0.87 0.000171354 0.000135034 0.0152367 0.0123164 -1 -1 -1 -1 30 2147 21 6.87369e+06 209608 556674. 1926.21 0.96 0.0452009 0.0373054 25186 138497 -1 1826 22 1154 1910 142563 30699 2.86266 2.86266 -114.625 -2.86266 0 0 706193. 2443.58 0.29 0.04 0.13 -1 -1 0.29 0.0111396 0.00954684 101 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 7.68 vpr 64.47 MiB -1 -1 0.20 21552 1 0.03 -1 -1 33896 -1 -1 37 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66020 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 25.5 MiB 3.58 1030 11700 3258 7456 986 64.5 MiB 0.09 0.00 3.94428 -127.758 -3.94428 3.94428 0.88 0.000216092 0.000171061 0.0128502 0.0102733 -1 -1 -1 -1 28 2447 27 6.87369e+06 517032 531479. 1839.03 0.92 0.0505062 0.0415247 24610 126494 -1 2173 19 1608 2521 177586 41218 3.09026 3.09026 -122.565 -3.09026 0 0 648988. 2245.63 0.26 0.05 0.11 -1 -1 0.26 0.0133711 0.011593 141 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 8.52 vpr 64.06 MiB -1 -1 0.17 21392 1 0.03 -1 -1 33628 -1 -1 17 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65600 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 25.3 MiB 3.90 763 6616 1499 4719 398 64.1 MiB 0.05 0.00 3.6942 -114.024 -3.6942 3.6942 0.89 0.000163157 0.00012855 0.00835915 0.00689354 -1 -1 -1 -1 34 2136 24 6.87369e+06 237555 618332. 2139.56 1.48 0.0552961 0.0457836 25762 151098 -1 1636 20 1101 1571 107353 27112 3.19991 3.19991 -110.054 -3.19991 0 0 787024. 2723.27 0.32 0.04 0.14 -1 -1 0.32 0.0102804 0.00894007 105 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 8.31 vpr 64.49 MiB -1 -1 0.20 21412 1 0.03 -1 -1 33884 -1 -1 31 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66040 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 25.4 MiB 3.80 991 15431 4685 8411 2335 64.5 MiB 0.10 0.00 3.75634 -117.047 -3.75634 3.75634 0.87 0.000200603 0.000158341 0.0162771 0.0130149 -1 -1 -1 -1 28 2561 28 6.87369e+06 433189 531479. 1839.03 1.39 0.0548869 0.0451299 24610 126494 -1 2292 23 1283 2119 183686 40418 3.15881 3.15881 -116.2 -3.15881 0 0 648988. 2245.63 0.26 0.05 0.11 -1 -1 0.26 0.0134217 0.0114878 129 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 8.31 vpr 64.46 MiB -1 -1 0.20 21780 1 0.03 -1 -1 33908 -1 -1 32 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66008 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 25.6 MiB 4.19 969 16511 5526 8195 2790 64.5 MiB 0.11 0.00 3.7606 -125.402 -3.7606 3.7606 0.87 0.000220366 0.00017296 0.01895 0.0150968 -1 -1 -1 -1 30 2175 23 6.87369e+06 447163 556674. 1926.21 0.92 0.0569141 0.0463087 25186 138497 -1 1707 22 1533 2185 119272 29204 2.85691 2.85691 -118.154 -2.85691 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.0145575 0.0124793 137 91 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 7.39 vpr 63.80 MiB -1 -1 0.17 21584 1 0.03 -1 -1 33904 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65328 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 25.0 MiB 2.90 763 5412 1083 3998 331 63.8 MiB 0.05 0.00 3.46595 -107.951 -3.46595 3.46595 0.90 0.000178109 0.000140443 0.0070076 0.00565435 -1 -1 -1 -1 34 2023 20 6.87369e+06 223581 618332. 2139.56 1.39 0.0543405 0.0448283 25762 151098 -1 1758 19 1028 1626 127152 30410 3.12476 3.12476 -114.292 -3.12476 0 0 787024. 2723.27 0.30 0.04 0.14 -1 -1 0.30 0.0103366 0.00894385 99 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 7.44 vpr 64.33 MiB -1 -1 0.18 21452 1 0.03 -1 -1 33812 -1 -1 18 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65876 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 25.6 MiB 2.76 878 7202 1691 5055 456 64.3 MiB 0.07 0.00 4.13079 -127.98 -4.13079 4.13079 0.91 0.0001915 0.000142961 0.00999316 0.00819459 -1 -1 -1 -1 34 2496 23 6.87369e+06 251529 618332. 2139.56 1.51 0.0581654 0.047901 25762 151098 -1 2073 22 1468 2194 182182 42188 3.22191 3.22191 -125.177 -3.22191 0 0 787024. 2723.27 0.29 0.05 0.13 -1 -1 0.29 0.0124815 0.0108271 114 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 9.09 vpr 64.01 MiB -1 -1 0.17 21344 1 0.03 -1 -1 33728 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65548 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 25.4 MiB 4.36 1100 9914 2382 6266 1266 64.0 MiB 0.07 0.00 4.82651 -140.217 -4.82651 4.82651 0.87 0.000191462 0.000151394 0.0116126 0.00936138 -1 -1 -1 -1 34 2714 26 6.87369e+06 307425 618332. 2139.56 1.60 0.0657325 0.0541548 25762 151098 -1 2273 23 1641 2291 162066 37556 4.02506 4.02506 -136.33 -4.02506 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0129756 0.0111949 132 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 7.46 vpr 64.21 MiB -1 -1 0.19 21508 1 0.03 -1 -1 33928 -1 -1 29 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65756 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 25.5 MiB 3.40 896 9336 2254 6420 662 64.2 MiB 0.07 0.00 4.11363 -114.181 -4.11363 4.11363 0.86 0.00018861 0.000149263 0.0102484 0.00826903 -1 -1 -1 -1 32 2343 29 6.87369e+06 405241 586450. 2029.24 0.91 0.0442427 0.0365621 25474 144626 -1 1909 23 1104 1920 137359 32910 3.23561 3.23561 -112.659 -3.23561 0 0 744469. 2576.02 0.29 0.05 0.14 -1 -1 0.29 0.013584 0.0116781 123 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 9.82 vpr 64.39 MiB -1 -1 0.18 21840 1 0.03 -1 -1 34224 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65936 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 25.6 MiB 4.91 1101 15395 4526 8609 2260 64.4 MiB 0.12 0.00 5.22906 -166.389 -5.22906 5.22906 0.86 0.000220267 0.000174296 0.0199596 0.0159683 -1 -1 -1 -1 34 2846 21 6.87369e+06 307425 618332. 2139.56 1.67 0.0807651 0.0656844 25762 151098 -1 2432 21 1761 2709 230464 50254 4.17706 4.17706 -157.262 -4.17706 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0151215 0.0131077 151 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 5.36 vpr 63.65 MiB -1 -1 0.18 21196 1 0.03 -1 -1 33776 -1 -1 17 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65180 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 25.0 MiB 1.53 761 7992 2192 5273 527 63.7 MiB 0.05 0.00 3.42155 -104.71 -3.42155 3.42155 0.86 0.0001647 0.000132209 0.00875948 0.00708657 -1 -1 -1 -1 28 1923 21 6.87369e+06 237555 531479. 1839.03 0.84 0.033537 0.0278612 24610 126494 -1 1756 15 866 1350 103447 23875 3.05556 3.05556 -108.436 -3.05556 0 0 648988. 2245.63 0.25 0.03 0.11 -1 -1 0.25 0.00817191 0.00720539 92 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 7.40 vpr 64.56 MiB -1 -1 0.21 21728 1 0.03 -1 -1 34008 -1 -1 35 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66108 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 25.7 MiB 2.62 1080 17883 4895 11214 1774 64.6 MiB 0.12 0.00 4.44135 -148.747 -4.44135 4.44135 0.88 0.000226699 0.000178049 0.0204654 0.0160596 -1 -1 -1 -1 34 2607 20 6.87369e+06 489084 618332. 2139.56 1.52 0.0819429 0.0665467 25762 151098 -1 2257 21 1628 2285 170577 39284 4.02096 4.02096 -147.829 -4.02096 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0168415 0.0144833 145 90 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 10.16 vpr 64.38 MiB -1 -1 0.19 21536 1 0.03 -1 -1 33512 -1 -1 16 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65920 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 25.6 MiB 5.53 879 12808 3950 7474 1384 64.4 MiB 0.09 0.00 3.59615 -129.411 -3.59615 3.59615 0.86 0.000208218 0.000161966 0.0174581 0.0138737 -1 -1 -1 -1 34 2239 23 6.87369e+06 223581 618332. 2139.56 1.44 0.072401 0.0589299 25762 151098 -1 1862 21 1602 2312 183384 40198 2.87886 2.87886 -123.177 -2.87886 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0134128 0.0115365 114 96 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 7.83 vpr 64.27 MiB -1 -1 0.20 21420 1 0.03 -1 -1 33892 -1 -1 32 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65816 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 25.3 MiB 3.71 1029 16083 4329 9310 2444 64.3 MiB 0.11 0.00 4.14663 -128.65 -4.14663 4.14663 0.87 0.000213299 0.000169185 0.0173993 0.0139803 -1 -1 -1 -1 32 2440 18 6.87369e+06 447163 586450. 2029.24 0.91 0.050178 0.0413322 25474 144626 -1 2064 21 1193 1878 143364 33256 3.24961 3.24961 -117.981 -3.24961 0 0 744469. 2576.02 0.28 0.05 0.13 -1 -1 0.28 0.0131798 0.0113627 134 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 11.30 vpr 64.73 MiB -1 -1 0.25 21912 1 0.03 -1 -1 34080 -1 -1 25 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66280 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 25.8 MiB 6.08 1256 15335 4173 9820 1342 64.7 MiB 0.13 0.00 5.90839 -177.511 -5.90839 5.90839 0.86 0.000233107 0.000185047 0.02089 0.0169988 -1 -1 -1 -1 34 3251 23 6.87369e+06 349346 618332. 2139.56 1.88 0.0879556 0.0728296 25762 151098 -1 2604 22 2027 3067 244222 57410 4.9762 4.9762 -169.067 -4.9762 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.0171648 0.0148977 171 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 6.65 vpr 63.51 MiB -1 -1 0.17 21200 1 0.03 -1 -1 33888 -1 -1 15 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65036 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 24.9 MiB 2.25 720 11161 3070 6702 1389 63.5 MiB 0.06 0.00 3.01346 -96.0966 -3.01346 3.01346 0.87 0.000139644 0.000109126 0.0107476 0.00853718 -1 -1 -1 -1 34 1704 20 6.87369e+06 209608 618332. 2139.56 1.33 0.0471826 0.038592 25762 151098 -1 1500 26 993 1332 109947 25100 2.57366 2.57366 -98.2805 -2.57366 0 0 787024. 2723.27 0.30 0.04 0.13 -1 -1 0.30 0.0102362 0.00877065 81 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 5.47 vpr 63.74 MiB -1 -1 0.18 21400 1 0.03 -1 -1 33896 -1 -1 19 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65272 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 25.2 MiB 1.51 777 9706 2580 6483 643 63.7 MiB 0.07 0.00 3.91444 -121.772 -3.91444 3.91444 0.86 0.000173879 0.000137611 0.0110428 0.00881899 -1 -1 -1 -1 30 1783 33 6.87369e+06 265503 556674. 1926.21 0.89 0.0447394 0.0368804 25186 138497 -1 1503 20 912 1424 85348 19767 2.94916 2.94916 -112.049 -2.94916 0 0 706193. 2443.58 0.27 0.04 0.12 -1 -1 0.27 0.010425 0.0090227 105 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 5.96 vpr 63.80 MiB -1 -1 0.17 21588 1 0.03 -1 -1 33748 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65332 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 25.2 MiB 1.82 823 13719 4254 8151 1314 63.8 MiB 0.09 0.00 3.44891 -115.299 -3.44891 3.44891 0.88 0.000183636 0.000143315 0.0149143 0.011786 -1 -1 -1 -1 32 2354 28 6.87369e+06 321398 586450. 2029.24 0.98 0.0467496 0.0382073 25474 144626 -1 1959 22 1404 2460 214166 49660 3.07456 3.07456 -119.964 -3.07456 0 0 744469. 2576.02 0.28 0.06 0.13 -1 -1 0.28 0.0119403 0.0103049 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 5.02 vpr 63.48 MiB -1 -1 0.16 21196 1 0.03 -1 -1 33892 -1 -1 29 25 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65000 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 24.9 MiB 1.09 469 11804 3249 6587 1968 63.5 MiB 0.06 0.00 3.45495 -79.1828 -3.45495 3.45495 0.86 0.000138923 0.000107705 0.00996419 0.007792 -1 -1 -1 -1 30 1311 22 6.87369e+06 405241 556674. 1926.21 0.84 0.03198 0.0260863 25186 138497 -1 979 19 618 1125 61942 15499 2.93926 2.93926 -76.5502 -2.93926 0 0 706193. 2443.58 0.29 0.03 0.12 -1 -1 0.29 0.00776522 0.00668126 87 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 8.58 vpr 64.32 MiB -1 -1 0.21 21600 1 0.03 -1 -1 33888 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65860 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 25.4 MiB 3.67 967 14724 4258 8138 2328 64.3 MiB 0.11 0.00 4.3826 -128.252 -4.3826 4.3826 0.87 0.000219628 0.000174028 0.0200568 0.0161102 -1 -1 -1 -1 34 2869 26 6.87369e+06 279477 618332. 2139.56 1.65 0.0798496 0.0651133 25762 151098 -1 2467 20 1544 2645 204924 48842 3.93806 3.93806 -132.192 -3.93806 0 0 787024. 2723.27 0.31 0.06 0.13 -1 -1 0.31 0.013917 0.0120956 133 72 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 8.62 vpr 64.58 MiB -1 -1 0.20 21636 1 0.03 -1 -1 34120 -1 -1 31 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66132 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 25.6 MiB 3.85 1004 17347 4956 10888 1503 64.6 MiB 0.13 0.00 4.17399 -136.544 -4.17399 4.17399 0.87 0.000251491 0.000203286 0.0217684 0.0176775 -1 -1 -1 -1 34 2399 24 6.87369e+06 433189 618332. 2139.56 1.47 0.0833938 0.0683127 25762 151098 -1 2014 19 1684 2595 166650 40129 3.01531 3.01531 -120.867 -3.01531 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0145411 0.0124862 143 90 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 10.02 vpr 64.12 MiB -1 -1 0.18 21564 1 0.03 -1 -1 33820 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65656 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 25.3 MiB 2.74 1064 11788 3543 6827 1418 64.1 MiB 0.10 0.00 5.46377 -156.517 -5.46377 5.46377 0.88 0.000224853 0.000180705 0.0152571 0.0123533 -1 -1 -1 -1 30 2967 26 6.89349e+06 338252 556674. 1926.21 4.12 0.0920899 0.0756403 25186 138497 -1 2182 20 1416 2193 131888 32218 4.30509 4.30509 -143.214 -4.30509 0 0 706193. 2443.58 0.27 0.05 0.12 -1 -1 0.27 0.0127301 0.0110348 149 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 7.57 vpr 64.29 MiB -1 -1 0.20 21552 1 0.03 -1 -1 34148 -1 -1 26 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65832 30 32 363 293 1 229 88 17 17 289 -1 unnamed_device 25.4 MiB 2.64 1124 13738 3850 8296 1592 64.3 MiB 0.11 0.00 4.83304 -147.244 -4.83304 4.83304 0.89 0.000206477 0.000163244 0.016513 0.0131582 -1 -1 -1 -1 34 2963 23 6.89349e+06 366440 618332. 2139.56 1.69 0.0724681 0.059149 25762 151098 -1 2412 24 2103 3099 213515 50520 4.35719 4.35719 -147.275 -4.35719 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0146084 0.0125248 158 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 7.49 vpr 63.85 MiB -1 -1 0.17 21364 1 0.03 -1 -1 33896 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65380 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 25.3 MiB 2.76 986 10315 2668 7087 560 63.8 MiB 0.08 0.00 4.28303 -120.803 -4.28303 4.28303 0.88 0.00018383 0.000146061 0.0123218 0.00987699 -1 -1 -1 -1 34 2543 23 6.89349e+06 295971 618332. 2139.56 1.57 0.0631218 0.05207 25762 151098 -1 2116 19 1277 1735 126865 29234 3.6343 3.6343 -119.864 -3.6343 0 0 787024. 2723.27 0.30 0.04 0.13 -1 -1 0.30 0.010731 0.0093187 125 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 7.27 vpr 63.60 MiB -1 -1 0.19 21460 1 0.03 -1 -1 34016 -1 -1 24 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65124 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 25.0 MiB 2.23 1020 7153 1669 4959 525 63.6 MiB 0.06 0.00 4.81208 -129.448 -4.81208 4.81208 0.88 0.000185646 0.000146337 0.00956448 0.00785228 -1 -1 -1 -1 36 2388 20 6.89349e+06 338252 648988. 2245.63 1.84 0.0596682 0.0493457 26050 158493 -1 2075 18 1238 2046 156652 33509 3.6654 3.6654 -116.643 -3.6654 0 0 828058. 2865.25 0.31 0.05 0.15 -1 -1 0.31 0.0111509 0.00973852 134 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 8.06 vpr 64.06 MiB -1 -1 0.17 21396 1 0.03 -1 -1 33764 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65600 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 25.3 MiB 2.50 1107 14679 4819 7580 2280 64.1 MiB 0.11 0.00 5.27653 -151.244 -5.27653 5.27653 0.87 0.000201533 0.000159385 0.0175563 0.014029 -1 -1 -1 -1 38 2778 26 6.89349e+06 324158 678818. 2348.85 2.32 0.0756039 0.0620266 26626 170182 -1 2374 21 1936 3505 253868 55492 4.19779 4.19779 -144.222 -4.19779 0 0 902133. 3121.57 0.33 0.07 0.15 -1 -1 0.33 0.0125344 0.0108346 142 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 9.02 vpr 64.39 MiB -1 -1 0.18 21516 1 0.03 -1 -1 33960 -1 -1 33 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65932 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 25.4 MiB 3.41 1135 18523 5440 10042 3041 64.4 MiB 0.14 0.00 3.8789 -124.315 -3.8789 3.8789 0.90 0.000216935 0.00017068 0.0200823 0.0159448 -1 -1 -1 -1 36 2957 47 6.89349e+06 465097 648988. 2245.63 2.29 0.0885275 0.0723023 26050 158493 -1 2462 34 2089 3697 334723 100094 3.61635 3.61635 -126.916 -3.61635 0 0 828058. 2865.25 0.31 0.10 0.14 -1 -1 0.31 0.018662 0.0158481 162 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 6.27 vpr 63.54 MiB -1 -1 0.18 21432 1 0.03 -1 -1 34088 -1 -1 21 27 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65068 27 32 259 221 1 159 80 17 17 289 -1 unnamed_device 25.1 MiB 1.73 817 10228 2968 5692 1568 63.5 MiB 0.06 0.00 4.18543 -114.153 -4.18543 4.18543 0.86 0.000164744 0.000129968 0.0112553 0.0090359 -1 -1 -1 -1 34 1818 19 6.89349e+06 295971 618332. 2139.56 1.44 0.0545169 0.0446936 25762 151098 -1 1628 19 1216 1762 136661 30771 3.06791 3.06791 -104.44 -3.06791 0 0 787024. 2723.27 0.30 0.04 0.14 -1 -1 0.30 0.00922338 0.00798496 107 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 5.49 vpr 63.69 MiB -1 -1 0.19 21332 1 0.03 -1 -1 33832 -1 -1 32 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65216 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 25.1 MiB 1.01 946 10895 2711 7214 970 63.7 MiB 0.07 0.00 3.35428 -101.445 -3.35428 3.35428 0.88 0.000174059 0.000138727 0.0108533 0.00828946 -1 -1 -1 -1 34 2155 20 6.89349e+06 451003 618332. 2139.56 1.36 0.0553374 0.0450268 25762 151098 -1 1873 16 929 1621 103965 24171 2.61751 2.61751 -96.334 -2.61751 0 0 787024. 2723.27 0.29 0.03 0.13 -1 -1 0.29 0.008567 0.00745461 119 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 7.39 vpr 64.04 MiB -1 -1 0.20 21616 1 0.03 -1 -1 34036 -1 -1 19 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65580 31 32 317 271 1 207 82 17 17 289 -1 unnamed_device 25.3 MiB 2.65 1055 11652 3009 7126 1517 64.0 MiB 0.09 0.00 3.67955 -123.605 -3.67955 3.67955 0.87 0.000209518 0.000170541 0.0142956 0.0114398 -1 -1 -1 -1 34 2608 23 6.89349e+06 267783 618332. 2139.56 1.53 0.0645575 0.0529282 25762 151098 -1 2206 19 1445 1973 164904 35471 2.98246 2.98246 -120.289 -2.98246 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0149775 0.0131074 131 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 6.91 vpr 63.91 MiB -1 -1 0.18 21584 1 0.03 -1 -1 34052 -1 -1 18 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65448 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 25.2 MiB 2.26 837 7202 1579 5230 393 63.9 MiB 0.07 0.00 4.04458 -129.952 -4.04458 4.04458 0.87 0.0001822 0.000143925 0.00885725 0.00718108 -1 -1 -1 -1 34 2391 27 6.89349e+06 253689 618332. 2139.56 1.47 0.0593092 0.0487788 25762 151098 -1 1910 20 1366 1796 129797 30654 3.2385 3.2385 -122.793 -3.2385 0 0 787024. 2723.27 0.30 0.04 0.16 -1 -1 0.30 0.0120678 0.0105627 120 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 7.61 vpr 63.88 MiB -1 -1 0.19 21400 1 0.03 -1 -1 33908 -1 -1 21 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65412 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 25.2 MiB 2.80 927 14123 4163 7804 2156 63.9 MiB 0.09 0.00 4.49997 -130.748 -4.49997 4.49997 0.87 0.000173406 0.000135916 0.0153751 0.012255 -1 -1 -1 -1 34 2305 38 6.89349e+06 295971 618332. 2139.56 1.59 0.0682435 0.055674 25762 151098 -1 1923 20 1284 1698 124692 28790 3.4872 3.4872 -123.184 -3.4872 0 0 787024. 2723.27 0.30 0.04 0.14 -1 -1 0.30 0.0107664 0.00930254 124 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 6.79 vpr 63.89 MiB -1 -1 0.19 21400 1 0.03 -1 -1 33580 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65428 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 25.2 MiB 2.01 952 13206 3625 8328 1253 63.9 MiB 0.08 0.00 3.6917 -113.924 -3.6917 3.6917 0.86 0.000183917 0.000146037 0.0147045 0.0117537 -1 -1 -1 -1 34 2324 21 6.89349e+06 239595 618332. 2139.56 1.61 0.0606574 0.0497475 25762 151098 -1 1923 19 1033 1405 106174 24328 2.93851 2.93851 -112.281 -2.93851 0 0 787024. 2723.27 0.30 0.04 0.14 -1 -1 0.30 0.00992751 0.00858937 108 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 8.18 vpr 64.23 MiB -1 -1 0.19 21328 1 0.03 -1 -1 33784 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65768 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 25.4 MiB 2.72 1112 16791 5058 9343 2390 64.2 MiB 0.12 0.00 4.10168 -134.349 -4.10168 4.10168 0.86 0.000200833 0.00015863 0.0191746 0.0153194 -1 -1 -1 -1 36 2698 22 6.89349e+06 324158 648988. 2245.63 2.19 0.0781544 0.0642166 26050 158493 -1 2404 21 1507 2341 203029 43277 3.18756 3.18756 -125.041 -3.18756 0 0 828058. 2865.25 0.32 0.06 0.14 -1 -1 0.32 0.0143072 0.0122936 143 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 8.69 vpr 64.18 MiB -1 -1 0.19 21680 1 0.03 -1 -1 33808 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65716 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 25.5 MiB 3.39 1080 16663 5045 8811 2807 64.2 MiB 0.13 0.00 5.63697 -160.415 -5.63697 5.63697 0.87 0.000214536 0.000169284 0.0208783 0.0167881 -1 -1 -1 -1 34 3263 37 6.89349e+06 338252 618332. 2139.56 1.96 0.0871053 0.071511 25762 151098 -1 2346 21 1863 2593 189943 44204 4.44739 4.44739 -150.221 -4.44739 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.013795 0.0119333 153 61 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 6.58 vpr 63.39 MiB -1 -1 0.19 21300 1 0.03 -1 -1 33848 -1 -1 18 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64916 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 25.0 MiB 1.98 852 11909 3160 6915 1834 63.4 MiB 0.07 0.00 3.19582 -98.8741 -3.19582 3.19582 0.87 0.000154617 0.000122625 0.012206 0.00978114 -1 -1 -1 -1 34 1998 28 6.89349e+06 253689 618332. 2139.56 1.42 0.0566323 0.0465394 25762 151098 -1 1744 19 990 1363 98877 22900 2.88911 2.88911 -99.3738 -2.88911 0 0 787024. 2723.27 0.30 0.04 0.13 -1 -1 0.30 0.00941014 0.00818673 102 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 8.99 vpr 64.21 MiB -1 -1 0.18 21524 1 0.03 -1 -1 33960 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65756 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 25.3 MiB 3.74 1298 15493 4676 9050 1767 64.2 MiB 0.12 0.00 4.1661 -138.014 -4.1661 4.1661 0.90 0.000240919 0.000194263 0.0198154 0.0158833 -1 -1 -1 -1 34 3382 50 6.89349e+06 338252 618332. 2139.56 1.93 0.0933646 0.0764721 25762 151098 -1 2818 21 2116 3346 245686 55521 3.72535 3.72535 -140.74 -3.72535 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0139328 0.0120557 159 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 7.88 vpr 63.96 MiB -1 -1 0.20 21536 1 0.03 -1 -1 33668 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65496 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 25.2 MiB 2.72 1059 14450 4622 7260 2568 64.0 MiB 0.10 0.00 4.13204 -133.409 -4.13204 4.13204 0.86 0.000207884 0.000163843 0.0176867 0.0141329 -1 -1 -1 -1 34 2659 50 6.89349e+06 310065 618332. 2139.56 1.95 0.087335 0.0716111 25762 151098 -1 2275 19 1487 2177 187547 40425 3.10146 3.10146 -121.303 -3.10146 0 0 787024. 2723.27 0.29 0.05 0.13 -1 -1 0.29 0.0119671 0.0103802 142 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 8.10 vpr 63.51 MiB -1 -1 0.20 21580 1 0.03 -1 -1 33508 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 24.8 MiB 3.11 1220 14965 4341 8910 1714 63.5 MiB 0.11 0.00 3.67155 -130.035 -3.67155 3.67155 0.86 0.000194765 0.000153851 0.0174776 0.0139938 -1 -1 -1 -1 34 2727 43 6.89349e+06 295971 618332. 2139.56 1.75 0.0765472 0.0627204 25762 151098 -1 2283 21 1426 1856 144371 32637 2.81996 2.81996 -120.618 -2.81996 0 0 787024. 2723.27 0.32 0.05 0.14 -1 -1 0.32 0.0123266 0.0106877 131 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 5.69 vpr 63.40 MiB -1 -1 0.16 21244 1 0.03 -1 -1 33892 -1 -1 15 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64920 30 32 222 206 1 141 77 17 17 289 -1 unnamed_device 24.9 MiB 1.81 773 8390 2474 4676 1240 63.4 MiB 0.05 0.00 2.65863 -91.3953 -2.65863 2.65863 0.87 0.000150124 0.000119156 0.00884611 0.00714858 -1 -1 -1 -1 30 1654 19 6.89349e+06 211408 556674. 1926.21 0.85 0.0315785 0.0261245 25186 138497 -1 1419 17 650 748 54641 12715 2.06407 2.06407 -89.984 -2.06407 0 0 706193. 2443.58 0.28 0.03 0.12 -1 -1 0.28 0.00747759 0.00650192 82 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 9.54 vpr 63.87 MiB -1 -1 0.19 21540 1 0.03 -1 -1 34016 -1 -1 19 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65400 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 24.9 MiB 3.28 980 13254 3823 7828 1603 63.9 MiB 0.09 0.00 4.85214 -146.508 -4.85214 4.85214 0.87 0.000174741 0.000137893 0.0149417 0.0119799 -1 -1 -1 -1 30 2316 25 6.89349e+06 267783 556674. 1926.21 3.06 0.0835773 0.0684444 25186 138497 -1 1957 21 1095 1745 135680 29709 3.44645 3.44645 -132.388 -3.44645 0 0 706193. 2443.58 0.27 0.04 0.12 -1 -1 0.27 0.0109613 0.00948978 117 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 6.79 vpr 63.91 MiB -1 -1 0.20 21524 1 0.03 -1 -1 34128 -1 -1 34 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65444 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 25.3 MiB 1.90 1134 18323 5038 11357 1928 63.9 MiB 0.13 0.00 4.77763 -150.944 -4.77763 4.77763 0.87 0.000211794 0.000169677 0.0186971 0.0151112 -1 -1 -1 -1 34 2697 21 6.89349e+06 479191 618332. 2139.56 1.61 0.0741239 0.0609715 25762 151098 -1 2339 24 1570 2408 208449 46358 3.91014 3.91014 -143.319 -3.91014 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.014082 0.0121288 151 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 7.89 vpr 64.22 MiB -1 -1 0.20 21824 1 0.03 -1 -1 33656 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65764 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 25.3 MiB 2.37 1226 16023 5263 8066 2694 64.2 MiB 0.12 0.00 4.5284 -136.451 -4.5284 4.5284 0.87 0.000226913 0.000169465 0.0197733 0.0157684 -1 -1 -1 -1 36 2809 22 6.89349e+06 324158 648988. 2245.63 2.26 0.0896427 0.0740442 26050 158493 -1 2359 21 1619 2528 181970 39402 3.8927 3.8927 -135.308 -3.8927 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0140121 0.0121505 156 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 6.49 vpr 63.20 MiB -1 -1 0.17 21312 1 0.03 -1 -1 34340 -1 -1 18 26 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64720 26 32 190 182 1 126 76 17 17 289 -1 unnamed_device 24.5 MiB 1.72 418 9996 4130 4980 886 63.2 MiB 0.05 0.00 2.70371 -73.8386 -2.70371 2.70371 0.92 0.000126079 9.8583e-05 0.0100499 0.00815439 -1 -1 -1 -1 34 1435 48 6.89349e+06 253689 618332. 2139.56 1.62 0.0484037 0.0395386 25762 151098 -1 992 15 616 732 54609 13861 2.01835 2.01835 -68.0094 -2.01835 0 0 787024. 2723.27 0.30 0.02 0.13 -1 -1 0.30 0.00614773 0.00537018 75 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 6.34 vpr 63.64 MiB -1 -1 0.18 21380 1 0.03 -1 -1 33928 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65164 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 25.1 MiB 1.54 1067 12375 3267 7751 1357 63.6 MiB 0.10 0.00 4.54727 -128.116 -4.54727 4.54727 0.88 0.00018808 0.000149125 0.014201 0.0114221 -1 -1 -1 -1 34 2366 30 6.89349e+06 324158 618332. 2139.56 1.60 0.0662961 0.0546645 25762 151098 -1 2096 19 1286 2385 179552 39922 3.6391 3.6391 -122.053 -3.6391 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0113849 0.00991717 119 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 4.74 vpr 63.21 MiB -1 -1 0.15 21196 1 0.03 -1 -1 33596 -1 -1 12 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64732 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 24.6 MiB 0.68 403 9836 3145 4361 2330 63.2 MiB 0.04 0.00 2.34152 -71.3945 -2.34152 2.34152 0.90 0.000125186 9.7798e-05 0.0088304 0.00706624 -1 -1 -1 -1 32 1221 23 6.89349e+06 169126 586450. 2029.24 0.87 0.0291468 0.0239823 25474 144626 -1 935 22 680 881 63446 17592 2.01306 2.01306 -72.7771 -2.01306 0 0 744469. 2576.02 0.28 0.03 0.13 -1 -1 0.28 0.00770049 0.00661744 65 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 6.96 vpr 63.81 MiB -1 -1 0.18 21580 1 0.03 -1 -1 33960 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65340 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 25.2 MiB 2.21 984 14175 4702 7220 2253 63.8 MiB 0.10 0.00 4.89708 -136.259 -4.89708 4.89708 0.90 0.000185985 0.000147326 0.0168321 0.0136475 -1 -1 -1 -1 34 2464 24 6.89349e+06 281877 618332. 2139.56 1.55 0.069935 0.0570079 25762 151098 -1 1959 18 1130 1661 120876 27312 3.76256 3.76256 -122.693 -3.76256 0 0 787024. 2723.27 0.30 0.04 0.14 -1 -1 0.30 0.0105594 0.00921037 125 24 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 5.39 vpr 63.69 MiB -1 -1 0.18 21624 1 0.03 -1 -1 34180 -1 -1 31 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65216 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 25.1 MiB 1.09 988 16079 4364 9917 1798 63.7 MiB 0.12 0.00 3.39295 -107.482 -3.39295 3.39295 0.95 0.000186774 0.000147218 0.0155786 0.012451 -1 -1 -1 -1 28 2520 24 6.89349e+06 436909 531479. 1839.03 1.02 0.0495745 0.040932 24610 126494 -1 2310 22 1455 2525 183042 43297 2.94641 2.94641 -112.319 -2.94641 0 0 648988. 2245.63 0.26 0.05 0.11 -1 -1 0.26 0.0121503 0.0104621 130 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 8.50 vpr 64.37 MiB -1 -1 0.22 21404 1 0.03 -1 -1 33868 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65916 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 25.6 MiB 3.25 1111 15639 4885 7776 2978 64.4 MiB 0.12 0.00 4.89143 -136.037 -4.89143 4.89143 0.89 0.000207019 0.000163099 0.0192408 0.0153268 -1 -1 -1 -1 38 2557 22 6.89349e+06 324158 678818. 2348.85 1.88 0.0771184 0.0634838 26626 170182 -1 2201 21 1376 2078 155445 32828 3.67726 3.67726 -123.649 -3.67726 0 0 902133. 3121.57 0.34 0.05 0.15 -1 -1 0.34 0.0126882 0.0109504 142 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 7.72 vpr 63.39 MiB -1 -1 0.18 21628 1 0.03 -1 -1 33408 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64916 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 24.9 MiB 2.95 990 13381 4491 7116 1774 63.4 MiB 0.10 0.00 3.64535 -123.731 -3.64535 3.64535 0.87 0.000187765 0.000149281 0.0167903 0.0135444 -1 -1 -1 -1 34 2272 22 6.89349e+06 239595 618332. 2139.56 1.52 0.0648108 0.0532143 25762 151098 -1 1932 21 1182 1772 132877 30221 3.01066 3.01066 -119.775 -3.01066 0 0 787024. 2723.27 0.29 0.05 0.14 -1 -1 0.29 0.0112991 0.00977726 112 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 7.67 vpr 63.68 MiB -1 -1 0.18 21392 1 0.03 -1 -1 33612 -1 -1 17 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65212 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 25.0 MiB 2.36 909 12754 4731 6611 1412 63.7 MiB 0.08 0.00 4.01762 -117.054 -4.01762 4.01762 0.90 0.000175382 0.000138981 0.0147816 0.0118638 -1 -1 -1 -1 34 2214 31 6.89349e+06 239595 618332. 2139.56 1.97 0.0712565 0.0591749 25762 151098 -1 1810 31 1254 2280 302828 126933 3.3027 3.3027 -110.07 -3.3027 0 0 787024. 2723.27 0.34 0.09 0.14 -1 -1 0.34 0.013792 0.011779 104 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 7.58 vpr 63.55 MiB -1 -1 0.18 21108 1 0.03 -1 -1 33708 -1 -1 20 28 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65072 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 25.1 MiB 2.53 829 10744 2823 7309 612 63.5 MiB 0.07 0.00 4.27226 -119.167 -4.27226 4.27226 0.87 0.000166808 0.000131094 0.0119062 0.00953428 -1 -1 -1 -1 34 2243 35 6.89349e+06 281877 618332. 2139.56 1.90 0.0609143 0.0497295 25762 151098 -1 1746 16 1011 1667 124248 27774 3.45175 3.45175 -114.697 -3.45175 0 0 787024. 2723.27 0.31 0.04 0.13 -1 -1 0.31 0.00895902 0.00777382 107 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 5.79 vpr 63.37 MiB -1 -1 0.17 21132 1 0.03 -1 -1 33648 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 24.7 MiB 1.60 714 11106 3926 4953 2227 63.4 MiB 0.07 0.00 3.82748 -115.489 -3.82748 3.82748 0.86 0.000160618 0.000126928 0.0116481 0.00929028 -1 -1 -1 -1 30 2318 26 6.89349e+06 239595 556674. 1926.21 1.07 0.0402944 0.0331175 25186 138497 -1 1775 21 1230 2035 152867 35481 3.02446 3.02446 -116.652 -3.02446 0 0 706193. 2443.58 0.28 0.05 0.12 -1 -1 0.28 0.0104922 0.0090933 101 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 7.12 vpr 63.62 MiB -1 -1 0.19 21116 1 0.03 -1 -1 34112 -1 -1 18 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65144 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 25.1 MiB 2.30 960 14081 4470 7746 1865 63.6 MiB 0.09 0.00 3.58045 -113.742 -3.58045 3.58045 0.86 0.000174776 0.000138686 0.0157125 0.0126894 -1 -1 -1 -1 34 2228 27 6.89349e+06 253689 618332. 2139.56 1.64 0.0640585 0.0526174 25762 151098 -1 1952 22 1147 1743 143098 31691 2.80601 2.80601 -107.332 -2.80601 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0110174 0.00953755 108 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 8.18 vpr 63.58 MiB -1 -1 0.19 21720 1 0.03 -1 -1 33808 -1 -1 22 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65108 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 25.0 MiB 3.12 955 13763 4007 8316 1440 63.6 MiB 0.09 0.00 3.50915 -107.043 -3.50915 3.50915 0.89 0.000177216 0.000139437 0.0152351 0.0121653 -1 -1 -1 -1 36 2068 25 6.89349e+06 310065 648988. 2245.63 1.73 0.0681436 0.0563474 26050 158493 -1 1863 22 1037 1440 101893 22703 2.57556 2.57556 -101.163 -2.57556 0 0 828058. 2865.25 0.31 0.04 0.15 -1 -1 0.31 0.0117574 0.01014 120 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 7.51 vpr 64.34 MiB -1 -1 0.19 21360 1 0.03 -1 -1 34052 -1 -1 25 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65880 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 25.4 MiB 2.12 1344 6623 1379 4726 518 64.3 MiB 0.07 0.00 4.57545 -133.188 -4.57545 4.57545 0.87 0.000265472 0.000219161 0.00956012 0.00784696 -1 -1 -1 -1 36 2931 18 6.89349e+06 352346 648988. 2245.63 2.19 0.0725018 0.0603118 26050 158493 -1 2509 19 1364 2352 169188 37207 3.89416 3.89416 -129.763 -3.89416 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0134012 0.0116214 159 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 8.69 vpr 64.50 MiB -1 -1 0.19 21508 1 0.03 -1 -1 33668 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66048 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 25.6 MiB 3.11 1314 15103 4520 8282 2301 64.5 MiB 0.11 0.00 4.62597 -154.671 -4.62597 4.62597 0.88 0.000241954 0.000174667 0.0199846 0.0161171 -1 -1 -1 -1 38 2891 23 6.89349e+06 338252 678818. 2348.85 2.16 0.101792 0.0861614 26626 170182 -1 2554 24 2212 3209 243302 52794 3.76655 3.76655 -142.691 -3.76655 0 0 902133. 3121.57 0.33 0.08 0.14 -1 -1 0.33 0.0178651 0.0152686 168 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 7.22 vpr 63.72 MiB -1 -1 0.19 21560 1 0.03 -1 -1 33356 -1 -1 18 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65248 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 25.1 MiB 2.32 891 12681 4633 6140 1908 63.7 MiB 0.08 0.00 4.00748 -121.286 -4.00748 4.00748 0.88 0.000167801 0.00013189 0.0136682 0.0109159 -1 -1 -1 -1 34 2241 20 6.89349e+06 253689 618332. 2139.56 1.70 0.0604483 0.0494803 25762 151098 -1 1909 20 958 1482 148975 31008 3.08205 3.08205 -114.277 -3.08205 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0109286 0.00945882 109 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 8.63 vpr 64.05 MiB -1 -1 0.20 21568 1 0.03 -1 -1 34192 -1 -1 25 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65592 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 25.3 MiB 3.43 1219 12958 3345 8411 1202 64.1 MiB 0.11 0.00 4.38103 -136.881 -4.38103 4.38103 0.87 0.000214516 0.000167273 0.0169755 0.0135967 -1 -1 -1 -1 34 3233 38 6.89349e+06 352346 618332. 2139.56 1.92 0.0893028 0.0733587 25762 151098 -1 2633 17 1526 2281 168204 37222 3.963 3.963 -135.949 -3.963 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.013326 0.0116282 160 61 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 9.61 vpr 64.67 MiB -1 -1 0.19 21844 1 0.03 -1 -1 33784 -1 -1 25 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66224 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 25.9 MiB 3.73 1259 16858 6134 8135 2589 64.7 MiB 0.13 0.00 5.51507 -165.9 -5.51507 5.51507 0.89 0.000217228 0.000171727 0.021436 0.0172903 -1 -1 -1 -1 34 3658 48 6.89349e+06 352346 618332. 2139.56 2.44 0.101261 0.0835919 25762 151098 -1 2837 19 1954 2862 268934 54976 4.90688 4.90688 -164.555 -4.90688 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0165894 0.0145369 163 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 8.70 vpr 64.23 MiB -1 -1 0.21 21672 1 0.03 -1 -1 33804 -1 -1 25 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65768 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 25.3 MiB 3.60 1190 15688 5780 7361 2547 64.2 MiB 0.12 0.00 5.54088 -167.719 -5.54088 5.54088 0.87 0.00022965 0.000183606 0.0209817 0.0170536 -1 -1 -1 -1 36 2845 29 6.89349e+06 352346 648988. 2245.63 1.81 0.0848826 0.0696389 26050 158493 -1 2560 21 1818 2649 192963 43117 4.66028 4.66028 -159.451 -4.66028 0 0 828058. 2865.25 0.33 0.06 0.14 -1 -1 0.33 0.0140163 0.0121507 166 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 7.73 vpr 64.15 MiB -1 -1 0.20 21580 1 0.03 -1 -1 34064 -1 -1 24 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65692 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 25.3 MiB 2.84 1192 10071 2510 6717 844 64.2 MiB 0.09 0.00 4.12652 -128.326 -4.12652 4.12652 0.88 0.000204637 0.000161764 0.0128692 0.0103678 -1 -1 -1 -1 34 3003 29 6.89349e+06 338252 618332. 2139.56 1.64 0.0718484 0.0589535 25762 151098 -1 2411 19 1685 2497 182458 40756 3.06536 3.06536 -118.85 -3.06536 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0123196 0.0106909 148 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 7.39 vpr 63.41 MiB -1 -1 0.24 21464 1 0.03 -1 -1 33764 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 24.8 MiB 2.17 1042 13992 4713 7020 2259 63.4 MiB 0.09 0.00 4.55135 -122.838 -4.55135 4.55135 0.89 0.000186023 0.000146247 0.0160372 0.0128928 -1 -1 -1 -1 36 2449 22 6.89349e+06 281877 648988. 2245.63 1.83 0.0691096 0.0573564 26050 158493 -1 2067 17 1068 1504 111942 24821 3.83 3.83 -120.094 -3.83 0 0 828058. 2865.25 0.31 0.04 0.16 -1 -1 0.31 0.0102246 0.00893711 120 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 11.06 vpr 64.70 MiB -1 -1 0.21 21836 1 0.03 -1 -1 34144 -1 -1 31 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66248 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 25.8 MiB 3.90 1364 18239 5649 8664 3926 64.7 MiB 0.15 0.00 5.39684 -169.798 -5.39684 5.39684 0.87 0.00025467 0.000202474 0.0241345 0.0193968 -1 -1 -1 -1 38 3436 29 6.89349e+06 436909 678818. 2348.85 3.70 0.108771 0.0898374 26626 170182 -1 2763 22 2303 3425 225653 53510 4.45139 4.45139 -158.876 -4.45139 0 0 902133. 3121.57 0.33 0.07 0.15 -1 -1 0.33 0.0181762 0.0157852 203 87 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 7.15 vpr 63.67 MiB -1 -1 0.18 21476 1 0.03 -1 -1 33620 -1 -1 18 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65200 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 24.9 MiB 2.45 847 14606 5701 6811 2094 63.7 MiB 0.09 0.00 3.7437 -110.885 -3.7437 3.7437 0.86 0.000161833 0.000126952 0.015082 0.0120729 -1 -1 -1 -1 34 2267 24 6.89349e+06 253689 618332. 2139.56 1.44 0.0626368 0.0512795 25762 151098 -1 1904 18 1147 1538 109956 25270 3.04966 3.04966 -107.803 -3.04966 0 0 787024. 2723.27 0.30 0.04 0.13 -1 -1 0.30 0.00936004 0.00815747 106 28 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 6.54 vpr 63.90 MiB -1 -1 0.20 21516 1 0.03 -1 -1 33716 -1 -1 23 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65436 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 25.2 MiB 2.29 1157 11993 3200 7722 1071 63.9 MiB 0.10 0.00 4.79572 -144.196 -4.79572 4.79572 0.96 0.000216984 0.00017288 0.0157461 0.0127641 -1 -1 -1 -1 30 2885 23 6.89349e+06 324158 556674. 1926.21 0.97 0.0509703 0.0420582 25186 138497 -1 2325 20 1370 2211 156865 34337 3.9931 3.9931 -137.075 -3.9931 0 0 706193. 2443.58 0.29 0.05 0.12 -1 -1 0.29 0.0129763 0.0112568 140 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 8.56 vpr 64.15 MiB -1 -1 0.17 21600 1 0.03 -1 -1 33796 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65692 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 25.4 MiB 3.49 1255 9111 2360 6068 683 64.2 MiB 0.08 0.00 4.32959 -133.247 -4.32959 4.32959 0.87 0.000202904 0.000160799 0.0112855 0.00912266 -1 -1 -1 -1 34 3300 43 6.89349e+06 324158 618332. 2139.56 1.86 0.0810333 0.0668438 25762 151098 -1 2606 22 1582 2655 192368 43364 3.5174 3.5174 -127.286 -3.5174 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0155443 0.0135373 149 53 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 5.41 vpr 63.65 MiB -1 -1 0.17 21516 1 0.03 -1 -1 33716 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65176 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 25.1 MiB 1.19 980 8934 2029 6214 691 63.6 MiB 0.08 0.00 4.26729 -129.015 -4.26729 4.26729 0.88 0.000186274 0.00014782 0.0105544 0.00863692 -1 -1 -1 -1 32 2710 19 6.89349e+06 366440 586450. 2029.24 0.95 0.039582 0.032944 25474 144626 -1 2224 21 1333 2551 219755 47788 3.5072 3.5072 -124.725 -3.5072 0 0 744469. 2576.02 0.29 0.06 0.14 -1 -1 0.29 0.0115817 0.00996786 123 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 8.25 vpr 64.01 MiB -1 -1 0.20 21420 1 0.03 -1 -1 33776 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65548 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 25.2 MiB 2.65 1059 12951 4043 6051 2857 64.0 MiB 0.11 0.00 4.45401 -129.14 -4.45401 4.45401 0.88 0.000255288 0.000202689 0.0167644 0.0134365 -1 -1 -1 -1 36 2779 21 6.89349e+06 324158 648988. 2245.63 2.31 0.0738512 0.0605748 26050 158493 -1 2152 20 1610 2295 178017 39817 3.10276 3.10276 -115.251 -3.10276 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0135618 0.0117874 148 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 8.75 vpr 64.35 MiB -1 -1 0.19 21532 1 0.03 -1 -1 33952 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65896 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 25.4 MiB 3.43 1253 16468 4636 10263 1569 64.4 MiB 0.12 0.00 4.19329 -135.481 -4.19329 4.19329 0.88 0.000323816 0.000260762 0.0198233 0.0158857 -1 -1 -1 -1 36 3187 25 6.89349e+06 338252 648988. 2245.63 2.02 0.0771515 0.0630639 26050 158493 -1 2602 20 1650 2573 193342 42638 3.59435 3.59435 -129.638 -3.59435 0 0 828058. 2865.25 0.32 0.06 0.14 -1 -1 0.32 0.0132238 0.011446 154 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 8.48 vpr 64.62 MiB -1 -1 0.20 21692 1 0.03 -1 -1 33768 -1 -1 25 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66168 32 32 382 305 1 243 89 17 17 289 -1 unnamed_device 25.6 MiB 3.31 1372 15929 5275 8784 1870 64.6 MiB 0.13 0.00 4.08378 -136.371 -4.08378 4.08378 0.88 0.00024939 0.000172743 0.0205947 0.0165734 -1 -1 -1 -1 34 3362 24 6.89349e+06 352346 618332. 2139.56 1.82 0.0872811 0.0717787 25762 151098 -1 2766 19 1860 2580 210207 46305 3.09876 3.09876 -128.874 -3.09876 0 0 787024. 2723.27 0.32 0.06 0.14 -1 -1 0.32 0.0135505 0.0118026 162 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 7.12 vpr 63.89 MiB -1 -1 0.16 21608 1 0.03 -1 -1 33892 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65420 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 25.3 MiB 2.11 1045 14593 4202 8807 1584 63.9 MiB 0.10 0.00 4.52205 -134.216 -4.52205 4.52205 0.90 0.000244859 0.000200286 0.016905 0.0135666 -1 -1 -1 -1 34 2490 46 6.89349e+06 295971 618332. 2139.56 1.78 0.0805238 0.0662346 25762 151098 -1 2130 21 1363 2223 147926 34667 3.74036 3.74036 -127.635 -3.74036 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0122592 0.0105518 128 24 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 7.35 vpr 63.97 MiB -1 -1 0.21 21532 1 0.03 -1 -1 34144 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65504 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 25.2 MiB 2.53 987 13883 3666 8021 2196 64.0 MiB 0.10 0.00 4.84598 -138.838 -4.84598 4.84598 0.89 0.000211646 0.000162171 0.0167419 0.0134463 -1 -1 -1 -1 34 2558 31 6.89349e+06 310065 618332. 2139.56 1.57 0.0750353 0.061534 25762 151098 -1 2181 19 1428 2105 149429 34251 3.7003 3.7003 -129.472 -3.7003 0 0 787024. 2723.27 0.31 0.05 0.13 -1 -1 0.31 0.0114728 0.00992739 135 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 8.85 vpr 64.21 MiB -1 -1 0.21 21668 1 0.03 -1 -1 33756 -1 -1 23 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65752 31 32 373 299 1 227 86 17 17 289 -1 unnamed_device 25.3 MiB 3.04 1211 14828 4402 8079 2347 64.2 MiB 0.12 0.00 4.74072 -143.031 -4.74072 4.74072 0.87 0.000235172 0.000189527 0.0190479 0.0152447 -1 -1 -1 -1 36 3108 20 6.89349e+06 324158 648988. 2245.63 2.39 0.0821017 0.0677276 26050 158493 -1 2499 22 1859 2953 201173 44890 3.8508 3.8508 -134.377 -3.8508 0 0 828058. 2865.25 0.33 0.06 0.20 -1 -1 0.33 0.0151513 0.0131421 156 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 9.11 vpr 64.49 MiB -1 -1 0.19 21516 1 0.03 -1 -1 34224 -1 -1 25 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66036 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 25.6 MiB 3.84 1258 10979 3006 7476 497 64.5 MiB 0.09 0.00 4.38808 -134.784 -4.38808 4.38808 0.91 0.000233508 0.000187004 0.0146118 0.0117304 -1 -1 -1 -1 34 3563 33 6.89349e+06 352346 618332. 2139.56 1.89 0.0806024 0.0657894 25762 151098 -1 2828 18 1981 2913 201286 46276 3.89396 3.89396 -136.54 -3.89396 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0126381 0.0109413 166 77 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 5.77 vpr 63.46 MiB -1 -1 0.18 21184 1 0.03 -1 -1 34052 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64988 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 24.8 MiB 1.82 732 6839 1674 4948 217 63.5 MiB 0.05 0.00 3.52919 -107.237 -3.52919 3.52919 0.88 0.000158517 0.000124819 0.0080669 0.00657729 -1 -1 -1 -1 30 2067 32 6.89349e+06 211408 556674. 1926.21 0.87 0.0386345 0.0322536 25186 138497 -1 1612 19 901 1393 89815 21726 2.59451 2.59451 -100.794 -2.59451 0 0 706193. 2443.58 0.28 0.03 0.12 -1 -1 0.28 0.00925818 0.00806481 96 23 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 7.59 vpr 64.36 MiB -1 -1 0.17 21676 1 0.03 -1 -1 33840 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65908 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 25.6 MiB 2.34 1174 13260 4046 7113 2101 64.4 MiB 0.10 0.00 4.29355 -148.609 -4.29355 4.29355 0.87 0.000202666 0.000160106 0.0165662 0.0133078 -1 -1 -1 -1 36 2755 25 6.89349e+06 281877 648988. 2245.63 2.03 0.0768323 0.0631697 26050 158493 -1 2310 19 1602 2184 177150 37060 3.48465 3.48465 -140.596 -3.48465 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0120959 0.0105556 138 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 8.41 vpr 64.25 MiB -1 -1 0.21 21924 1 0.03 -1 -1 33976 -1 -1 25 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65792 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 25.5 MiB 2.75 1358 17711 6857 9017 1837 64.2 MiB 0.15 0.00 5.47492 -162.011 -5.47492 5.47492 0.89 0.000234337 0.000184977 0.0230645 0.0184228 -1 -1 -1 -1 36 3307 24 6.89349e+06 352346 648988. 2245.63 2.23 0.0914352 0.0752617 26050 158493 -1 2710 21 1821 2824 198903 44515 4.51965 4.51965 -153.16 -4.51965 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0150431 0.0130059 168 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 7.96 vpr 64.25 MiB -1 -1 0.19 21508 1 0.03 -1 -1 34172 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65788 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 25.4 MiB 2.64 1178 13694 4056 7919 1719 64.2 MiB 0.11 0.00 4.47216 -142.443 -4.47216 4.47216 0.87 0.000212295 0.000168884 0.0171037 0.0137963 -1 -1 -1 -1 34 2809 24 6.89349e+06 310065 618332. 2139.56 2.10 0.0827224 0.0682788 25762 151098 -1 2332 18 1519 2197 170175 37027 3.02241 3.02241 -123.52 -3.02241 0 0 787024. 2723.27 0.31 0.05 0.13 -1 -1 0.31 0.01211 0.0105586 144 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 6.80 vpr 63.78 MiB -1 -1 0.18 21500 1 0.03 -1 -1 34036 -1 -1 27 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65312 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 25.0 MiB 2.05 951 12563 3271 8399 893 63.8 MiB 0.09 0.00 4.13238 -126.06 -4.13238 4.13238 0.88 0.000176476 0.000139397 0.0130066 0.0104352 -1 -1 -1 -1 34 2327 25 6.89349e+06 380534 618332. 2139.56 1.51 0.0613547 0.0503494 25762 151098 -1 2025 22 1297 2018 167340 37083 3.77555 3.77555 -130.14 -3.77555 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0120739 0.0103751 118 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 11.30 vpr 64.41 MiB -1 -1 0.20 21920 1 0.03 -1 -1 33904 -1 -1 27 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65956 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 25.5 MiB 4.43 1567 13555 4048 7346 2161 64.4 MiB 0.13 0.00 6.44359 -187.4 -6.44359 6.44359 0.90 0.000259704 0.000206441 0.0194302 0.0156467 -1 -1 -1 -1 36 3996 24 6.89349e+06 380534 648988. 2245.63 3.51 0.107723 0.0904502 26050 158493 -1 3297 22 2374 3728 349639 71806 5.33889 5.33889 -177.809 -5.33889 0 0 828058. 2865.25 0.32 0.09 0.14 -1 -1 0.32 0.0166698 0.0143769 188 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 6.85 vpr 63.89 MiB -1 -1 0.19 21384 1 0.03 -1 -1 33972 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65428 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 25.2 MiB 2.03 1067 14035 3934 8096 2005 63.9 MiB 0.10 0.00 4.72832 -145.11 -4.72832 4.72832 0.87 0.000207986 0.000164228 0.0170896 0.0136728 -1 -1 -1 -1 34 2595 24 6.89349e+06 295971 618332. 2139.56 1.50 0.0727815 0.059682 25762 151098 -1 2235 22 1787 2518 195167 43859 3.9007 3.9007 -137.409 -3.9007 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0139607 0.0121214 139 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 4.96 vpr 63.57 MiB -1 -1 0.17 21000 1 0.03 -1 -1 34140 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65100 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 24.9 MiB 0.96 695 14713 4314 8460 1939 63.6 MiB 0.09 0.00 3.6346 -100.535 -3.6346 3.6346 0.86 0.000152384 0.000119735 0.0127958 0.0101573 -1 -1 -1 -1 28 1921 19 6.89349e+06 338252 531479. 1839.03 0.93 0.0375383 0.0310653 24610 126494 -1 1691 22 1132 2010 173636 39630 2.82941 2.82941 -100.021 -2.82941 0 0 648988. 2245.63 0.26 0.05 0.12 -1 -1 0.26 0.00953107 0.00817972 94 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 8.24 vpr 64.16 MiB -1 -1 0.20 21504 1 0.03 -1 -1 33768 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65696 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 25.3 MiB 2.70 1217 14679 5443 7869 1367 64.2 MiB 0.12 0.00 5.41897 -143.636 -5.41897 5.41897 0.90 0.000208187 0.000164324 0.0180294 0.0144803 -1 -1 -1 -1 34 3127 23 6.89349e+06 324158 618332. 2139.56 2.19 0.0798716 0.065814 25762 151098 -1 2493 23 1492 2833 239730 50744 4.52875 4.52875 -141.093 -4.52875 0 0 787024. 2723.27 0.32 0.08 0.14 -1 -1 0.32 0.0169528 0.0147723 149 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 6.02 vpr 63.48 MiB -1 -1 0.15 21116 1 0.03 -1 -1 33876 -1 -1 19 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65004 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 24.8 MiB 1.27 843 14303 4411 8253 1639 63.5 MiB 0.09 0.00 3.54325 -111.744 -3.54325 3.54325 0.90 0.000160496 0.00012702 0.0144331 0.0116025 -1 -1 -1 -1 34 2087 30 6.89349e+06 267783 618332. 2139.56 1.55 0.0613956 0.050387 25762 151098 -1 1778 19 1107 1988 160160 33986 2.69866 2.69866 -106.27 -2.69866 0 0 787024. 2723.27 0.29 0.04 0.14 -1 -1 0.29 0.00871485 0.00754703 98 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 7.05 vpr 63.84 MiB -1 -1 0.18 21348 1 0.03 -1 -1 34140 -1 -1 20 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65372 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 25.3 MiB 1.97 773 9160 2547 5968 645 63.8 MiB 0.07 0.00 4.07968 -116.565 -4.07968 4.07968 0.87 0.000168988 0.000134149 0.00999903 0.00805093 -1 -1 -1 -1 36 2054 21 6.89349e+06 281877 648988. 2245.63 1.91 0.0590784 0.0488576 26050 158493 -1 1793 19 1139 1633 120373 28155 3.23906 3.23906 -112.268 -3.23906 0 0 828058. 2865.25 0.31 0.04 0.14 -1 -1 0.31 0.0106213 0.00927478 113 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 9.48 vpr 64.39 MiB -1 -1 0.19 21716 1 0.03 -1 -1 34076 -1 -1 26 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65932 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 25.5 MiB 4.25 1139 8919 2183 6102 634 64.4 MiB 0.09 0.00 4.48897 -131.496 -4.48897 4.48897 0.89 0.00023292 0.00018955 0.0132077 0.0109389 -1 -1 -1 -1 34 3051 27 6.89349e+06 366440 618332. 2139.56 1.95 0.0807409 0.066276 25762 151098 -1 2534 20 1630 2380 194289 42924 3.74455 3.74455 -127.937 -3.74455 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0129559 0.0112123 154 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 8.38 vpr 64.22 MiB -1 -1 0.18 21512 1 0.03 -1 -1 33740 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65764 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 25.3 MiB 3.09 1122 9158 2488 6122 548 64.2 MiB 0.08 0.00 4.88804 -152.378 -4.88804 4.88804 0.87 0.000218867 0.000166422 0.0121742 0.00968663 -1 -1 -1 -1 36 3060 23 6.89349e+06 310065 648988. 2245.63 2.05 0.0771834 0.063744 26050 158493 -1 2572 21 1939 2826 207505 46566 4.20505 4.20505 -147.248 -4.20505 0 0 828058. 2865.25 0.32 0.06 0.14 -1 -1 0.32 0.013929 0.0120036 151 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 8.19 vpr 64.13 MiB -1 -1 0.19 21500 1 0.03 -1 -1 33956 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65668 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 25.3 MiB 2.83 1252 12951 3653 7742 1556 64.1 MiB 0.11 0.00 5.47602 -157.843 -5.47602 5.47602 0.96 0.000216545 0.000171341 0.0169538 0.013584 -1 -1 -1 -1 36 3028 40 6.89349e+06 324158 648988. 2245.63 1.95 0.0843726 0.0693144 26050 158493 -1 2626 23 1726 2584 195995 43414 4.44939 4.44939 -152.134 -4.44939 0 0 828058. 2865.25 0.31 0.06 0.15 -1 -1 0.31 0.0144147 0.012407 150 51 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 7.06 vpr 63.72 MiB -1 -1 0.18 21596 1 0.03 -1 -1 33648 -1 -1 15 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65248 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 25.0 MiB 2.33 881 10726 3077 6717 932 63.7 MiB 0.08 0.00 4.53843 -126.576 -4.53843 4.53843 0.93 0.000177589 0.000141076 0.0131789 0.0106657 -1 -1 -1 -1 34 2186 24 6.89349e+06 211408 618332. 2139.56 1.51 0.0593135 0.0488972 25762 151098 -1 1901 14 900 1276 93884 21447 3.19321 3.19321 -115.532 -3.19321 0 0 787024. 2723.27 0.29 0.03 0.13 -1 -1 0.29 0.00838106 0.00739634 105 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 7.71 vpr 64.04 MiB -1 -1 0.20 21468 1 0.03 -1 -1 34208 -1 -1 20 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65576 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 25.3 MiB 2.36 1053 14483 4664 7716 2103 64.0 MiB 0.10 0.00 3.74261 -124.975 -3.74261 3.74261 0.86 0.00019116 0.000150082 0.0167545 0.0133714 -1 -1 -1 -1 36 2563 23 6.89349e+06 281877 648988. 2245.63 2.04 0.0808209 0.0670413 26050 158493 -1 2164 22 1485 2076 149242 33231 3.09511 3.09511 -121.194 -3.09511 0 0 828058. 2865.25 0.33 0.06 0.15 -1 -1 0.33 0.0146055 0.0126156 131 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 7.84 vpr 64.21 MiB -1 -1 0.18 21652 1 0.03 -1 -1 33752 -1 -1 26 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65752 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 25.4 MiB 2.87 1173 16273 5377 8794 2102 64.2 MiB 0.12 0.00 3.817 -113.195 -3.817 3.817 0.89 0.000199001 0.000157122 0.019174 0.0154011 -1 -1 -1 -1 34 2618 31 6.89349e+06 366440 618332. 2139.56 1.68 0.079373 0.0648642 25762 151098 -1 2167 19 1424 2168 148471 34334 3.03691 3.03691 -109.432 -3.03691 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0126549 0.0110328 142 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 6.57 vpr 63.51 MiB -1 -1 0.20 21600 1 0.03 -1 -1 33676 -1 -1 23 28 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65036 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 25.0 MiB 1.78 909 14123 3958 8851 1314 63.5 MiB 0.09 0.00 4.4511 -113.819 -4.4511 4.4511 0.87 0.000190269 0.000153005 0.015593 0.012582 -1 -1 -1 -1 34 2337 28 6.89349e+06 324158 618332. 2139.56 1.59 0.0663948 0.0546634 25762 151098 -1 1901 21 1023 1801 147034 33072 3.68256 3.68256 -111.515 -3.68256 0 0 787024. 2723.27 0.31 0.04 0.13 -1 -1 0.31 0.0107761 0.00932466 119 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 7.85 vpr 63.99 MiB -1 -1 0.18 21632 1 0.03 -1 -1 34036 -1 -1 21 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65528 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 25.3 MiB 2.54 979 14663 6207 7722 734 64.0 MiB 0.11 0.00 4.62158 -135.813 -4.62158 4.62158 0.87 0.000185792 0.000146188 0.0195364 0.0156069 -1 -1 -1 -1 36 2485 25 6.89349e+06 295971 648988. 2245.63 2.00 0.0767083 0.0631708 26050 158493 -1 2130 21 1831 2535 203191 44657 3.68864 3.68864 -131.093 -3.68864 0 0 828058. 2865.25 0.33 0.06 0.15 -1 -1 0.33 0.0131674 0.0113969 131 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 7.71 vpr 64.39 MiB -1 -1 0.19 21404 1 0.04 -1 -1 33464 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65932 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 25.6 MiB 2.41 1197 9966 2574 6122 1270 64.4 MiB 0.08 0.00 4.03794 -140.884 -4.03794 4.03794 0.87 0.000193796 0.000152816 0.0120509 0.00967655 -1 -1 -1 -1 34 2973 29 6.89349e+06 281877 618332. 2139.56 2.06 0.0714379 0.0587164 25762 151098 -1 2572 20 1685 2314 206518 44032 3.1324 3.1324 -129.633 -3.1324 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0108127 0.00934711 138 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 5.35 vpr 63.74 MiB -1 -1 0.19 21540 1 0.03 -1 -1 33844 -1 -1 31 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65268 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 25.2 MiB 1.17 933 8827 1959 6407 461 63.7 MiB 0.08 0.00 4.68742 -132.125 -4.68742 4.68742 0.87 0.000186806 0.000147963 0.0100878 0.00814999 -1 -1 -1 -1 30 2469 28 6.89349e+06 436909 556674. 1926.21 1.05 0.0438982 0.0365201 25186 138497 -1 1985 21 973 1855 124155 27575 3.7575 3.7575 -123.081 -3.7575 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.0119022 0.0102699 129 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 9.00 vpr 64.16 MiB -1 -1 0.18 21360 1 0.03 -1 -1 33712 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65704 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 25.3 MiB 2.75 993 15063 4441 7937 2685 64.2 MiB 0.11 0.00 4.79682 -147.448 -4.79682 4.79682 0.87 0.000235871 0.000179445 0.0182445 0.0146315 -1 -1 -1 -1 34 3341 42 6.89349e+06 324158 618332. 2139.56 3.02 0.0909885 0.075167 25762 151098 -1 2507 20 1793 2731 251308 57180 3.9366 3.9366 -137.622 -3.9366 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.013813 0.012014 148 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 8.54 vpr 64.45 MiB -1 -1 0.19 21404 1 0.04 -1 -1 33848 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65992 32 32 385 308 1 244 90 17 17 289 -1 unnamed_device 25.4 MiB 3.09 1227 14562 3938 8589 2035 64.4 MiB 0.11 0.00 5.38159 -164.838 -5.38159 5.38159 0.87 0.000216342 0.000169996 0.0178491 0.0142946 -1 -1 -1 -1 36 3243 27 6.89349e+06 366440 648988. 2245.63 2.12 0.0872039 0.0723198 26050 158493 -1 2568 22 2110 2989 235894 51836 4.67469 4.67469 -163.039 -4.67469 0 0 828058. 2865.25 0.32 0.07 0.14 -1 -1 0.32 0.0152243 0.0130985 163 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 8.35 vpr 64.38 MiB -1 -1 0.20 21412 1 0.03 -1 -1 33848 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65928 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 25.5 MiB 2.92 1249 15366 4699 7930 2737 64.4 MiB 0.13 0.00 4.52977 -146.574 -4.52977 4.52977 0.89 0.00022406 0.000176418 0.0196924 0.0158578 -1 -1 -1 -1 38 3101 27 6.89349e+06 366440 678818. 2348.85 2.03 0.0863312 0.0713635 26626 170182 -1 2575 23 1733 2651 221947 45896 3.99995 3.99995 -142.366 -3.99995 0 0 902133. 3121.57 0.32 0.06 0.15 -1 -1 0.32 0.0150738 0.0129656 164 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 7.75 vpr 63.74 MiB -1 -1 0.19 21624 1 0.03 -1 -1 33628 -1 -1 21 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65268 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 25.2 MiB 2.80 905 12323 3823 7116 1384 63.7 MiB 0.08 0.00 4.24433 -127.173 -4.24433 4.24433 0.88 0.000169995 0.00013441 0.0140633 0.0113106 -1 -1 -1 -1 34 2274 35 6.89349e+06 295971 618332. 2139.56 1.75 0.070587 0.0589281 25762 151098 -1 1900 18 1130 1599 128112 27804 3.10946 3.10946 -111.538 -3.10946 0 0 787024. 2723.27 0.31 0.04 0.13 -1 -1 0.31 0.010385 0.00908104 112 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 9.03 vpr 64.13 MiB -1 -1 0.18 21536 1 0.03 -1 -1 34060 -1 -1 25 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65672 30 32 375 299 1 236 87 17 17 289 -1 unnamed_device 25.4 MiB 3.92 1252 13143 3283 8520 1340 64.1 MiB 0.12 0.00 5.23091 -159.91 -5.23091 5.23091 0.87 0.000226322 0.000180694 0.0180533 0.0146464 -1 -1 -1 -1 34 3195 38 6.89349e+06 352346 618332. 2139.56 1.78 0.0894459 0.0740319 25762 151098 -1 2683 19 1969 2727 216393 49027 4.70289 4.70289 -164.912 -4.70289 0 0 787024. 2723.27 0.32 0.08 0.14 -1 -1 0.32 0.0188618 0.0167659 161 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 6.62 vpr 64.09 MiB -1 -1 0.20 21656 1 0.03 -1 -1 33796 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65628 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 25.4 MiB 1.67 1135 15255 4537 8764 1954 64.1 MiB 0.11 0.00 5.17695 -153.732 -5.17695 5.17695 0.87 0.000206882 0.000163994 0.0186481 0.0150797 -1 -1 -1 -1 34 2919 21 6.89349e+06 324158 618332. 2139.56 1.67 0.0773999 0.0635052 25762 151098 -1 2433 22 1711 2956 258805 55965 4.1143 4.1143 -143.928 -4.1143 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0143529 0.0125091 139 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 8.37 vpr 64.09 MiB -1 -1 0.21 21404 1 0.03 -1 -1 33984 -1 -1 23 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65632 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 25.3 MiB 3.05 1193 13505 4546 7143 1816 64.1 MiB 0.10 0.00 5.02824 -144.831 -5.02824 5.02824 0.89 0.000214071 0.000171813 0.0172817 0.0141109 -1 -1 -1 -1 36 2814 25 6.89349e+06 324158 648988. 2245.63 1.97 0.0785416 0.065389 26050 158493 -1 2418 20 1423 2236 198439 41166 4.31415 4.31415 -140.912 -4.31415 0 0 828058. 2865.25 0.32 0.06 0.17 -1 -1 0.32 0.0140801 0.0123401 142 47 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 8.95 vpr 64.31 MiB -1 -1 0.21 21456 1 0.03 -1 -1 33680 -1 -1 26 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65856 30 32 377 310 1 239 88 17 17 289 -1 unnamed_device 25.4 MiB 3.61 1197 15103 4411 8230 2462 64.3 MiB 0.12 0.00 4.851 -140.164 -4.851 4.851 0.86 0.000218957 0.000171954 0.0190873 0.0152473 -1 -1 -1 -1 36 2863 21 6.89349e+06 366440 648988. 2245.63 2.07 0.080848 0.066584 26050 158493 -1 2495 20 1595 2287 181696 38931 3.88729 3.88729 -134.431 -3.88729 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0146383 0.0126512 162 83 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 8.82 vpr 64.28 MiB -1 -1 0.20 21460 1 0.03 -1 -1 33880 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65820 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 25.4 MiB 3.58 1204 16599 6004 7939 2656 64.3 MiB 0.13 0.00 5.44287 -158.373 -5.44287 5.44287 0.87 0.000210339 0.000165915 0.0200411 0.0160027 -1 -1 -1 -1 34 3283 32 6.89349e+06 324158 618332. 2139.56 2.00 0.0851265 0.0697532 25762 151098 -1 2597 23 1963 2925 216361 49453 4.61969 4.61969 -154.947 -4.61969 0 0 787024. 2723.27 0.31 0.07 0.13 -1 -1 0.31 0.0154019 0.0132937 155 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 8.46 vpr 64.40 MiB -1 -1 0.21 21560 1 0.03 -1 -1 33804 -1 -1 30 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65944 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 25.6 MiB 3.23 1306 12535 3228 8012 1295 64.4 MiB 0.10 0.00 4.60117 -137.507 -4.60117 4.60117 0.87 0.000211365 0.000166754 0.0149306 0.0119897 -1 -1 -1 -1 36 2897 26 6.89349e+06 422815 648988. 2245.63 1.88 0.076822 0.0631717 26050 158493 -1 2382 22 1487 2016 135818 31245 3.54206 3.54206 -127.169 -3.54206 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0160641 0.0139558 166 85 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 6.08 vpr 63.54 MiB -1 -1 0.17 21308 1 0.03 -1 -1 33860 -1 -1 17 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65060 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 24.9 MiB 1.34 733 12331 3194 7563 1574 63.5 MiB 0.08 0.00 4.02268 -117.682 -4.02268 4.02268 0.91 0.000158313 0.000125286 0.0123222 0.00984157 -1 -1 -1 -1 34 1915 37 6.89349e+06 239595 618332. 2139.56 1.54 0.0619203 0.0510451 25762 151098 -1 1583 17 919 1489 101979 24094 2.86616 2.86616 -105.485 -2.86616 0 0 787024. 2723.27 0.30 0.04 0.14 -1 -1 0.30 0.00855326 0.00745792 96 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 8.17 vpr 64.49 MiB -1 -1 0.20 21568 1 0.03 -1 -1 33800 -1 -1 25 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66036 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 25.5 MiB 2.67 1366 14741 4940 7308 2493 64.5 MiB 0.11 0.00 5.7749 -170.888 -5.7749 5.7749 0.90 0.000227611 0.00018247 0.0181751 0.0145469 -1 -1 -1 -1 38 2766 20 6.89349e+06 352346 678818. 2348.85 2.15 0.082013 0.0680406 26626 170182 -1 2489 21 1542 2193 169330 36565 4.41358 4.41358 -149.332 -4.41358 0 0 902133. 3121.57 0.32 0.05 0.15 -1 -1 0.32 0.0139317 0.0120549 156 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 9.47 vpr 64.32 MiB -1 -1 0.19 21576 1 0.03 -1 -1 34008 -1 -1 25 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65860 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 25.6 MiB 4.12 1405 14543 3790 8651 2102 64.3 MiB 0.12 0.00 5.38563 -174.831 -5.38563 5.38563 0.87 0.000263834 0.000214785 0.0186289 0.0148561 -1 -1 -1 -1 36 3143 23 6.89349e+06 352346 648988. 2245.63 2.07 0.0850953 0.069996 26050 158493 -1 2788 23 2224 3211 255670 54788 4.79045 4.79045 -171.521 -4.79045 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0160556 0.0137533 171 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 7.58 vpr 63.61 MiB -1 -1 0.17 21680 1 0.03 -1 -1 33756 -1 -1 18 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65136 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 25.1 MiB 2.93 852 8626 2126 6029 471 63.6 MiB 0.06 0.00 4.14342 -115.954 -4.14342 4.14342 0.91 0.000171689 0.000135885 0.0102649 0.00829265 -1 -1 -1 -1 34 2167 20 6.89349e+06 253689 618332. 2139.56 1.45 0.0591447 0.0488901 25762 151098 -1 1869 21 1272 1680 114108 27008 3.08576 3.08576 -107.616 -3.08576 0 0 787024. 2723.27 0.30 0.04 0.14 -1 -1 0.30 0.0106081 0.0091389 108 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 5.23 vpr 63.57 MiB -1 -1 0.17 21220 1 0.03 -1 -1 33704 -1 -1 20 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65092 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 24.9 MiB 1.25 843 11783 3233 6725 1825 63.6 MiB 0.07 0.00 3.90644 -115.807 -3.90644 3.90644 0.86 0.000164022 0.000129286 0.0121108 0.00974695 -1 -1 -1 -1 26 2165 23 6.89349e+06 281877 503264. 1741.40 0.95 0.0407021 0.0336825 24322 120374 -1 1999 20 1253 2044 176217 38787 2.84601 2.84601 -111.426 -2.84601 0 0 618332. 2139.56 0.26 0.05 0.11 -1 -1 0.26 0.0105247 0.00912968 99 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 7.69 vpr 64.36 MiB -1 -1 0.19 21616 1 0.04 -1 -1 34212 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65908 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 25.5 MiB 2.66 1150 8727 2018 5615 1094 64.4 MiB 0.07 0.00 4.64652 -149.201 -4.64652 4.64652 0.89 0.000217597 0.0001732 0.0115041 0.0092988 -1 -1 -1 -1 36 2852 22 6.89349e+06 324158 648988. 2245.63 1.76 0.0699619 0.0577096 26050 158493 -1 2401 21 1728 2486 197683 41996 3.7788 3.7788 -141.038 -3.7788 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.013637 0.011716 145 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 7.97 vpr 64.30 MiB -1 -1 0.19 21572 1 0.04 -1 -1 33764 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65840 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 25.4 MiB 2.66 1167 15639 4762 8859 2018 64.3 MiB 0.12 0.00 4.99039 -145.722 -4.99039 4.99039 0.91 0.000214623 0.000169191 0.0205804 0.016466 -1 -1 -1 -1 36 2585 21 6.89349e+06 324158 648988. 2245.63 1.91 0.0841832 0.0686341 26050 158493 -1 2196 19 1312 1916 134550 31443 4.22525 4.22525 -139.154 -4.22525 0 0 828058. 2865.25 0.31 0.04 0.14 -1 -1 0.31 0.0116432 0.0101237 149 56 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 5.19 vpr 64.25 MiB -1 -1 0.19 21400 1 0.03 -1 -1 33644 -1 -1 36 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65796 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 25.4 MiB 0.89 1179 13092 3559 8453 1080 64.3 MiB 0.12 0.00 5.17121 -146.734 -5.17121 5.17121 0.85 0.000214311 0.000170543 0.0147671 0.0118306 -1 -1 -1 -1 30 2906 22 6.89349e+06 507378 556674. 1926.21 1.16 0.0514778 0.0426877 25186 138497 -1 2340 25 1609 3088 192920 45460 4.11249 4.11249 -141.088 -4.11249 0 0 706193. 2443.58 0.27 0.06 0.12 -1 -1 0.27 0.0150705 0.0128983 157 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 7.06 vpr 64.16 MiB -1 -1 0.21 21396 1 0.03 -1 -1 33972 -1 -1 25 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65696 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 25.2 MiB 2.15 1065 7191 1699 5079 413 64.2 MiB 0.06 0.00 3.88834 -114.437 -3.88834 3.88834 0.92 0.000189467 0.000149954 0.00899693 0.00733651 -1 -1 -1 -1 34 2645 26 6.89349e+06 352346 618332. 2139.56 1.65 0.0612938 0.0503579 25762 151098 -1 2237 20 1738 2562 187968 42121 2.95776 2.95776 -105.775 -2.95776 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0124444 0.010763 136 52 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 7.25 vpr 63.51 MiB -1 -1 0.19 21316 1 0.03 -1 -1 34448 -1 -1 20 27 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65036 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 25.1 MiB 2.09 671 12416 5195 5941 1280 63.5 MiB 0.06 0.00 4.39223 -112.843 -4.39223 4.39223 0.86 0.000156566 0.000123332 0.0126608 0.010104 -1 -1 -1 -1 38 1671 32 6.89349e+06 281877 678818. 2348.85 1.92 0.0614399 0.0505605 26626 170182 -1 1407 17 1024 1491 107563 26317 3.6986 3.6986 -109.598 -3.6986 0 0 902133. 3121.57 0.34 0.04 0.16 -1 -1 0.34 0.00868357 0.00757209 106 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 11.25 vpr 64.55 MiB -1 -1 0.22 21728 1 0.03 -1 -1 33992 -1 -1 27 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66100 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 25.7 MiB 4.71 1558 16615 4500 10327 1788 64.6 MiB 0.15 0.00 4.61521 -148.623 -4.61521 4.61521 0.89 0.000283426 0.000228106 0.024252 0.0193967 -1 -1 -1 -1 36 3673 23 6.89349e+06 380534 648988. 2245.63 3.12 0.0984116 0.0811268 26050 158493 -1 3191 24 2272 3571 278292 59853 4.16294 4.16294 -150.154 -4.16294 0 0 828058. 2865.25 0.31 0.08 0.14 -1 -1 0.31 0.017699 0.0152311 185 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 8.58 vpr 64.42 MiB -1 -1 0.22 21612 1 0.03 -1 -1 33708 -1 -1 24 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65964 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 25.5 MiB 2.87 1047 15639 5809 6811 3019 64.4 MiB 0.11 0.00 5.48492 -159.854 -5.48492 5.48492 0.86 0.000208444 0.000164229 0.0189925 0.0152245 -1 -1 -1 -1 36 3015 30 6.89349e+06 338252 648988. 2245.63 2.44 0.0837545 0.0687581 26050 158493 -1 2282 21 1981 2827 183364 45738 4.50245 4.50245 -153.354 -4.50245 0 0 828058. 2865.25 0.32 0.06 0.14 -1 -1 0.32 0.0137182 0.0118565 155 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 8.90 vpr 64.02 MiB -1 -1 0.18 21564 1 0.04 -1 -1 34144 -1 -1 20 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65560 32 32 331 280 1 221 84 17 17 289 -1 unnamed_device 25.3 MiB 3.19 998 16737 6124 7825 2788 64.0 MiB 0.11 0.00 4.30139 -136.522 -4.30139 4.30139 0.90 0.000191264 0.000150451 0.0197056 0.0157354 -1 -1 -1 -1 36 2611 25 6.89349e+06 281877 648988. 2245.63 2.34 0.0852404 0.0703005 26050 158493 -1 2181 19 1550 2018 174734 37539 3.6675 3.6675 -136.623 -3.6675 0 0 828058. 2865.25 0.33 0.05 0.15 -1 -1 0.33 0.0129648 0.0113589 136 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 7.14 vpr 64.04 MiB -1 -1 0.19 21404 1 0.03 -1 -1 33660 -1 -1 21 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65576 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 25.3 MiB 2.91 1090 9571 2534 6373 664 64.0 MiB 0.08 0.00 5.23032 -144.251 -5.23032 5.23032 0.87 0.000204682 0.000164049 0.0118923 0.00961145 -1 -1 -1 -1 30 2676 38 6.89349e+06 295971 556674. 1926.21 1.06 0.0527201 0.0437493 25186 138497 -1 2130 21 1071 1615 102090 23111 3.50786 3.50786 -126.051 -3.50786 0 0 706193. 2443.58 0.29 0.04 0.13 -1 -1 0.29 0.0133202 0.0116229 134 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 7.63 vpr 64.29 MiB -1 -1 0.21 21540 1 0.03 -1 -1 33748 -1 -1 26 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65836 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 25.4 MiB 2.72 1202 13751 3835 8049 1867 64.3 MiB 0.11 0.00 4.46995 -129.311 -4.46995 4.46995 0.89 0.000216914 0.000171493 0.0169632 0.0135533 -1 -1 -1 -1 34 3036 19 6.89349e+06 366440 618332. 2139.56 1.53 0.0806781 0.0666505 25762 151098 -1 2515 20 1830 2785 182795 43219 3.97726 3.97726 -130.915 -3.97726 0 0 787024. 2723.27 0.29 0.06 0.13 -1 -1 0.29 0.0150029 0.0129856 163 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 8.41 vpr 64.07 MiB -1 -1 0.19 21384 1 0.03 -1 -1 33908 -1 -1 24 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65608 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 25.4 MiB 3.10 1079 13505 3291 8862 1352 64.1 MiB 0.09 0.00 4.22645 -118.107 -4.22645 4.22645 0.89 0.000192335 0.000151895 0.015583 0.012555 -1 -1 -1 -1 36 2650 30 6.89349e+06 338252 648988. 2245.63 1.98 0.0759697 0.0625964 26050 158493 -1 2237 22 1376 2100 160748 37276 3.5733 3.5733 -114.748 -3.5733 0 0 828058. 2865.25 0.32 0.05 0.15 -1 -1 0.32 0.0127622 0.0109791 140 51 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 9.56 vpr 64.11 MiB -1 -1 0.18 21580 1 0.04 -1 -1 33708 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65652 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 25.3 MiB 3.50 1201 14828 4491 8253 2084 64.1 MiB 0.11 0.00 4.92758 -154.781 -4.92758 4.92758 0.86 0.000222992 0.000179642 0.0184761 0.0148277 -1 -1 -1 -1 36 2974 20 6.89349e+06 310065 648988. 2245.63 2.76 0.0794158 0.0655552 26050 158493 -1 2570 23 1760 2903 286164 58396 3.9208 3.9208 -138.75 -3.9208 0 0 828058. 2865.25 0.31 0.07 0.15 -1 -1 0.31 0.0144479 0.0124762 148 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 8.67 vpr 64.34 MiB -1 -1 0.19 21572 1 0.03 -1 -1 33848 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65888 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 25.3 MiB 3.36 1278 15969 5302 7451 3216 64.3 MiB 0.12 0.00 4.11194 -136.871 -4.11194 4.11194 0.89 0.000239403 0.000186798 0.0212166 0.0167338 -1 -1 -1 -1 34 3529 33 6.89349e+06 366440 618332. 2139.56 1.98 0.0984623 0.0810942 25762 151098 -1 2607 21 1935 2630 187376 44216 3.44175 3.44175 -130.508 -3.44175 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0152788 0.0133049 167 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 6.48 vpr 63.77 MiB -1 -1 0.18 21612 1 0.03 -1 -1 34072 -1 -1 20 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65296 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 25.3 MiB 1.85 628 7956 1799 5721 436 63.8 MiB 0.06 0.00 4.24503 -122.739 -4.24503 4.24503 0.89 0.000169929 0.000134059 0.00918924 0.007411 -1 -1 -1 -1 34 1772 23 6.89349e+06 281877 618332. 2139.56 1.43 0.0537282 0.0441484 25762 151098 -1 1416 20 1270 1714 104194 26944 3.11671 3.11671 -110.381 -3.11671 0 0 787024. 2723.27 0.30 0.04 0.14 -1 -1 0.30 0.0104692 0.00901836 110 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 7.53 vpr 63.97 MiB -1 -1 0.19 21620 1 0.03 -1 -1 34088 -1 -1 19 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65508 32 32 310 266 1 198 83 17 17 289 -1 unnamed_device 25.1 MiB 2.39 1048 12863 3756 7750 1357 64.0 MiB 0.09 0.00 4.21989 -132.438 -4.21989 4.21989 0.88 0.000189161 0.000148673 0.015273 0.01226 -1 -1 -1 -1 34 2769 27 6.89349e+06 267783 618332. 2139.56 1.88 0.0686427 0.0561911 25762 151098 -1 2297 22 1779 2470 220677 46955 3.55295 3.55295 -130.18 -3.55295 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0114665 0.00987813 124 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 7.22 vpr 63.96 MiB -1 -1 0.20 21716 1 0.03 -1 -1 33944 -1 -1 22 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65500 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 25.0 MiB 2.08 1137 13477 4102 7180 2195 64.0 MiB 0.10 0.00 4.87863 -139.519 -4.87863 4.87863 0.89 0.000193611 0.000153172 0.0158798 0.0127456 -1 -1 -1 -1 34 2786 29 6.89349e+06 310065 618332. 2139.56 1.87 0.0777381 0.0642205 25762 151098 -1 2336 20 1569 2472 202216 45007 3.8758 3.8758 -132.732 -3.8758 0 0 787024. 2723.27 0.31 0.06 0.13 -1 -1 0.31 0.012456 0.0107901 137 33 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 7.96 vpr 63.64 MiB -1 -1 0.18 21444 1 0.03 -1 -1 33988 -1 -1 19 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65168 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 24.9 MiB 3.09 741 7132 1582 5226 324 63.6 MiB 0.05 0.00 4.21347 -110.205 -4.21347 4.21347 0.87 0.000161269 0.000127886 0.00803115 0.00647959 -1 -1 -1 -1 36 1970 26 6.89349e+06 267783 648988. 2245.63 1.75 0.0531073 0.0435763 26050 158493 -1 1708 21 1033 1418 102366 24026 2.9515 2.9515 -101.659 -2.9515 0 0 828058. 2865.25 0.31 0.04 0.14 -1 -1 0.31 0.0108974 0.00941213 108 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 7.56 vpr 63.73 MiB -1 -1 0.16 21088 1 0.03 -1 -1 33848 -1 -1 18 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 25.2 MiB 2.62 990 11652 3107 7306 1239 63.7 MiB 0.08 0.00 4.18333 -131.846 -4.18333 4.18333 0.86 0.000178889 0.000140051 0.0131177 0.0105063 -1 -1 -1 -1 34 2497 36 6.89349e+06 253689 618332. 2139.56 1.81 0.0632953 0.0518626 25762 151098 -1 2108 20 1418 1990 164645 35637 3.33911 3.33911 -125.551 -3.33911 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0103527 0.00895079 114 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 8.21 vpr 64.36 MiB -1 -1 0.35 21376 1 0.03 -1 -1 33964 -1 -1 27 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65908 31 32 373 300 1 237 90 17 17 289 -1 unnamed_device 25.4 MiB 2.83 1223 15366 4453 8707 2206 64.4 MiB 0.11 0.00 4.62897 -148.141 -4.62897 4.62897 0.86 0.000214825 0.000170185 0.0185092 0.0149201 -1 -1 -1 -1 34 3088 26 6.89349e+06 380534 618332. 2139.56 1.90 0.0837912 0.0694053 25762 151098 -1 2624 21 2025 2784 225288 48923 3.81065 3.81065 -141.55 -3.81065 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0139731 0.0120642 161 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 7.36 vpr 62.84 MiB -1 -1 0.30 21404 1 0.03 -1 -1 33724 -1 -1 17 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64348 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 24.4 MiB 2.49 784 6616 1386 4941 289 62.8 MiB 0.05 0.00 3.61555 -111.527 -3.61555 3.61555 0.89 0.00017499 0.000138484 0.00808786 0.00658843 -1 -1 -1 -1 34 2257 32 6.89349e+06 239595 618332. 2139.56 1.49 0.0552635 0.0454869 25762 151098 -1 1840 21 1118 1559 126902 29314 2.80111 2.80111 -102.063 -2.80111 0 0 787024. 2723.27 0.32 0.04 0.14 -1 -1 0.32 0.0104484 0.00903092 108 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 8.10 vpr 64.10 MiB -1 -1 0.21 21464 1 0.03 -1 -1 34080 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65640 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 25.3 MiB 3.01 1232 13883 4397 7250 2236 64.1 MiB 0.10 0.00 4.30445 -129.833 -4.30445 4.30445 0.87 0.000223711 0.000177809 0.0173171 0.0139408 -1 -1 -1 -1 34 3088 24 6.89349e+06 310065 618332. 2139.56 1.76 0.0822191 0.0681636 25762 151098 -1 2505 20 1424 2090 159741 35454 3.49095 3.49095 -126.618 -3.49095 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0128673 0.0111364 146 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 9.79 vpr 64.34 MiB -1 -1 0.32 21692 1 0.03 -1 -1 33896 -1 -1 26 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65888 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 25.7 MiB 3.96 1374 16127 5335 8292 2500 64.3 MiB 0.14 0.00 4.99104 -161.962 -4.99104 4.99104 0.87 0.000226088 0.000178838 0.0200231 0.0160135 -1 -1 -1 -1 38 3351 24 6.89349e+06 366440 678818. 2348.85 2.29 0.0908218 0.0749714 26626 170182 -1 2835 21 2331 3297 257631 54905 4.08179 4.08179 -152.863 -4.08179 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0145635 0.0126187 167 91 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 8.14 vpr 63.14 MiB -1 -1 0.28 21436 1 0.04 -1 -1 33568 -1 -1 18 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 24.5 MiB 3.03 1102 7736 1887 5035 814 63.1 MiB 0.06 0.00 3.7859 -118.769 -3.7859 3.7859 0.88 0.000177665 0.000139841 0.00987401 0.00802278 -1 -1 -1 -1 34 2661 27 6.89349e+06 253689 618332. 2139.56 1.74 0.0641052 0.0527475 25762 151098 -1 2286 22 1581 2190 195646 40939 2.91016 2.91016 -116.403 -2.91016 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0118209 0.0101773 124 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 7.33 vpr 63.57 MiB -1 -1 0.28 21484 1 0.03 -1 -1 33896 -1 -1 18 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65092 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 25.0 MiB 1.89 923 8804 2372 6054 378 63.6 MiB 0.07 0.00 4.24743 -129.394 -4.24743 4.24743 0.88 0.000177277 0.000140269 0.0100712 0.00811543 -1 -1 -1 -1 36 2225 43 6.89349e+06 253689 648988. 2245.63 1.96 0.0672133 0.0552882 26050 158493 -1 2047 20 1283 1926 179909 39070 3.36506 3.36506 -124.98 -3.36506 0 0 828058. 2865.25 0.31 0.05 0.15 -1 -1 0.31 0.0107525 0.0093051 115 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 7.70 vpr 63.12 MiB -1 -1 0.26 21120 1 0.04 -1 -1 33972 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 24.7 MiB 2.84 1050 14828 5325 7370 2133 63.1 MiB 0.10 0.00 4.90028 -137.564 -4.90028 4.90028 0.87 0.00019059 0.000150666 0.0171228 0.0137812 -1 -1 -1 -1 34 2608 24 6.89349e+06 310065 618332. 2139.56 1.52 0.070452 0.0578302 25762 151098 -1 2257 21 1429 2017 147852 33854 3.75346 3.75346 -131.737 -3.75346 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0133191 0.0114665 133 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 7.42 vpr 64.40 MiB -1 -1 0.26 21000 1 0.03 -1 -1 33760 -1 -1 25 29 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65948 29 32 324 268 1 208 86 17 17 289 -1 unnamed_device 25.6 MiB 2.50 1098 14450 3824 8602 2024 64.4 MiB 0.10 0.00 4.06068 -112.703 -4.06068 4.06068 0.85 0.000199919 0.000159421 0.0168726 0.0136145 -1 -1 -1 -1 34 2543 49 6.89349e+06 352346 618332. 2139.56 1.56 0.0768483 0.0628762 25762 151098 -1 2152 21 1448 2024 148243 34376 3.09046 3.09046 -106.337 -3.09046 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0131766 0.0114919 138 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 9.62 vpr 64.74 MiB -1 -1 0.28 21812 1 0.03 -1 -1 34176 -1 -1 24 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66292 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 25.8 MiB 3.27 1257 16078 5484 8239 2355 64.7 MiB 0.13 0.00 5.66698 -180.512 -5.66698 5.66698 0.87 0.000222315 0.000175159 0.0206194 0.0165424 -1 -1 -1 -1 36 3202 36 6.89349e+06 338252 648988. 2245.63 2.82 0.0953754 0.0787125 26050 158493 -1 2847 20 1924 2947 238685 50612 4.68858 4.68858 -165.045 -4.68858 0 0 828058. 2865.25 0.33 0.06 0.19 -1 -1 0.33 0.0139926 0.0121058 166 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 6.12 vpr 63.52 MiB -1 -1 0.27 21004 1 0.03 -1 -1 33860 -1 -1 17 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65044 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 25.0 MiB 1.37 761 9024 2389 5969 666 63.5 MiB 0.06 0.00 3.2803 -102.743 -3.2803 3.2803 0.89 0.000172361 0.000139514 0.00986147 0.00798018 -1 -1 -1 -1 34 1907 21 6.89349e+06 239595 618332. 2139.56 1.40 0.0514252 0.0425589 25762 151098 -1 1608 21 825 1331 100637 22807 2.57631 2.57631 -99.2132 -2.57631 0 0 787024. 2723.27 0.30 0.04 0.14 -1 -1 0.30 0.0102324 0.00887831 92 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 9.56 vpr 64.52 MiB -1 -1 0.34 21756 1 0.04 -1 -1 33860 -1 -1 27 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66068 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 25.7 MiB 3.06 1326 14167 4936 7169 2062 64.5 MiB 0.12 0.00 5.79178 -174.585 -5.79178 5.79178 0.87 0.000227504 0.000179447 0.0176675 0.0141324 -1 -1 -1 -1 36 3412 40 6.89349e+06 380534 648988. 2245.63 2.98 0.0957321 0.0785271 26050 158493 -1 2668 21 1984 2651 224780 54704 5.17574 5.17574 -170.058 -5.17574 0 0 828058. 2865.25 0.33 0.07 0.14 -1 -1 0.33 0.014798 0.01279 175 90 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 8.77 vpr 64.30 MiB -1 -1 0.27 21524 1 0.03 -1 -1 33852 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65844 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 25.6 MiB 3.15 1345 11415 2751 7803 861 64.3 MiB 0.10 0.00 4.85389 -165.92 -4.85389 4.85389 0.90 0.000208365 0.000164112 0.0143276 0.0115196 -1 -1 -1 -1 34 3780 38 6.89349e+06 324158 618332. 2139.56 2.21 0.0862424 0.0713597 25762 151098 -1 2839 26 2609 3334 278222 60452 4.42139 4.42139 -167.968 -4.42139 0 0 787024. 2723.27 0.32 0.08 0.13 -1 -1 0.32 0.0159606 0.0136721 160 96 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 8.40 vpr 64.47 MiB -1 -1 0.19 21408 1 0.03 -1 -1 33916 -1 -1 22 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66016 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 25.5 MiB 2.84 1062 14450 5050 7036 2364 64.5 MiB 0.11 0.00 4.10168 -125.093 -4.10168 4.10168 0.87 0.000216066 0.00017107 0.017831 0.0142849 -1 -1 -1 -1 34 3126 46 6.89349e+06 310065 618332. 2139.56 2.27 0.090039 0.0740892 25762 151098 -1 2289 17 1616 2256 167937 39501 3.36511 3.36511 -119.664 -3.36511 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0118268 0.0103592 153 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 9.17 vpr 64.43 MiB -1 -1 0.21 21660 1 0.04 -1 -1 34024 -1 -1 26 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65980 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 25.5 MiB 3.46 1315 16170 4894 8590 2686 64.4 MiB 0.14 0.00 5.8116 -176.256 -5.8116 5.8116 0.88 0.000245471 0.000197596 0.0216113 0.0174804 -1 -1 -1 -1 36 3148 23 6.89349e+06 366440 648988. 2245.63 2.27 0.0879041 0.0725497 26050 158493 -1 2680 22 1899 3048 266739 54735 4.49735 4.49735 -158.676 -4.49735 0 0 828058. 2865.25 0.31 0.07 0.15 -1 -1 0.31 0.0152605 0.0132117 172 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 5.81 vpr 63.55 MiB -1 -1 0.22 21024 1 0.03 -1 -1 33664 -1 -1 15 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65076 30 32 224 207 1 138 77 17 17 289 -1 unnamed_device 25.0 MiB 1.42 714 5293 1259 3713 321 63.6 MiB 0.04 0.00 3.04786 -95.0532 -3.04786 3.04786 0.86 0.000144759 0.000114063 0.00566903 0.00457922 -1 -1 -1 -1 34 1618 20 6.89349e+06 211408 618332. 2139.56 1.30 0.0418559 0.0344161 25762 151098 -1 1440 18 680 907 66003 15107 2.32142 2.32142 -94.0544 -2.32142 0 0 787024. 2723.27 0.29 0.03 0.13 -1 -1 0.29 0.00789936 0.00685774 82 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 6.78 vpr 63.84 MiB -1 -1 0.24 21340 1 0.03 -1 -1 33868 -1 -1 20 30 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65368 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 25.3 MiB 2.07 918 13610 4688 7323 1599 63.8 MiB 0.09 0.00 4.49503 -139.908 -4.49503 4.49503 0.86 0.000171746 0.000135181 0.0147959 0.0117114 -1 -1 -1 -1 34 2210 22 6.89349e+06 281877 618332. 2139.56 1.42 0.0612134 0.0499293 25762 151098 -1 1798 23 1240 1867 138538 31230 3.6393 3.6393 -124.669 -3.6393 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0124747 0.0107689 119 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 8.14 vpr 63.53 MiB -1 -1 0.20 21348 1 0.04 -1 -1 33616 -1 -1 18 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65056 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 25.0 MiB 3.18 1110 8804 2328 5458 1018 63.5 MiB 0.07 0.00 4.17499 -140.03 -4.17499 4.17499 0.87 0.000188164 0.000149049 0.0111407 0.00907564 -1 -1 -1 -1 38 2415 31 6.89349e+06 253689 678818. 2348.85 1.67 0.0637072 0.0522717 26626 170182 -1 2258 20 1273 2270 159500 34665 3.3385 3.3385 -133.564 -3.3385 0 0 902133. 3121.57 0.34 0.05 0.16 -1 -1 0.34 0.0117575 0.0101997 120 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 6.74 vpr 63.48 MiB -1 -1 0.17 20956 1 0.03 -1 -1 33984 -1 -1 21 25 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65008 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 24.8 MiB 1.89 575 11200 4680 5492 1028 63.5 MiB 0.05 0.00 3.6605 -87.6445 -3.6605 3.6605 0.86 0.000134731 0.000105236 0.0105888 0.00847447 -1 -1 -1 -1 36 1473 28 6.89349e+06 295971 648988. 2245.63 1.74 0.0559745 0.046382 26050 158493 -1 1215 19 713 1069 96004 27609 2.77716 2.77716 -80.0425 -2.77716 0 0 828058. 2865.25 0.31 0.04 0.14 -1 -1 0.31 0.00831187 0.00718729 92 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 10.40 vpr 64.30 MiB -1 -1 0.27 21316 1 0.04 -1 -1 33764 -1 -1 23 32 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65844 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 25.3 MiB 4.40 1353 10455 2851 6962 642 64.3 MiB 0.10 0.00 4.36555 -133.994 -4.36555 4.36555 0.88 0.000212198 0.000167881 0.014099 0.0113254 -1 -1 -1 -1 36 3449 28 6.89349e+06 324158 648988. 2245.63 2.56 0.0841818 0.0694423 26050 158493 -1 2903 21 1960 2918 219685 47503 3.70946 3.70946 -133.463 -3.70946 0 0 828058. 2865.25 0.32 0.06 0.14 -1 -1 0.32 0.0140724 0.0121656 160 72 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 9.64 vpr 63.66 MiB -1 -1 0.27 21412 1 0.04 -1 -1 33896 -1 -1 29 31 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65192 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 24.8 MiB 3.80 1246 10442 2641 6824 977 63.7 MiB 0.10 0.00 4.77028 -152.681 -4.77028 4.77028 0.88 0.000265743 0.000217859 0.0138873 0.0111742 -1 -1 -1 -1 34 3563 24 6.89349e+06 408721 618332. 2139.56 2.43 0.0877076 0.0728632 25762 151098 -1 2750 22 2202 3046 245515 54377 4.20389 4.20389 -150.8 -4.20389 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0155906 0.0134583 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 bfc1398e91c..67a64b1a2fa 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_arch_list/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_arch_list/config/golden_results.txt @@ -1,31 +1,31 @@ -arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time total_power routing_power_perc clock_power_perc tile_power_perc -k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.91 vpr 64.43 MiB -1 -1 0.46 18512 3 0.09 -1 -1 33276 -1 -1 68 99 1 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65972 99 130 344 474 1 226 298 12 12 144 clb auto 25.1 MiB 0.08 538 74923 23743 38186 12994 64.4 MiB 0.24 0.00 1.85836 -118.859 -1.85836 1.85836 0.28 0.00128352 0.00121612 0.10013 0.0947911 48 1116 12 5.66058e+06 4.21279e+06 394078. 2736.65 0.87 0.350927 0.322955 13382 75762 -1 1110 10 412 647 31369 9620 1.90517 1.90517 -133.113 -1.90517 -1.14837 -0.298787 503207. 3494.49 0.11 0.05 0.10 -1 -1 0.11 0.0313737 0.0289644 0.01055 0.2565 0.08184 0.6617 -k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 18.17 vpr 67.46 MiB -1 -1 0.59 23408 15 0.35 -1 -1 34260 -1 -1 39 162 0 5 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69076 162 96 1009 950 1 711 302 16 16 256 mult_36 auto 28.2 MiB 0.26 5244 100490 36162 56323 8005 67.5 MiB 0.70 0.01 21.0218 -1540.44 -21.0218 21.0218 0.53 0.0033491 0.00314041 0.34846 0.326853 58 12364 47 1.21132e+07 4.08187e+06 904549. 3533.39 11.65 1.64591 1.51072 27012 180273 -1 9111 18 3141 6470 890891 255235 22.5995 22.5995 -1612.44 -22.5995 0 0 1.15318e+06 4504.63 0.28 0.33 0.17 -1 -1 0.28 0.139919 0.12955 0.007774 0.375 0.01842 0.6066 -k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 535.90 vpr 485.63 MiB -1 -1 85.40 340324 123 54.56 -1 -1 78760 -1 -1 1366 114 45 8 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 497288 114 102 21994 21904 1 11836 1635 50 50 2500 memory auto 154.1 MiB 19.75 163873 1060715 378314 659503 22898 458.7 MiB 22.07 0.18 80.0631 -51811.9 -80.0631 80.0631 19.21 0.0599989 0.0487904 7.11734 5.88716 98 248827 34 1.47946e+08 1.0145e+08 1.60641e+07 6425.63 253.24 36.5363 30.0424 348768 3430976 -1 220630 22 44335 165955 10546515 1857252 82.0537 82.0537 -63570.6 -82.0537 -54.234 -0.341744 2.03677e+07 8147.07 6.68 6.56 3.35 -1 -1 6.68 3.52019 3.02919 0.08245 0.4398 0.01125 0.549 -k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.87 vpr 64.37 MiB -1 -1 0.45 18528 3 0.09 -1 -1 33256 -1 -1 68 99 1 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65912 99 130 344 474 1 226 298 12 12 144 clb auto 25.4 MiB 0.11 629 72933 24501 35348 13084 64.4 MiB 0.24 0.00 1.87772 -119.549 -1.87772 1.87772 0.28 0.00128307 0.00121499 0.0978232 0.0925505 44 1503 13 5.66058e+06 4.21279e+06 360780. 2505.42 0.85 0.35273 0.324428 13094 71552 -1 1291 9 444 678 32652 9532 1.88524 1.88524 -138.119 -1.88524 -0.676272 -0.265573 470765. 3269.20 0.10 0.05 0.08 -1 -1 0.10 0.0306968 0.0283888 0.01201 0.2318 0.06967 0.6986 -k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml diffeq1.v common 14.92 vpr 67.70 MiB -1 -1 0.71 23388 15 0.35 -1 -1 34324 -1 -1 39 162 0 5 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69328 162 96 1009 950 1 711 302 16 16 256 mult_36 auto 28.4 MiB 0.32 5244 100490 36162 56322 8006 67.7 MiB 0.71 0.01 21.0218 -1540.44 -21.0218 21.0218 0.53 0.00340038 0.00318638 0.348566 0.326919 60 12120 38 1.21132e+07 4.08187e+06 934704. 3651.19 8.14 1.57028 1.4405 27268 184674 -1 9238 21 3171 6591 898709 258665 22.6022 22.6022 -1615.35 -22.6022 0 0 1.17756e+06 4599.85 0.26 0.36 0.18 -1 -1 0.26 0.155979 0.144282 0.008138 0.3663 0.01781 0.6159 -k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml LU8PEEng.v common 475.74 vpr 499.27 MiB -1 -1 83.58 337888 123 60.89 -1 -1 78688 -1 -1 1283 114 45 8 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 511252 114 102 21994 21904 1 11396 1552 50 50 2500 memory auto 158.5 MiB 46.90 151468 962626 335251 605750 21625 460.8 MiB 20.87 0.19 79.7185 -50660.6 -79.7185 79.7185 19.44 0.0604921 0.0490193 6.78438 5.62494 98 230987 26 1.47946e+08 9.69764e+07 1.60641e+07 6425.63 161.10 31.6162 25.9076 348768 3430976 -1 206741 19 42740 163747 9849262 1764940 80.7634 80.7634 -62863.6 -80.7634 -25.1857 -0.295467 2.03677e+07 8147.07 7.05 6.13 4.01 -1 -1 7.05 3.4387 2.96316 0.08362 0.427 0.01129 0.5617 -k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 4.01 vpr 64.57 MiB -1 -1 0.45 18448 3 0.09 -1 -1 33184 -1 -1 68 99 1 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66124 99 130 344 474 1 226 298 12 12 144 clb auto 25.6 MiB 0.15 538 74923 23743 38186 12994 64.6 MiB 0.25 0.00 1.85836 -118.859 -1.85836 1.85836 0.29 0.00128172 0.00121457 0.100729 0.0953529 44 1215 9 5.66058e+06 4.21279e+06 377431. 2621.05 0.88 0.348347 0.320564 13584 76382 -1 1056 7 380 593 23836 7184 1.9572 1.9572 -130.301 -1.9572 -1.36959 -0.320482 492119. 3417.49 0.11 0.04 0.08 -1 -1 0.11 0.0247689 0.0229422 0.01011 0.2345 0.08042 0.6851 -k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 13.95 vpr 67.65 MiB -1 -1 0.72 23436 15 0.37 -1 -1 34348 -1 -1 39 162 0 5 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69276 162 96 1009 950 1 705 302 16 16 256 mult_36 auto 28.5 MiB 0.70 5683 93406 31754 54877 6775 67.7 MiB 0.65 0.01 21.4085 -1556.87 -21.4085 21.4085 0.52 0.00331055 0.00310848 0.32205 0.302363 46 12863 27 1.21132e+07 4.08187e+06 761464. 2974.47 7.11 1.36384 1.25332 25952 154797 -1 10322 14 3161 6815 963941 249742 22.9754 22.9754 -1703.75 -22.9754 0 0 979054. 3824.43 0.22 0.32 0.14 -1 -1 0.22 0.117659 0.109376 0.007836 0.3552 0.01616 0.6286 -k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 670.25 vpr 488.51 MiB -1 -1 81.35 336596 123 57.87 -1 -1 78688 -1 -1 1288 114 45 8 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 500236 114 102 21994 21904 1 12045 1557 50 50 2500 memory auto 156.2 MiB 216.80 160864 1011797 360603 629329 21865 488.5 MiB 27.81 0.30 79.4147 -50808.8 -79.4147 79.4147 27.25 0.0884053 0.0701446 8.58688 7.12621 98 239202 28 1.47946e+08 9.72458e+07 1.67994e+07 6719.74 175.24 26.9279 22.3385 360864 3674624 -1 213681 19 41673 157305 9667631 1741562 81.24 81.24 -63245.1 -81.24 -19.5295 -0.295467 2.12220e+07 8488.81 6.58 5.78 3.41 -1 -1 6.58 3.13435 2.70985 0.08697 0.4234 0.01132 0.5653 -k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.73 vpr 64.68 MiB -1 -1 0.47 18492 3 0.09 -1 -1 33344 -1 -1 68 99 1 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66236 99 130 344 474 1 226 298 12 12 144 clb auto 25.7 MiB 0.13 629 72933 24501 35348 13084 64.7 MiB 0.24 0.00 1.87772 -119.549 -1.87772 1.87772 0.29 0.00131085 0.00124249 0.0999233 0.0946532 32 1624 14 5.66058e+06 4.21279e+06 295695. 2053.44 0.71 0.278221 0.257113 12440 56522 -1 1512 9 414 636 41683 12549 2.10604 2.10604 -144.439 -2.10604 -0.325931 -0.145548 361905. 2513.23 0.09 0.05 0.06 -1 -1 0.09 0.0289574 0.0267512 0.011 0.2405 0.05957 0.6999 -k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 14.24 vpr 67.78 MiB -1 -1 0.70 23448 15 0.36 -1 -1 34348 -1 -1 38 162 0 5 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69408 162 96 1009 950 1 706 301 16 16 256 mult_36 auto 28.5 MiB 0.93 5656 94045 31737 56059 6249 67.8 MiB 0.66 0.01 21.2066 -1479.61 -21.2066 21.2066 0.56 0.00332364 0.00312131 0.32433 0.304405 46 14213 39 1.21132e+07 4.02797e+06 761464. 2974.47 6.92 1.22532 1.12693 25952 154797 -1 10825 19 3638 7502 1282322 323679 22.7871 22.7871 -1801.31 -22.7871 0 0 979054. 3824.43 0.22 0.42 0.15 -1 -1 0.22 0.1521 0.141059 0.008222 0.3465 0.01552 0.638 -k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 629.56 vpr 508.39 MiB -1 -1 82.43 338700 123 64.30 -1 -1 78620 -1 -1 1193 114 45 8 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 520592 114 102 21994 21904 1 11319 1462 50 50 2500 memory auto 156.7 MiB 187.72 151481 880626 307715 554429 18482 491.8 MiB 22.41 0.20 78.7665 -49507.4 -78.7665 78.7665 24.16 0.0619866 0.0541973 7.3126 6.148 94 226709 34 1.47946e+08 9.21257e+07 1.62379e+07 6495.14 164.48 32.8008 27.0848 353364 3504872 -1 204540 20 39838 157470 10691982 1929023 79.2512 79.2512 -59429.8 -79.2512 -26.3419 -0.293253 2.03897e+07 8155.87 6.87 6.13 3.18 -1 -1 6.87 3.24641 2.80309 0.08747 0.4048 0.01146 0.5838 -k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.91 vpr 65.00 MiB -1 -1 0.47 18508 3 0.10 -1 -1 33188 -1 -1 68 99 1 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66556 99 130 344 474 1 224 298 12 12 144 clb auto 25.8 MiB 0.15 549 73928 23829 36791 13308 65.0 MiB 0.24 0.00 1.8401 -118.152 -1.8401 1.8401 0.30 0.00130488 0.00123523 0.100365 0.0949561 34 1400 12 5.66058e+06 4.21279e+06 320229. 2223.82 0.82 0.352608 0.324286 13004 62563 -1 1279 8 430 654 33979 11413 1.95123 1.95123 -139.36 -1.95123 -0.526504 -0.320482 391831. 2721.05 0.09 0.04 0.07 -1 -1 0.09 0.0272355 0.0252418 0.01018 0.2461 0.07191 0.682 -k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 12.96 vpr 67.98 MiB -1 -1 0.70 23348 15 0.36 -1 -1 34272 -1 -1 36 162 0 5 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69616 162 96 1009 950 1 712 299 16 16 256 mult_36 auto 28.8 MiB 0.87 5534 82217 25495 50569 6153 68.0 MiB 0.58 0.01 20.7544 -1579.11 -20.7544 20.7544 0.57 0.00332232 0.0031218 0.287023 0.269371 46 13546 31 1.21132e+07 3.92018e+06 791147. 3090.42 5.71 0.929007 0.856522 26792 163197 -1 10190 18 3201 6645 1002301 246174 22.2459 22.2459 -1761.64 -22.2459 0 0 1.01637e+06 3970.19 0.23 0.35 0.15 -1 -1 0.23 0.139767 0.129559 0.00808 0.3534 0.01627 0.6303 -k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 687.19 vpr 522.71 MiB -1 -1 81.99 340236 123 63.71 -1 -1 78648 -1 -1 1274 114 45 8 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 535252 114 102 21994 21904 1 11815 1543 50 50 2500 memory auto 155.5 MiB 259.47 160275 990775 347540 619346 23889 522.7 MiB 24.01 0.19 80.1549 -53164.4 -80.1549 80.1549 27.38 0.0616526 0.0539863 7.65448 6.40952 98 232320 21 1.47946e+08 9.64913e+07 1.74237e+07 6969.48 146.68 24.4951 20.3482 371232 3885440 -1 210203 21 37478 147018 9204142 1693783 80.8722 80.8722 -65514.2 -80.8722 -15.0342 -0.291039 2.19566e+07 8782.65 6.79 5.80 3.52 -1 -1 6.79 3.30513 2.85672 0.09047 0.4148 0.01154 0.5737 -k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 4.08 vpr 64.86 MiB -1 -1 0.47 18524 3 0.09 -1 -1 33280 -1 -1 68 99 1 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66416 99 130 344 474 1 224 298 12 12 144 clb auto 25.9 MiB 0.14 613 74923 25398 37402 12123 64.9 MiB 0.25 0.00 1.839 -119.464 -1.839 1.839 0.30 0.00128281 0.00121543 0.100423 0.0950336 50 1260 9 5.66058e+06 4.21279e+06 440062. 3055.98 0.94 0.346378 0.318763 14436 87570 -1 1179 7 283 438 20001 6155 1.98899 1.98899 -130.914 -1.98899 -1.29567 -0.29768 564899. 3922.91 0.12 0.04 0.09 -1 -1 0.12 0.0248425 0.0230441 0.01164 0.2329 0.07048 0.6967 -k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 13.12 vpr 68.05 MiB -1 -1 0.71 23408 15 0.35 -1 -1 34492 -1 -1 36 162 0 5 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69680 162 96 1009 950 1 712 299 16 16 256 mult_36 auto 28.8 MiB 1.00 5534 82217 25497 50567 6153 68.0 MiB 0.60 0.01 20.7544 -1578.81 -20.7544 20.7544 0.57 0.00330045 0.00309454 0.292819 0.274658 46 13744 47 1.21132e+07 3.92018e+06 791147. 3090.42 5.72 1.00594 0.926499 26792 163197 -1 10259 16 3195 6538 948445 234905 22.2459 22.2459 -1811.67 -22.2459 0 0 1.01637e+06 3970.19 0.23 0.33 0.15 -1 -1 0.23 0.128353 0.119133 0.008381 0.3414 0.01568 0.6429 -k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 716.17 vpr 540.73 MiB -1 -1 82.09 339008 123 63.26 -1 -1 78716 -1 -1 1175 114 45 8 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 553708 114 102 21994 21904 1 10942 1444 50 50 2500 memory auto 156.9 MiB 249.35 148069 866192 300137 545963 20092 540.7 MiB 23.11 0.18 78.5025 -50951.2 -78.5025 78.5025 26.79 0.0607318 0.0529501 7.5696 6.24034 92 233026 48 1.47946e+08 9.11556e+07 1.65231e+07 6609.23 187.34 25.5167 20.9888 361236 3648468 -1 199192 19 37587 154072 9856337 1805513 81.0092 81.0092 -66576.6 -81.0092 -34.8015 -0.29436 2.08892e+07 8355.67 6.32 5.43 3.56 -1 -1 6.32 2.98606 2.57895 0.08965 0.3936 0.01149 0.5949 -k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 4.90 vpr 64.68 MiB -1 -1 0.46 18476 3 0.10 -1 -1 33136 -1 -1 68 99 1 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66232 99 130 344 474 1 226 298 12 12 144 clb auto 25.4 MiB 0.14 538 74923 23743 38186 12994 64.7 MiB 0.25 0.00 1.85836 -118.859 -1.85836 1.85836 0.28 0.00130077 0.00122313 0.100354 0.0950103 48 1119 10 5.66058e+06 4.21279e+06 394078. 2736.65 1.84 0.43338 0.397487 13382 75762 -1 1111 9 407 640 31098 9571 1.90517 1.90517 -133.268 -1.90517 -1.14837 -0.298787 503207. 3494.49 0.10 0.05 0.08 -1 -1 0.10 0.0289942 0.0268024 0.01058 0.2539 0.08162 0.6644 -k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 14.96 vpr 67.49 MiB -1 -1 0.70 23380 15 0.35 -1 -1 34484 -1 -1 37 162 0 5 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69112 162 96 1009 950 1 705 300 16 16 256 mult_36 auto 28.3 MiB 0.76 5400 93579 30951 55136 7492 67.5 MiB 0.65 0.01 21.0211 -1608.2 -21.0211 21.0211 0.53 0.00332373 0.00312174 0.324339 0.304342 52 13668 48 1.21132e+07 3.97408e+06 805949. 3148.24 7.88 1.24533 1.14655 25992 162577 -1 10366 18 3716 7645 1206424 330743 21.9034 21.9034 -1762.54 -21.9034 0 0 1.06067e+06 4143.25 0.23 0.40 0.16 -1 -1 0.23 0.142071 0.131718 0.008025 0.369 0.01742 0.6136 -k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 603.34 vpr 457.13 MiB -1 -1 82.14 340192 123 66.24 -1 -1 78560 -1 -1 1312 114 45 8 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 468104 114 102 21994 21904 1 12069 1581 50 50 2500 memory auto 156.9 MiB 150.27 157114 995829 353535 622712 19582 457.1 MiB 23.40 0.20 78.8285 -48928.8 -78.8285 78.8285 21.38 0.0648614 0.0530728 7.47249 6.16569 98 235798 29 1.47946e+08 9.85393e+07 1.60641e+07 6425.63 178.90 25.6973 21.2388 348768 3430976 -1 213424 20 45932 171043 10114133 1799018 78.271 78.271 -60696.1 -78.271 -29.5608 -0.29436 2.03677e+07 8147.07 6.47 6.08 3.25 -1 -1 6.47 3.29083 2.82896 0.08425 0.4305 0.01165 0.5578 -k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.73 vpr 64.40 MiB -1 -1 0.45 18504 3 0.09 -1 -1 33112 -1 -1 68 99 1 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65944 99 130 344 474 1 226 298 12 12 144 clb auto 25.4 MiB 0.12 629 72933 24501 35348 13084 64.4 MiB 0.24 0.00 1.87772 -119.549 -1.87772 1.87772 0.27 0.00128295 0.00121483 0.0979705 0.0927064 44 1497 14 5.66058e+06 4.21279e+06 360780. 2505.42 0.85 0.35178 0.323504 13094 71552 -1 1295 10 435 664 32826 9570 1.88524 1.88524 -137.26 -1.88524 -0.676272 -0.265573 470765. 3269.20 0.09 0.03 0.05 -1 -1 0.09 0.0168764 0.0157507 0.01211 0.233 0.06912 0.6979 -k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 13.27 vpr 67.82 MiB -1 -1 0.71 23404 15 0.35 -1 -1 34356 -1 -1 38 162 0 5 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69452 162 96 1009 950 1 712 301 16 16 256 mult_36 auto 28.6 MiB 0.88 5436 80941 24721 48691 7529 67.8 MiB 0.57 0.01 21.3215 -1593.92 -21.3215 21.3215 0.53 0.00333791 0.00313573 0.281644 0.264489 52 13694 49 1.21132e+07 4.02797e+06 805949. 3148.24 6.30 1.19097 1.09485 25992 162577 -1 10091 23 3615 7408 1176966 344030 22.5958 22.5958 -1723.52 -22.5958 0 0 1.06067e+06 4143.25 0.23 0.43 0.16 -1 -1 0.23 0.168977 0.156174 0.008131 0.3528 0.01671 0.6305 -k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 587.23 vpr 491.73 MiB -1 -1 81.07 339920 123 65.75 -1 -1 78576 -1 -1 1232 114 45 8 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 503532 114 102 21994 21904 1 11410 1501 50 50 2500 memory auto 156.1 MiB 151.18 147970 912041 322415 572125 17501 456.5 MiB 25.64 0.19 79.3309 -50078.7 -79.3309 79.3309 22.19 0.0607523 0.0531329 8.06828 6.5854 94 226623 25 1.47946e+08 9.42277e+07 1.55181e+07 6207.23 160.51 33.8179 27.6693 341268 3271592 -1 205584 20 42943 163878 11109032 1979719 80.5595 80.5595 -61773.4 -80.5595 -24.5176 -0.29436 1.95446e+07 7817.85 6.00 6.25 3.10 -1 -1 6.00 3.31135 2.84415 0.08355 0.4122 0.0115 0.5763 -k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.90 vpr 64.49 MiB -1 -1 0.45 18484 3 0.10 -1 -1 33196 -1 -1 68 99 1 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66036 99 130 344 474 1 224 298 12 12 144 clb auto 25.3 MiB 0.16 639 73928 23996 36536 13396 64.5 MiB 0.24 0.00 1.839 -119.624 -1.839 1.839 0.27 0.00128978 0.00122129 0.0993504 0.0940474 46 1412 8 5.66058e+06 4.21279e+06 378970. 2631.74 0.86 0.343334 0.315928 13238 73581 -1 1242 10 409 673 29623 8410 1.92827 1.92827 -132.598 -1.92827 -1.27659 -0.320482 486261. 3376.82 0.10 0.05 0.08 -1 -1 0.10 0.0311251 0.0287589 0.01069 0.2668 0.0786 0.6546 -k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 10.40 vpr 67.71 MiB -1 -1 0.73 23380 15 0.35 -1 -1 34356 -1 -1 36 162 0 5 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69336 162 96 1009 950 1 713 299 16 16 256 mult_36 auto 28.6 MiB 0.73 5364 72227 19590 45379 7258 67.7 MiB 0.52 0.01 21.0826 -1528.67 -21.0826 21.0826 0.53 0.00335001 0.00314464 0.256125 0.240615 50 11640 32 1.21132e+07 3.92018e+06 780512. 3048.87 3.54 1.01714 0.936426 25484 153448 -1 9689 15 3086 6229 925159 229377 22.1237 22.1237 -1616.56 -22.1237 0 0 1.00276e+06 3917.05 0.22 0.31 0.15 -1 -1 0.22 0.121562 0.112896 0.007966 0.3547 0.01635 0.629 -k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 648.38 vpr 455.99 MiB -1 -1 82.14 340236 123 57.05 -1 -1 78672 -1 -1 1303 114 45 8 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 466932 114 102 21994 21904 1 11945 1572 50 50 2500 memory auto 156.2 MiB 162.56 155446 1015668 369921 626939 18808 456.0 MiB 25.41 0.19 79.7453 -52233.7 -79.7453 79.7453 21.15 0.0611488 0.0533697 7.80998 6.50095 98 235418 31 1.47946e+08 9.80543e+07 1.60641e+07 6425.63 218.95 26.8542 22.2389 348768 3430976 -1 212823 21 45556 172847 10528121 1854644 81.5508 81.5508 -63599.7 -81.5508 -17.3574 -0.295467 2.03677e+07 8147.07 6.35 6.10 3.26 -1 -1 6.35 3.30222 2.83357 0.0847 0.4264 0.01149 0.5621 -k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.72 vpr 64.43 MiB -1 -1 0.25 18532 3 0.09 -1 -1 33232 -1 -1 68 99 1 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65976 99 130 344 474 1 224 298 12 12 144 clb auto 25.5 MiB 0.13 640 74923 24032 38029 12862 64.4 MiB 0.25 0.00 1.85836 -119.386 -1.85836 1.85836 0.27 0.00128168 0.00121414 0.100227 0.094856 48 1399 19 5.66058e+06 4.21279e+06 394078. 2736.65 0.89 0.366673 0.337055 13382 75762 -1 1315 10 382 581 31540 8904 1.97104 1.97104 -135.474 -1.97104 -0.999065 -0.298787 503207. 3494.49 0.11 0.05 0.08 -1 -1 0.11 0.0314073 0.0289943 0.01192 0.2466 0.07003 0.6833 -k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 10.94 vpr 67.83 MiB -1 -1 0.42 23432 15 0.37 -1 -1 34400 -1 -1 36 162 0 5 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69460 162 96 1009 950 1 713 299 16 16 256 mult_36 auto 28.6 MiB 0.90 5364 72227 19590 45379 7258 67.8 MiB 0.52 0.01 21.0826 -1528.67 -21.0826 21.0826 0.53 0.00334529 0.00313832 0.255556 0.239987 48 12805 41 1.21132e+07 3.92018e+06 756778. 2956.16 4.19 0.998699 0.91939 25228 149258 -1 9805 16 3331 6769 959822 240776 22.0604 22.0604 -1637.72 -22.0604 0 0 968034. 3781.38 0.22 0.34 0.14 -1 -1 0.22 0.130825 0.121383 0.008221 0.3371 0.01616 0.6467 -k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 539.29 vpr 458.57 MiB -1 -1 81.35 338872 123 65.68 -1 -1 78724 -1 -1 1201 114 45 8 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 469576 114 102 21994 21904 1 11170 1470 50 50 2500 memory auto 156.6 MiB 162.59 145223 903810 323881 562576 17353 458.6 MiB 23.78 0.23 78.3462 -52922.5 -78.3462 78.3462 20.77 0.0716151 0.0636171 7.76893 6.44748 92 224213 40 1.47946e+08 9.25569e+07 1.52089e+07 6083.58 100.82 25.8914 21.3798 338772 3221652 -1 200921 20 44271 169310 10439629 1870593 79.3368 79.3368 -63585.9 -79.3368 -30.0926 -0.295467 1.93279e+07 7731.17 7.13 6.52 3.11 -1 -1 7.13 3.52325 3.03658 0.08467 0.4033 0.01157 0.5851 +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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time total_power routing_power_perc clock_power_perc tile_power_perc +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.64 vpr 65.49 MiB -1 -1 0.33 22284 3 0.10 -1 -1 36976 -1 54752 68 99 1 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 67064 99 130 344 474 1 226 298 12 12 144 clb auto 26.3 MiB 0.08 538 74923 23743 38186 12994 65.5 MiB 0.17 0.00 1.85836 -118.859 -1.85836 1.85836 0.33 0.000486505 0.000433551 0.0395107 0.0352707 -1 -1 -1 -1 48 1116 12 5.66058e+06 4.21279e+06 394078. 2736.65 0.75 0.150667 0.136701 13382 75762 -1 1110 10 412 647 31369 9620 1.90517 1.90517 -133.113 -1.90517 -1.14837 -0.298787 503207. 3494.49 0.14 0.03 0.08 -1 -1 0.14 0.0189767 0.0177968 0.01055 0.2565 0.08184 0.6617 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 14.10 vpr 68.69 MiB -1 -1 0.56 26896 15 0.41 -1 -1 37556 -1 56848 39 162 0 5 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 70340 162 96 1009 950 1 711 302 16 16 256 mult_36 auto 29.5 MiB 0.29 5244 100490 36162 56323 8005 68.7 MiB 0.52 0.01 21.0218 -1540.44 -21.0218 21.0218 0.65 0.00138725 0.00120684 0.153804 0.135182 -1 -1 -1 -1 58 12364 47 1.21132e+07 4.08187e+06 904549. 3533.39 7.36 0.685377 0.618096 27012 180273 -1 9111 18 3141 6470 890891 255235 22.5995 22.5995 -1612.44 -22.5995 0 0 1.15318e+06 4504.63 0.34 0.25 0.17 -1 -1 0.34 0.0908667 0.0846981 0.007774 0.375 0.01842 0.6066 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 577.55 vpr 460.78 MiB -1 -1 81.29 357444 123 91.70 -1 -1 82560 -1 119320 1366 114 45 8 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 471836 114 102 21994 21904 1 11836 1635 50 50 2500 memory auto 156.0 MiB 21.09 163873 1060715 378314 659503 22898 460.8 MiB 28.93 0.27 80.0631 -51811.9 -80.0631 80.0631 23.51 0.0767172 0.0635745 6.83032 5.5929 -1 -1 -1 -1 98 248827 34 1.47946e+08 1.0145e+08 1.60641e+07 6425.63 241.77 26.1462 21.8548 348768 3430976 -1 220630 22 44335 165955 10546515 1857252 82.0537 82.0537 -63570.6 -82.0537 -54.234 -0.341744 2.03677e+07 8147.07 8.57 5.63 4.03 -1 -1 8.57 3.05733 2.68846 0.08245 0.4398 0.01125 0.549 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 4.29 vpr 65.68 MiB -1 -1 0.43 22296 3 0.11 -1 -1 37252 -1 54836 68 99 1 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 67260 99 130 344 474 1 226 298 12 12 144 clb auto 26.7 MiB 0.13 629 72933 24501 35348 13084 65.7 MiB 0.18 0.00 1.87772 -119.549 -1.87772 1.87772 0.37 0.00051977 0.000459714 0.0411697 0.0365658 -1 -1 -1 -1 44 1503 13 5.66058e+06 4.21279e+06 360780. 2505.42 0.89 0.173941 0.157684 13094 71552 -1 1291 9 444 678 32652 9532 1.88524 1.88524 -138.119 -1.88524 -0.676272 -0.265573 470765. 3269.20 0.15 0.04 0.08 -1 -1 0.15 0.0197651 0.0186328 0.01201 0.2318 0.06967 0.6986 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml diffeq1.v common 16.90 vpr 68.78 MiB -1 -1 0.66 26996 15 0.45 -1 -1 37864 -1 57100 39 162 0 5 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 70432 162 96 1009 950 1 711 302 16 16 256 mult_36 auto 29.8 MiB 0.40 5244 100490 36162 56322 8006 68.8 MiB 0.64 0.01 21.0218 -1540.44 -21.0218 21.0218 0.86 0.00242426 0.00217373 0.209853 0.186614 -1 -1 -1 -1 60 12120 38 1.21132e+07 4.08187e+06 934704. 3651.19 8.81 0.859922 0.778088 27268 184674 -1 9238 21 3171 6591 898709 258665 22.6022 22.6022 -1615.35 -22.6022 0 0 1.17756e+06 4599.85 0.38 0.31 0.20 -1 -1 0.38 0.126989 0.118088 0.008138 0.3663 0.01781 0.6159 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml LU8PEEng.v common 580.08 vpr 462.27 MiB -1 -1 81.14 357920 123 96.43 -1 -1 82376 -1 119492 1283 114 45 8 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 473364 114 102 21994 21904 1 11396 1552 50 50 2500 memory auto 159.4 MiB 53.49 151468 962626 335251 605750 21625 462.3 MiB 24.51 0.25 79.7185 -50660.6 -79.7185 79.7185 24.68 0.0750628 0.0619804 5.68505 4.63822 -1 -1 -1 -1 98 230987 26 1.47946e+08 9.69764e+07 1.60641e+07 6425.63 206.52 27.8652 23.4116 348768 3430976 -1 206741 19 42740 163747 9849262 1764940 80.7634 80.7634 -62863.6 -80.7634 -25.1857 -0.295467 2.03677e+07 8147.07 9.20 7.48 4.38 -1 -1 9.20 3.98881 3.5325 0.08362 0.427 0.01129 0.5617 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 4.28 vpr 65.81 MiB -1 -1 0.38 22052 3 0.12 -1 -1 37244 -1 55032 68 99 1 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 67388 99 130 344 474 1 226 298 12 12 144 clb auto 26.6 MiB 0.19 538 74923 23743 38186 12994 65.8 MiB 0.18 0.00 1.85836 -118.859 -1.85836 1.85836 0.38 0.000495014 0.000434956 0.0406066 0.0358074 -1 -1 -1 -1 44 1215 9 5.66058e+06 4.21279e+06 377431. 2621.05 0.82 0.156578 0.141254 13584 76382 -1 1056 7 380 593 23836 7184 1.9572 1.9572 -130.301 -1.9572 -1.36959 -0.320482 492119. 3417.49 0.16 0.03 0.09 -1 -1 0.16 0.0172655 0.016303 0.01011 0.2345 0.08042 0.6851 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 14.10 vpr 69.00 MiB -1 -1 0.63 26872 15 0.46 -1 -1 37780 -1 57100 39 162 0 5 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 70652 162 96 1009 950 1 705 302 16 16 256 mult_36 auto 29.8 MiB 1.17 5683 93406 31754 54877 6775 69.0 MiB 0.59 0.01 21.4085 -1556.87 -21.4085 21.4085 0.80 0.00184776 0.00164644 0.182057 0.161167 -1 -1 -1 -1 46 12863 27 1.21132e+07 4.08187e+06 761464. 2974.47 5.34 0.614693 0.556019 25952 154797 -1 10322 14 3161 6815 963941 249742 22.9754 22.9754 -1703.75 -22.9754 0 0 979054. 3824.43 0.33 0.34 0.20 -1 -1 0.33 0.107498 0.101228 0.007836 0.3552 0.01616 0.6286 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 885.53 vpr 493.08 MiB -1 -1 82.72 358196 123 94.28 -1 -1 82528 -1 119464 1288 114 45 8 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 504916 114 102 21994 21904 1 12045 1557 50 50 2500 memory auto 158.3 MiB 312.06 160864 1011797 360603 629329 21865 493.1 MiB 32.07 0.26 79.4147 -50808.8 -79.4147 79.4147 36.09 0.0779308 0.0648568 9.29022 7.71491 -1 -1 -1 -1 98 239202 28 1.47946e+08 9.72458e+07 1.67994e+07 6719.74 232.74 33.3655 28.3495 360864 3674624 -1 213681 19 41673 157305 9667631 1741562 81.24 81.24 -63245.1 -81.24 -19.5295 -0.295467 2.12220e+07 8488.81 9.05 5.13 4.26 -1 -1 9.05 2.73717 2.45266 0.08697 0.4234 0.01132 0.5653 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.86 vpr 65.95 MiB -1 -1 0.40 22216 3 0.10 -1 -1 37156 -1 55080 68 99 1 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 67528 99 130 344 474 1 226 298 12 12 144 clb auto 27.0 MiB 0.17 629 72933 24501 35348 13084 65.9 MiB 0.19 0.00 1.87772 -119.549 -1.87772 1.87772 0.38 0.00057185 0.00051015 0.044268 0.0393845 -1 -1 -1 -1 32 1624 14 5.66058e+06 4.21279e+06 295695. 2053.44 0.48 0.117983 0.106653 12440 56522 -1 1512 9 414 636 41683 12549 2.10604 2.10604 -144.439 -2.10604 -0.325931 -0.145548 361905. 2513.23 0.13 0.03 0.06 -1 -1 0.13 0.0197783 0.0186492 0.011 0.2405 0.05957 0.6999 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 13.87 vpr 69.10 MiB -1 -1 0.65 27096 15 0.48 -1 -1 37708 -1 57068 38 162 0 5 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 70760 162 96 1009 950 1 706 301 16 16 256 mult_36 auto 30.0 MiB 1.40 5656 94045 31737 56059 6249 69.1 MiB 0.58 0.01 21.2066 -1479.61 -21.2066 21.2066 0.80 0.00153586 0.00135285 0.187862 0.16724 -1 -1 -1 -1 46 14213 39 1.21132e+07 4.02797e+06 761464. 2974.47 4.78 0.512783 0.463407 25952 154797 -1 10825 19 3638 7502 1282322 323679 22.7871 22.7871 -1801.31 -22.7871 0 0 979054. 3824.43 0.35 0.38 0.22 -1 -1 0.35 0.1176 0.109809 0.008222 0.3465 0.01552 0.638 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 855.58 vpr 493.09 MiB -1 -1 80.02 357788 123 102.09 -1 -1 82452 -1 119160 1193 114 45 8 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 504924 114 102 21994 21904 1 11319 1462 50 50 2500 memory auto 158.2 MiB 269.40 151481 880626 307715 554429 18482 493.1 MiB 25.30 0.21 78.7665 -49507.4 -78.7665 78.7665 33.63 0.0658548 0.0577997 7.95493 6.75161 -1 -1 -1 -1 94 226709 34 1.47946e+08 9.21257e+07 1.62379e+07 6495.14 249.43 32.6057 27.902 353364 3504872 -1 204540 20 39838 157470 10691982 1929023 79.2512 79.2512 -59429.8 -79.2512 -26.3419 -0.293253 2.03897e+07 8155.87 7.93 6.77 3.82 -1 -1 7.93 3.62917 3.24913 0.08747 0.4048 0.01146 0.5838 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 4.35 vpr 66.04 MiB -1 -1 0.39 22020 3 0.15 -1 -1 37228 -1 55148 68 99 1 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 67620 99 130 344 474 1 224 298 12 12 144 clb auto 27.1 MiB 0.20 549 73928 23829 36791 13308 66.0 MiB 0.18 0.00 1.8401 -118.152 -1.8401 1.8401 0.38 0.000510941 0.000451262 0.0406141 0.0359304 -1 -1 -1 -1 34 1400 12 5.66058e+06 4.21279e+06 320229. 2223.82 0.81 0.166622 0.150676 13004 62563 -1 1279 8 430 654 33979 11413 1.95123 1.95123 -139.36 -1.95123 -0.526504 -0.320482 391831. 2721.05 0.14 0.03 0.06 -1 -1 0.14 0.0173218 0.0163059 0.01018 0.2461 0.07191 0.682 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 14.53 vpr 69.19 MiB -1 -1 0.72 26928 15 0.45 -1 -1 37820 -1 57112 36 162 0 5 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 70848 162 96 1009 950 1 712 299 16 16 256 mult_36 auto 29.9 MiB 1.24 5534 82217 25495 50569 6153 69.2 MiB 0.50 0.01 20.7544 -1579.11 -20.7544 20.7544 0.78 0.00171433 0.00151581 0.155032 0.138075 -1 -1 -1 -1 46 13546 31 1.21132e+07 3.92018e+06 791147. 3090.42 5.65 0.548901 0.496411 26792 163197 -1 10190 18 3201 6645 1002301 246174 22.2459 22.2459 -1761.64 -22.2459 0 0 1.01637e+06 3970.19 0.37 0.40 0.26 -1 -1 0.37 0.138309 0.129619 0.00808 0.3534 0.01627 0.6303 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 890.77 vpr 524.05 MiB -1 -1 78.18 357960 123 95.78 -1 -1 82924 -1 119388 1274 114 45 8 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 536628 114 102 21994 21904 1 11815 1543 50 50 2500 memory auto 156.8 MiB 392.30 160275 990775 347540 619346 23889 524.1 MiB 26.07 0.22 80.1549 -53164.4 -80.1549 80.1549 33.32 0.0423342 0.0355298 5.37863 4.33825 -1 -1 -1 -1 98 232320 21 1.47946e+08 9.64913e+07 1.74237e+07 6969.48 163.73 20.4838 17.0687 371232 3885440 -1 210203 21 37478 147018 9204142 1693783 80.8722 80.8722 -65514.2 -80.8722 -15.0342 -0.291039 2.19566e+07 8782.65 10.29 6.74 4.49 -1 -1 10.29 3.94346 3.51065 0.09047 0.4148 0.01154 0.5737 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 4.40 vpr 66.00 MiB -1 -1 0.37 22200 3 0.10 -1 -1 37136 -1 55296 68 99 1 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 67580 99 130 344 474 1 224 298 12 12 144 clb auto 26.8 MiB 0.18 613 74923 25398 37402 12123 66.0 MiB 0.19 0.00 1.839 -119.464 -1.839 1.839 0.39 0.000514572 0.000455927 0.0437043 0.0387858 -1 -1 -1 -1 50 1260 9 5.66058e+06 4.21279e+06 440062. 3055.98 0.94 0.161352 0.14609 14436 87570 -1 1179 7 283 438 20001 6155 1.98899 1.98899 -130.914 -1.98899 -1.29567 -0.29768 564899. 3922.91 0.20 0.03 0.09 -1 -1 0.20 0.0195384 0.0184717 0.01164 0.2329 0.07048 0.6967 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 14.66 vpr 69.21 MiB -1 -1 0.59 26916 15 0.55 -1 -1 37584 -1 56744 36 162 0 5 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 70868 162 96 1009 950 1 712 299 16 16 256 mult_36 auto 29.9 MiB 1.53 5534 82217 25497 50567 6153 69.2 MiB 0.49 0.01 20.7544 -1578.81 -20.7544 20.7544 0.76 0.00142384 0.00124845 0.151419 0.134241 -1 -1 -1 -1 46 13744 47 1.21132e+07 3.92018e+06 791147. 3090.42 5.85 0.608129 0.548534 26792 163197 -1 10259 16 3195 6538 948445 234905 22.2459 22.2459 -1811.67 -22.2459 0 0 1.01637e+06 3970.19 0.34 0.25 0.20 -1 -1 0.34 0.0873672 0.0816501 0.008381 0.3414 0.01568 0.6429 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common -1 -1 -1 -1 -1 -1 80.88 358140 123 101.54 -1 -1 82396 -1 119068 1175 114 45 8 -1 v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 -1 -1 -1 114 102 21994 21904 1 10942 1444 50 50 2500 memory auto 158.5 MiB 362.92 148069 866192 300137 545963 20092 542.5 MiB 21.96 0.19 78.5025 -50951.2 -78.5025 78.5025 33.51 0.0404284 0.0340368 4.97524 4.01711 -1 -1 -1 -1 -1 -1 48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 4.17 vpr 65.53 MiB -1 -1 0.39 21940 3 0.11 -1 -1 37088 -1 55036 68 99 1 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 67100 99 130 344 474 1 226 298 12 12 144 clb auto 26.3 MiB 0.18 538 74923 23743 38186 12994 65.5 MiB 0.18 0.00 1.85836 -118.859 -1.85836 1.85836 0.36 0.000503885 0.000445889 0.0407703 0.0361818 -1 -1 -1 -1 48 1119 10 5.66058e+06 4.21279e+06 394078. 2736.65 0.83 0.162516 0.147335 13382 75762 -1 1111 9 407 640 31098 9571 1.90517 1.90517 -133.268 -1.90517 -1.14837 -0.298787 503207. 3494.49 0.15 0.03 0.08 -1 -1 0.15 0.0185307 0.0174172 0.01058 0.2539 0.08162 0.6644 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 16.59 vpr 68.81 MiB -1 -1 0.62 27080 15 0.54 -1 -1 37336 -1 56880 37 162 0 5 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 70460 162 96 1009 950 1 705 300 16 16 256 mult_36 auto 29.7 MiB 1.15 5400 93579 30951 55136 7492 68.8 MiB 0.67 0.01 21.0211 -1608.2 -21.0211 21.0211 0.83 0.00218529 0.00196052 0.210179 0.186327 -1 -1 -1 -1 52 13668 48 1.21132e+07 3.97408e+06 805949. 3148.24 7.94 0.777988 0.700423 25992 162577 -1 10366 18 3716 7645 1206424 330743 21.9034 21.9034 -1762.54 -21.9034 0 0 1.06067e+06 4143.25 0.34 0.34 0.17 -1 -1 0.34 0.101027 0.0941108 0.008025 0.369 0.01742 0.6136 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 751.47 vpr 459.29 MiB -1 -1 76.66 357260 123 104.03 -1 -1 82768 -1 119376 1312 114 45 8 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 470316 114 102 21994 21904 1 12069 1581 50 50 2500 memory auto 157.2 MiB 214.07 157114 995829 353535 622712 19582 459.3 MiB 25.72 0.22 78.8285 -48928.8 -78.8285 78.8285 26.55 0.0460181 0.0354716 5.31863 4.22673 -1 -1 -1 -1 98 235798 29 1.47946e+08 9.85393e+07 1.60641e+07 6425.63 199.17 21.3518 17.6013 348768 3430976 -1 213424 20 45932 171043 10114133 1799018 78.271 78.271 -60696.1 -78.271 -29.5608 -0.29436 2.03677e+07 8147.07 10.37 8.63 4.34 -1 -1 10.37 4.63837 4.03562 0.08425 0.4305 0.01165 0.5578 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.97 vpr 65.71 MiB -1 -1 0.38 22044 3 0.11 -1 -1 37136 -1 55332 68 99 1 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 67284 99 130 344 474 1 226 298 12 12 144 clb auto 26.5 MiB 0.15 629 72933 24501 35348 13084 65.7 MiB 0.18 0.00 1.87772 -119.549 -1.87772 1.87772 0.35 0.000506163 0.000447486 0.0401944 0.0355473 -1 -1 -1 -1 44 1497 14 5.66058e+06 4.21279e+06 360780. 2505.42 0.79 0.162717 0.146772 13094 71552 -1 1295 10 435 664 32826 9570 1.88524 1.88524 -137.26 -1.88524 -0.676272 -0.265573 470765. 3269.20 0.15 0.03 0.08 -1 -1 0.15 0.0187671 0.0175436 0.01211 0.233 0.06912 0.6979 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 14.83 vpr 68.86 MiB -1 -1 0.76 26824 15 0.43 -1 -1 37920 -1 56980 38 162 0 5 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 70508 162 96 1009 950 1 712 301 16 16 256 mult_36 auto 29.5 MiB 1.28 5436 80941 24721 48691 7529 68.9 MiB 0.47 0.01 21.3215 -1593.92 -21.3215 21.3215 0.71 0.00232793 0.00210302 0.145318 0.12849 -1 -1 -1 -1 52 13694 49 1.21132e+07 4.02797e+06 805949. 3148.24 6.33 0.734895 0.66456 25992 162577 -1 10091 23 3615 7408 1176966 344030 22.5958 22.5958 -1723.52 -22.5958 0 0 1.06067e+06 4143.25 0.35 0.43 0.22 -1 -1 0.35 0.141215 0.131078 0.008131 0.3528 0.01671 0.6305 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 747.02 vpr 459.55 MiB -1 -1 76.79 357564 123 103.10 -1 -1 82672 -1 119148 1232 114 45 8 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 470576 114 102 21994 21904 1 11410 1501 50 50 2500 memory auto 157.3 MiB 213.00 147970 912041 322415 572125 17501 459.5 MiB 22.58 0.19 79.3309 -50078.7 -79.3309 79.3309 28.18 0.0406489 0.034124 4.98177 4.01464 -1 -1 -1 -1 94 226623 25 1.47946e+08 9.42277e+07 1.55181e+07 6207.23 205.02 20.5679 17.0123 341268 3271592 -1 205584 20 42943 163878 11109032 1979719 80.5595 80.5595 -61773.4 -80.5595 -24.5176 -0.29436 1.95446e+07 7817.85 7.22 5.21 3.66 -1 -1 7.22 2.83472 2.49181 0.08355 0.4122 0.0115 0.5763 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 4.33 vpr 65.67 MiB -1 -1 0.40 22044 3 0.12 -1 -1 37612 -1 55176 68 99 1 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 67248 99 130 344 474 1 224 298 12 12 144 clb auto 26.7 MiB 0.18 639 73928 23996 36536 13396 65.7 MiB 0.19 0.00 1.839 -119.624 -1.839 1.839 0.38 0.000509262 0.000449181 0.0435783 0.0386097 -1 -1 -1 -1 46 1412 8 5.66058e+06 4.21279e+06 378970. 2631.74 0.85 0.16414 0.148581 13238 73581 -1 1242 10 409 673 29623 8410 1.92827 1.92827 -132.598 -1.92827 -1.27659 -0.320482 486261. 3376.82 0.16 0.04 0.08 -1 -1 0.16 0.0233905 0.0218672 0.01069 0.2668 0.0786 0.6546 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 12.80 vpr 68.77 MiB -1 -1 0.70 26720 15 0.50 -1 -1 37612 -1 57020 36 162 0 5 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 70424 162 96 1009 950 1 713 299 16 16 256 mult_36 auto 29.7 MiB 1.10 5364 72227 19590 45379 7258 68.8 MiB 0.44 0.01 21.0826 -1528.67 -21.0826 21.0826 0.76 0.00151306 0.00132573 0.136098 0.120894 -1 -1 -1 -1 50 11640 32 1.21132e+07 3.92018e+06 780512. 3048.87 4.45 0.687777 0.624546 25484 153448 -1 9689 15 3086 6229 925159 229377 22.1237 22.1237 -1616.56 -22.1237 0 0 1.00276e+06 3917.05 0.33 0.27 0.16 -1 -1 0.33 0.0927712 0.0869862 0.007966 0.3547 0.01635 0.629 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 903.74 vpr 459.57 MiB -1 -1 76.30 357412 123 94.44 -1 -1 82144 -1 119384 1303 114 45 8 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 470604 114 102 21994 21904 1 11945 1572 50 50 2500 memory auto 157.4 MiB 236.80 155446 1015668 369921 626939 18808 459.6 MiB 30.91 0.22 79.7453 -52233.7 -79.7453 79.7453 32.96 0.057856 0.0500088 7.72209 6.32253 -1 -1 -1 -1 98 235418 31 1.47946e+08 9.80543e+07 1.60641e+07 6425.63 329.58 28.1814 23.6363 348768 3430976 -1 212823 21 45556 172847 10528121 1854644 81.5508 81.5508 -63599.7 -81.5508 -17.3574 -0.295467 2.03677e+07 8147.07 7.81 5.08 3.96 -1 -1 7.81 2.81265 2.48664 0.0847 0.4264 0.01149 0.5621 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 4.50 vpr 65.84 MiB -1 -1 0.43 22032 3 0.11 -1 -1 37572 -1 55080 68 99 1 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 67424 99 130 344 474 1 224 298 12 12 144 clb auto 26.6 MiB 0.18 640 74923 24032 38029 12862 65.8 MiB 0.19 0.00 1.85836 -119.386 -1.85836 1.85836 0.35 0.000508109 0.000449314 0.0420681 0.037305 -1 -1 -1 -1 48 1399 19 5.66058e+06 4.21279e+06 394078. 2736.65 0.97 0.195813 0.177019 13382 75762 -1 1315 10 382 581 31540 8904 1.97104 1.97104 -135.474 -1.97104 -0.999065 -0.298787 503207. 3494.49 0.21 0.05 0.08 -1 -1 0.21 0.0264135 0.0245771 0.01192 0.2466 0.07003 0.6833 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 14.77 vpr 68.82 MiB -1 -1 0.61 26804 15 0.46 -1 -1 37804 -1 57100 36 162 0 5 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 70468 162 96 1009 950 1 713 299 16 16 256 mult_36 auto 29.7 MiB 1.34 5364 72227 19590 45379 7258 68.8 MiB 0.42 0.01 21.0826 -1528.67 -21.0826 21.0826 0.70 0.0015561 0.00136801 0.129656 0.114768 -1 -1 -1 -1 48 12805 41 1.21132e+07 3.92018e+06 756778. 2956.16 6.62 0.755014 0.68285 25228 149258 -1 9805 16 3331 6769 959822 240776 22.0604 22.0604 -1637.72 -22.0604 0 0 968034. 3781.38 0.39 0.29 0.19 -1 -1 0.39 0.0979586 0.0917977 0.008221 0.3371 0.01616 0.6467 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 795.00 vpr 457.32 MiB -1 -1 77.67 357620 123 105.62 -1 -1 82744 -1 119076 1201 114 45 8 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 468296 114 102 21994 21904 1 11170 1470 50 50 2500 memory auto 157.1 MiB 229.77 145223 903810 323881 562576 17353 457.3 MiB 23.38 0.20 78.3462 -52922.5 -78.3462 78.3462 26.68 0.0415042 0.034747 5.1886 4.17196 -1 -1 -1 -1 92 224213 40 1.47946e+08 9.25569e+07 1.52089e+07 6083.58 231.27 23.1628 19.3148 338772 3221652 -1 200921 20 44271 169310 10439629 1870593 79.3368 79.3368 -63585.9 -79.3368 -30.0926 -0.295467 1.93279e+07 7731.17 8.50 7.66 3.68 -1 -1 8.50 4.13252 3.69005 0.08467 0.4033 0.01157 0.5851 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 4a1e9b67c4e..694b1b03602 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 8.37 vpr 65.41 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 97 14 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:57 gh-actions-runner-vtr-auto-spawned31 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66984 14 8 926 934 0 517 119 12 12 144 clb auto 27.7 MiB 0.40 4978 9171 1462 7157 552 65.4 MiB 0.20 0.01 4.85854 -36.6925 -4.85854 nan 0.37 0.0021973 0.001926 0.087389 0.0762459 52 6841 26 1.8e+06 1.746e+06 452692. 3143.70 5.01 1.17991 1.00821 12180 91053 -1 6642 23 3992 14975 576861 90555 4.88853 nan -35.9466 -4.88853 0 0 594734. 4130.10 0.19 0.29 0.09 -1 -1 0.19 0.144306 0.130414 -k6_N10_40nm.xml apex2.pre-vpr.blif common 11.54 vpr 67.02 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 115 38 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:57 gh-actions-runner-vtr-auto-spawned31 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68632 39 3 1113 1117 0 675 157 13 13 169 clb auto 29.5 MiB 0.52 7879 13693 2337 10136 1220 67.0 MiB 0.28 0.01 6.02154 -17.5859 -6.02154 nan 0.45 0.00275834 0.00233622 0.107502 0.0951802 62 13086 48 2.178e+06 2.07e+06 652532. 3861.14 7.21 1.37926 1.19039 15366 127615 -1 11563 30 6785 30387 1264252 174643 5.82632 nan -17.1242 -5.82632 0 0 801739. 4744.02 0.26 0.57 0.12 -1 -1 0.26 0.221433 0.19916 -k6_N10_40nm.xml apex4.pre-vpr.blif common 7.06 vpr 65.45 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 9 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:57 gh-actions-runner-vtr-auto-spawned31 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67016 9 19 897 916 0 569 123 12 12 144 clb auto 27.7 MiB 0.44 6709 9578 1569 7337 672 65.4 MiB 0.22 0.01 5.16784 -84.6504 -5.16784 nan 0.36 0.00241558 0.0020605 0.0899188 0.0795928 62 10796 38 1.8e+06 1.71e+06 546237. 3793.31 3.62 0.755057 0.654516 13040 106280 -1 9528 24 5403 25371 1032193 149160 5.31039 nan -84.6173 -5.31039 0 0 671089. 4660.34 0.22 0.44 0.10 -1 -1 0.22 0.163682 0.147834 -k6_N10_40nm.xml bigkey.pre-vpr.blif common 9.29 vpr 66.61 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 94 229 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:57 gh-actions-runner-vtr-auto-spawned31 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68204 263 197 1372 1603 1 490 554 17 17 289 io auto 28.6 MiB 0.32 4312 159734 46622 103443 9669 66.6 MiB 0.69 0.01 3.07033 -729.814 -3.07033 3.07033 0.90 0.00300216 0.00272837 0.221359 0.199167 34 7551 23 4.05e+06 1.692e+06 688919. 2383.80 4.43 0.958995 0.86192 21366 134962 -1 7110 17 2315 10686 592079 112425 3.1266 3.1266 -779.621 -3.1266 0 0 845950. 2927.16 0.34 0.29 0.12 -1 -1 0.34 0.139488 0.128092 -k6_N10_40nm.xml clma.pre-vpr.blif common 28.50 vpr 90.77 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 378 62 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:57 gh-actions-runner-vtr-auto-spawned31 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 92944 383 82 3674 4077 1 2351 843 22 22 484 clb auto 53.7 MiB 1.74 30084 406803 150647 202517 53639 90.8 MiB 3.85 0.03 8.58818 -372.88 -8.58818 8.58818 1.68 0.00744604 0.00626682 0.959624 0.807498 80 49364 38 7.2e+06 6.804e+06 2.49993e+06 5165.15 11.74 3.19017 2.67278 50556 522948 -1 43579 26 21059 94912 4449370 570004 8.46141 8.46141 -379.797 -8.46141 0 0 3.14482e+06 6497.55 0.83 1.25 0.31 -1 -1 0.83 0.441494 0.389906 -k6_N10_40nm.xml des.pre-vpr.blif common 9.79 vpr 64.66 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 101 256 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:57 gh-actions-runner-vtr-auto-spawned31 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66208 256 245 954 1199 0 613 602 18 18 324 io auto 26.5 MiB 0.23 4828 140357 37125 96029 7203 64.7 MiB 0.54 0.01 4.31026 -789.244 -4.31026 nan 1.00 0.00288301 0.00272449 0.170722 0.158812 34 7705 26 4.608e+06 1.818e+06 779010. 2404.35 4.97 1.01926 0.945251 24000 152888 -1 7130 18 2525 6134 402061 81348 4.49788 nan -806.729 -4.49788 0 0 956463. 2952.05 0.37 0.23 0.13 -1 -1 0.37 0.120003 0.112271 -k6_N10_40nm.xml diffeq.pre-vpr.blif common 7.31 vpr 65.93 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 64 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:57 gh-actions-runner-vtr-auto-spawned31 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67516 64 39 1371 1410 1 554 198 12 12 144 clb auto 27.9 MiB 0.33 3809 23814 5171 17235 1408 65.9 MiB 0.27 0.01 6.20988 -1165.59 -6.20988 6.20988 0.38 0.00227363 0.00200923 0.114435 0.10123 34 5732 42 1.8e+06 1.71e+06 320785. 2227.68 3.18 0.992959 0.860999 10464 62065 -1 5209 22 3174 9420 385735 66218 6.26652 6.26652 -1186.82 -6.26652 0 0 394711. 2741.05 0.14 0.25 0.06 -1 -1 0.14 0.145037 0.130267 -k6_N10_40nm.xml dsip.pre-vpr.blif common 9.22 vpr 66.58 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 97 229 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:57 gh-actions-runner-vtr-auto-spawned31 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68180 229 197 1370 1567 1 538 523 16 16 256 io auto 28.6 MiB 0.34 4639 156367 46237 102482 7648 66.6 MiB 0.78 0.01 3.20322 -726.151 -3.20322 3.20322 0.78 0.00314855 0.00281952 0.245995 0.219734 34 8368 47 3.528e+06 1.746e+06 604079. 2359.69 4.62 1.11544 1.00073 18880 118149 -1 7459 13 2689 9149 571229 113616 3.28489 3.28489 -779.779 -3.28489 0 0 742044. 2898.61 0.29 0.26 0.11 -1 -1 0.29 0.115099 0.106741 -k6_N10_40nm.xml elliptic.pre-vpr.blif common 23.94 vpr 78.45 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 235 131 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:57 gh-actions-runner-vtr-auto-spawned31 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80328 131 114 3421 3535 1 1210 480 18 18 324 clb auto 41.3 MiB 1.02 11455 124428 34728 84130 5570 78.4 MiB 1.32 0.02 8.08387 -4695.24 -8.08387 8.08387 1.04 0.00665594 0.00564279 0.475209 0.404761 50 19350 40 4.608e+06 4.23e+06 1.06618e+06 3290.67 8.07 2.25418 1.93137 27232 214208 -1 16443 24 8056 35475 1612694 233265 7.93357 7.93357 -4714.53 -7.93357 0 0 1.36711e+06 4219.48 0.49 0.83 0.20 -1 -1 0.49 0.418291 0.370112 -k6_N10_40nm.xml ex1010.pre-vpr.blif common 38.22 vpr 82.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 299 10 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:57 gh-actions-runner-vtr-auto-spawned31 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84168 10 10 2659 2669 0 1414 319 20 20 400 clb auto 45.7 MiB 1.52 26670 58036 15610 40440 1986 82.2 MiB 1.37 0.02 6.99148 -66.5608 -6.99148 nan 1.34 0.00734998 0.00639376 0.47292 0.399553 90 47190 31 5.832e+06 5.382e+06 2.27845e+06 5696.13 28.00 3.11918 2.60796 44092 472493 -1 40435 27 13453 81187 4495090 507770 6.68929 nan -64.8044 -6.68929 0 0 2.84047e+06 7101.17 0.71 1.14 0.29 -1 -1 0.71 0.336474 0.299193 -k6_N10_40nm.xml ex5p.pre-vpr.blif common 8.49 vpr 63.87 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 82 8 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:57 gh-actions-runner-vtr-auto-spawned31 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65400 8 63 761 824 0 451 153 12 12 144 clb auto 26.1 MiB 0.31 4564 13650 2467 10070 1113 63.9 MiB 0.19 0.01 4.36001 -198.144 -4.36001 nan 0.36 0.00202315 0.00175635 0.0754293 0.0662608 46 8116 47 1.8e+06 1.476e+06 409728. 2845.33 5.59 1.04053 0.898087 11608 81817 -1 7004 30 4945 21003 896494 141905 4.47246 nan -203.996 -4.47246 0 0 527971. 3666.47 0.17 0.37 0.07 -1 -1 0.17 0.142673 0.127129 -k6_N10_40nm.xml frisc.pre-vpr.blif common 27.33 vpr 78.79 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 242 20 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:57 gh-actions-runner-vtr-auto-spawned31 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80676 20 116 3175 3291 1 1258 378 18 18 324 clb auto 41.4 MiB 0.98 15098 76874 18624 53343 4907 78.8 MiB 1.11 0.02 9.88726 -5092.35 -9.88726 9.88726 1.01 0.00597592 0.00527929 0.409808 0.353672 60 25951 46 4.608e+06 4.356e+06 1.28013e+06 3951.02 13.10 2.54594 2.18414 29492 257832 -1 21144 26 8391 35581 1929606 263963 9.98478 9.98478 -5145.99 -9.98478 0 0 1.60155e+06 4943.04 0.56 0.88 0.25 -1 -1 0.56 0.42371 0.374449 -k6_N10_40nm.xml misex3.pre-vpr.blif common 7.52 vpr 64.44 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 86 14 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:57 gh-actions-runner-vtr-auto-spawned31 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65988 14 14 828 842 0 506 114 12 12 144 clb auto 26.8 MiB 0.36 4946 8118 1259 6320 539 64.4 MiB 0.18 0.00 4.99427 -64.5608 -4.99427 nan 0.38 0.00202505 0.0017544 0.076652 0.0683471 50 7449 35 1.8e+06 1.548e+06 439064. 3049.06 4.16 0.859461 0.745897 11896 86528 -1 6915 25 4736 20579 777903 117189 4.85973 nan -63.5848 -4.85973 0 0 562980. 3909.58 0.18 0.32 0.08 -1 -1 0.18 0.128932 0.1166 -k6_N10_40nm.xml pdc.pre-vpr.blif common 31.39 vpr 83.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 311 16 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:57 gh-actions-runner-vtr-auto-spawned31 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 85032 16 40 2839 2879 0 1521 367 20 20 400 clb auto 46.5 MiB 1.32 24941 68643 17504 47903 3236 83.0 MiB 1.50 0.03 7.11101 -257.274 -7.11101 nan 1.32 0.00814889 0.00674352 0.494696 0.420888 78 41725 45 5.832e+06 5.598e+06 2.00674e+06 5016.85 17.98 3.39922 2.87425 41300 418538 -1 35794 21 11768 65698 3038822 387442 7.18904 nan -255.486 -7.18904 0 0 2.53133e+06 6328.34 0.99 1.44 0.44 -1 -1 0.99 0.539876 0.484595 -k6_N10_40nm.xml s298.pre-vpr.blif common 5.07 vpr 63.72 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 77 4 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:57 gh-actions-runner-vtr-auto-spawned31 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65248 4 6 726 732 1 405 87 11 11 121 clb auto 26.1 MiB 0.31 3932 4503 604 3722 177 63.7 MiB 0.12 0.00 7.20975 -57.1746 -7.20975 7.20975 0.29 0.00160903 0.00138311 0.0565681 0.0504102 44 6222 32 1.458e+06 1.386e+06 324964. 2685.65 2.03 0.544024 0.472793 9582 65203 -1 5554 23 3368 16222 637492 96172 6.94914 6.94914 -58.3727 -6.94914 0 0 420935. 3478.80 0.13 0.28 0.05 -1 -1 0.13 0.123093 0.110761 -k6_N10_40nm.xml s38584.1.pre-vpr.blif common 37.83 vpr 87.75 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 376 38 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:57 gh-actions-runner-vtr-auto-spawned31 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89856 39 304 4677 4982 1 2202 719 22 22 484 clb auto 50.4 MiB 1.17 15134 255020 73345 166893 14782 87.8 MiB 2.42 0.03 5.66276 -3253.04 -5.66276 5.66276 1.70 0.00802743 0.00713342 0.736128 0.638028 40 23370 39 7.2e+06 6.768e+06 1.34575e+06 2780.48 12.71 4.12792 3.53956 37996 272632 -1 21030 29 11717 32882 1453579 252466 5.64983 5.64983 -3333.79 -5.64983 0 0 1.68761e+06 3486.79 0.69 1.00 0.26 -1 -1 0.69 0.594158 0.523275 -k6_N10_40nm.xml seq.pre-vpr.blif common 10.51 vpr 66.10 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 101 41 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:57 gh-actions-runner-vtr-auto-spawned31 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67684 41 35 1006 1041 0 615 177 13 13 169 clb auto 28.5 MiB 0.48 6961 16049 2946 11365 1738 66.1 MiB 0.28 0.01 5.03195 -143.664 -5.03195 nan 0.44 0.0026392 0.0023032 0.104441 0.0926794 60 12020 38 2.178e+06 1.818e+06 630658. 3731.70 6.55 1.20996 1.04611 15198 124941 -1 10354 24 5139 23293 962130 137023 5.06992 nan -144.115 -5.06992 0 0 788291. 4664.44 0.26 0.42 0.12 -1 -1 0.26 0.167051 0.150709 -k6_N10_40nm.xml spla.pre-vpr.blif common 20.31 vpr 77.93 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 241 16 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:57 gh-actions-runner-vtr-auto-spawned31 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79800 16 46 2232 2278 0 1201 303 18 18 324 clb auto 40.5 MiB 1.02 17032 51153 12014 36600 2539 77.9 MiB 1.10 0.02 6.29481 -217.773 -6.29481 nan 1.01 0.00692542 0.00584914 0.405951 0.347549 70 30122 46 4.608e+06 4.338e+06 1.48298e+06 4577.10 9.27 2.30812 1.96597 31752 300704 -1 25154 21 9819 54210 2459519 309528 6.20862 nan -218.942 -6.20862 0 0 1.85205e+06 5716.21 0.68 1.04 0.30 -1 -1 0.68 0.377258 0.335776 -k6_N10_40nm.xml tseng.pre-vpr.blif common 6.73 vpr 66.39 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 105 52 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:57 gh-actions-runner-vtr-auto-spawned31 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67984 52 122 1461 1583 1 525 279 13 13 169 clb auto 28.5 MiB 0.30 3192 45829 11147 32251 2431 66.4 MiB 0.38 0.01 5.68935 -1256.78 -5.68935 5.68935 0.45 0.00301241 0.00265536 0.153193 0.135734 30 5287 29 2.178e+06 1.89e+06 350324. 2072.92 2.78 0.871199 0.757648 12006 67531 -1 4334 25 2585 6950 258089 51105 5.34065 5.34065 -1250.43 -5.34065 0 0 430798. 2549.10 0.16 0.21 0.06 -1 -1 0.16 0.136378 0.121702 +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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_40nm.xml alu4.pre-vpr.blif common 7.79 vpr 64.05 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 97 14 -1 -1 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65584 14 8 926 934 0 517 119 12 12 144 clb auto 24.9 MiB 0.59 4978 9171 1462 7157 552 64.0 MiB 0.27 0.01 4.85854 -36.6925 -4.85854 nan 0.40 0.00229013 0.0019463 0.126381 0.111748 -1 -1 -1 -1 52 6841 26 1.8e+06 1.746e+06 452692. 3143.70 2.86 0.909951 0.797436 12180 91053 -1 6642 23 3992 14975 576861 90555 4.88853 nan -35.9466 -4.88853 0 0 594734. 4130.10 0.30 0.49 0.13 -1 -1 0.30 0.231292 0.210143 +k6_N10_40nm.xml apex2.pre-vpr.blif common 11.61 vpr 65.88 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 114 38 -1 -1 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 67464 39 3 1113 1117 0 676 156 13 13 169 clb auto 26.2 MiB 0.67 7991 14402 2464 10533 1405 65.9 MiB 0.40 0.01 5.87625 -17.406 -5.87625 nan 0.49 0.00408518 0.00361977 0.147343 0.129351 -1 -1 -1 -1 62 13314 49 2.178e+06 2.052e+06 652532. 3861.14 5.83 1.16631 1.01888 15366 127615 -1 12046 22 6325 28779 1206864 166573 5.88043 nan -17.1542 -5.88043 0 0 801739. 4744.02 0.27 0.65 0.20 -1 -1 0.27 0.21502 0.196576 +k6_N10_40nm.xml apex4.pre-vpr.blif common 11.07 vpr 64.42 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 9 -1 -1 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65968 9 19 897 916 0 568 123 12 12 144 clb auto 25.0 MiB 0.57 6616 8358 1251 6625 482 64.4 MiB 0.22 0.01 5.18808 -85.4879 -5.18808 nan 0.39 0.00281312 0.0023275 0.0756863 0.0650474 -1 -1 -1 -1 64 10344 32 1.8e+06 1.71e+06 562980. 3909.58 6.98 1.02613 0.882001 13324 112085 -1 9823 21 5176 24280 1089893 157064 5.18521 nan -85.6966 -5.18521 0 0 705288. 4897.83 0.22 0.47 0.11 -1 -1 0.22 0.162583 0.148293 +k6_N10_40nm.xml bigkey.pre-vpr.blif common 12.60 vpr 65.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 94 229 -1 -1 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66928 263 197 1372 1603 1 490 554 17 17 289 io auto 26.0 MiB 0.36 4312 159734 46622 103443 9669 65.4 MiB 1.19 0.03 3.07033 -729.814 -3.07033 3.07033 1.14 0.00415099 0.00372162 0.308823 0.273056 -1 -1 -1 -1 34 7551 23 4.05e+06 1.692e+06 688919. 2383.80 5.72 1.29646 1.16606 21366 134962 -1 7110 17 2315 10686 592079 112425 3.1266 3.1266 -779.621 -3.1266 0 0 845950. 2927.16 0.34 0.43 0.19 -1 -1 0.34 0.207796 0.19268 +k6_N10_40nm.xml clma.pre-vpr.blif common 61.67 vpr 99.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 378 62 -1 -1 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 101448 383 82 3674 4077 1 2351 843 22 22 484 clb auto 44.5 MiB 2.29 30234 398843 147564 198233 53046 88.7 MiB 6.67 0.10 8.68878 -384.052 -8.68878 8.68878 2.69 0.0155276 0.0133229 1.26339 1.07925 -1 -1 -1 -1 82 49771 43 7.2e+06 6.804e+06 2.55950e+06 5288.23 35.48 6.79195 5.74354 51036 532374 -1 43646 25 18197 79309 3810614 487367 8.62407 8.62407 -396.956 -8.62407 0 0 3.19792e+06 6607.28 1.25 2.00 0.51 -1 -1 1.25 0.806388 0.742409 +k6_N10_40nm.xml des.pre-vpr.blif common 9.87 vpr 63.15 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 101 256 -1 -1 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64664 256 245 954 1199 0 613 602 18 18 324 io auto 24.3 MiB 0.27 4828 140357 37125 96029 7203 63.1 MiB 0.58 0.01 4.31026 -789.244 -4.31026 nan 1.18 0.00268887 0.00247718 0.14833 0.135634 -1 -1 -1 -1 34 7705 26 4.608e+06 1.818e+06 779010. 2404.35 3.68 0.891807 0.829501 24000 152888 -1 7130 18 2525 6134 402061 81348 4.49788 nan -806.729 -4.49788 0 0 956463. 2952.05 0.41 0.38 0.14 -1 -1 0.41 0.171429 0.161993 +k6_N10_40nm.xml diffeq.pre-vpr.blif common 9.77 vpr 64.45 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 64 -1 -1 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65996 64 39 1371 1410 1 554 198 12 12 144 clb auto 25.4 MiB 0.38 3823 22662 4704 16452 1506 64.4 MiB 0.27 0.01 6.25641 -1164.67 -6.25641 6.25641 0.39 0.00226113 0.00194038 0.0990354 0.0845147 -1 -1 -1 -1 38 5271 25 1.8e+06 1.71e+06 347776. 2415.11 4.33 1.28566 1.11201 10892 69136 -1 4772 22 2865 8580 311452 52776 5.99996 5.99996 -1159.16 -5.99996 0 0 439064. 3049.06 0.16 0.26 0.06 -1 -1 0.16 0.1526 0.138145 +k6_N10_40nm.xml dsip.pre-vpr.blif common 12.42 vpr 65.15 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 97 229 -1 -1 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66712 229 197 1370 1567 1 538 523 16 16 256 io auto 25.8 MiB 0.56 4639 156367 46237 102482 7648 65.1 MiB 1.00 0.02 3.20322 -726.151 -3.20322 3.20322 0.86 0.00418747 0.00365041 0.259732 0.22846 -1 -1 -1 -1 34 8368 47 3.528e+06 1.746e+06 604079. 2359.69 5.60 1.32024 1.1892 18880 118149 -1 7459 13 2689 9149 571229 113616 3.28489 3.28489 -779.779 -3.28489 0 0 742044. 2898.61 0.30 0.35 0.11 -1 -1 0.30 0.147385 0.138151 +k6_N10_40nm.xml elliptic.pre-vpr.blif common 39.05 vpr 76.63 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 235 131 -1 -1 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 78472 131 114 3421 3535 1 1210 480 18 18 324 clb auto 35.7 MiB 1.64 11363 120672 33837 81431 5404 76.6 MiB 2.18 0.04 8.05414 -4631.43 -8.05414 8.05414 1.22 0.00849488 0.00726103 0.692001 0.597428 -1 -1 -1 -1 52 19720 37 4.608e+06 4.23e+06 1.09957e+06 3393.73 16.77 4.25257 3.62962 27876 225772 -1 17122 28 8126 36582 1833716 257901 7.83312 7.83312 -4681.92 -7.83312 0 0 1.44575e+06 4462.18 0.53 1.09 0.27 -1 -1 0.53 0.553107 0.496597 +k6_N10_40nm.xml ex1010.pre-vpr.blif common 41.78 vpr 79.87 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 299 10 -1 -1 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 81784 10 10 2659 2669 0 1414 319 20 20 400 clb auto 37.5 MiB 2.01 26899 59125 16225 41006 1894 79.9 MiB 1.87 0.03 6.8153 -65.2788 -6.8153 nan 1.86 0.0068608 0.00562071 0.52978 0.455904 -1 -1 -1 -1 90 45378 49 5.832e+06 5.382e+06 2.27845e+06 5696.13 25.05 3.88225 3.29354 44092 472493 -1 41285 21 11495 69687 3807936 447062 6.84579 nan -65.1254 -6.84579 0 0 2.84047e+06 7101.17 1.28 2.16 0.54 -1 -1 1.28 0.780219 0.707484 +k6_N10_40nm.xml ex5p.pre-vpr.blif common 9.00 vpr 62.31 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 82 8 -1 -1 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 63808 8 63 761 824 0 451 153 12 12 144 clb auto 23.3 MiB 0.57 4564 13650 2467 10070 1113 62.3 MiB 0.33 0.01 4.36001 -198.144 -4.36001 nan 0.63 0.00250332 0.00205267 0.106769 0.0912641 -1 -1 -1 -1 46 8116 47 1.8e+06 1.476e+06 409728. 2845.33 4.32 0.911486 0.793647 11608 81817 -1 7004 30 4945 21003 896494 141905 4.47246 nan -203.996 -4.47246 0 0 527971. 3666.47 0.17 0.60 0.08 -1 -1 0.17 0.234913 0.213184 +k6_N10_40nm.xml frisc.pre-vpr.blif common 40.55 vpr 75.93 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 242 20 -1 -1 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 77756 20 116 3175 3291 1 1258 378 18 18 324 clb auto 34.9 MiB 1.71 15482 83704 21369 56709 5626 75.9 MiB 1.70 0.02 10.0612 -5141.26 -10.0612 10.0612 1.16 0.00491127 0.00417088 0.4835 0.410195 -1 -1 -1 -1 64 24533 32 4.608e+06 4.356e+06 1.36711e+06 4219.48 18.07 3.52561 2.98385 30460 277092 -1 22374 28 8629 36312 2096962 284266 10.1175 10.1175 -5118.01 -10.1175 0 0 1.70889e+06 5274.36 1.01 0.98 0.44 -1 -1 1.01 0.438117 0.387003 +k6_N10_40nm.xml misex3.pre-vpr.blif common 7.41 vpr 62.83 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 86 14 -1 -1 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64336 14 14 828 842 0 506 114 12 12 144 clb auto 23.7 MiB 0.43 4946 8118 1259 6320 539 62.8 MiB 0.19 0.00 4.99427 -64.5608 -4.99427 nan 0.37 0.00152867 0.00125817 0.0739838 0.0641566 -1 -1 -1 -1 50 7449 35 1.8e+06 1.548e+06 439064. 3049.06 2.68 0.726791 0.637263 11896 86528 -1 6915 25 4736 20579 777903 117189 4.85973 nan -63.5848 -4.85973 0 0 562980. 3909.58 0.18 0.59 0.13 -1 -1 0.18 0.2338 0.211201 +k6_N10_40nm.xml pdc.pre-vpr.blif common 55.39 vpr 82.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 311 16 -1 -1 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 84436 16 40 2839 2879 0 1523 367 20 20 400 clb auto 39.0 MiB 2.33 25045 69956 17576 49024 3356 81.5 MiB 1.92 0.04 6.9664 -252.834 -6.9664 nan 2.10 0.010424 0.00872517 0.514138 0.441633 -1 -1 -1 -1 82 42152 41 5.832e+06 5.598e+06 2.08978e+06 5224.46 36.39 5.91647 5.04055 42096 433320 -1 37297 27 13109 74317 3634739 445448 6.8805 nan -250.748 -6.8805 0 0 2.61158e+06 6528.95 1.11 2.55 0.52 -1 -1 1.11 0.847263 0.767306 +k6_N10_40nm.xml s298.pre-vpr.blif common 7.01 vpr 62.68 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 77 4 -1 -1 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64180 4 6 726 732 1 405 87 11 11 121 clb auto 23.6 MiB 0.37 3932 4503 604 3722 177 62.7 MiB 0.11 0.00 7.20975 -57.1746 -7.20975 7.20975 0.30 0.000973951 0.000744785 0.0400304 0.0339612 -1 -1 -1 -1 44 6222 32 1.458e+06 1.386e+06 324964. 2685.65 2.73 0.717968 0.634405 9582 65203 -1 5554 23 3368 16222 637492 96172 6.94914 6.94914 -58.3727 -6.94914 0 0 420935. 3478.80 0.14 0.31 0.10 -1 -1 0.14 0.153243 0.140892 +k6_N10_40nm.xml s38584.1.pre-vpr.blif common 52.83 vpr 85.34 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 376 38 -1 -1 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 87384 39 304 4677 4982 1 2202 719 22 22 484 clb auto 43.9 MiB 1.61 15206 242144 69713 159436 12995 85.3 MiB 3.90 0.04 5.48475 -3337.84 -5.48475 5.48475 2.88 0.00722289 0.00587244 0.95453 0.812162 -1 -1 -1 -1 40 22911 36 7.2e+06 6.768e+06 1.34575e+06 2780.48 11.59 4.25442 3.61792 37996 272632 -1 20549 18 11349 30751 1295290 228892 5.28035 5.28035 -3387.12 -5.28035 0 0 1.68761e+06 3486.79 0.86 1.41 0.42 -1 -1 0.86 0.807652 0.736874 +k6_N10_40nm.xml seq.pre-vpr.blif common 9.59 vpr 64.99 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 101 41 -1 -1 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66552 41 35 1006 1041 0 615 177 13 13 169 clb auto 25.6 MiB 0.70 6961 16049 2946 11365 1738 65.0 MiB 0.29 0.01 5.03195 -143.664 -5.03195 nan 0.49 0.00216014 0.00180577 0.0909474 0.0771451 -1 -1 -1 -1 60 12020 38 2.178e+06 1.818e+06 630658. 3731.70 4.45 1.05296 0.918544 15198 124941 -1 10354 24 5139 23293 962130 137023 5.06992 nan -144.115 -5.06992 0 0 788291. 4664.44 0.43 0.42 0.19 -1 -1 0.43 0.170371 0.154782 +k6_N10_40nm.xml spla.pre-vpr.blif common 25.48 vpr 76.16 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 247 16 -1 -1 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 77988 16 46 2232 2278 0 1199 309 18 18 324 clb auto 34.4 MiB 1.17 17141 46245 9804 33770 2671 76.2 MiB 1.27 0.02 6.4111 -226.763 -6.4111 nan 1.42 0.00524266 0.00432523 0.367095 0.316654 -1 -1 -1 -1 70 29171 49 4.608e+06 4.446e+06 1.48298e+06 4577.10 11.06 2.65975 2.29439 31752 300704 -1 25168 25 9197 50250 2236990 292870 6.40568 nan -228.642 -6.40568 0 0 1.85205e+06 5716.21 0.95 1.60 0.32 -1 -1 0.95 0.690017 0.631406 +k6_N10_40nm.xml tseng.pre-vpr.blif common 6.44 vpr 65.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 105 52 -1 -1 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66748 52 122 1461 1583 1 525 279 13 13 169 clb auto 26.1 MiB 0.33 3192 45829 11147 32251 2431 65.2 MiB 0.37 0.01 5.68935 -1256.78 -5.68935 5.68935 0.45 0.00180859 0.00148929 0.123495 0.105684 -1 -1 -1 -1 30 5287 29 2.178e+06 1.89e+06 350324. 2072.92 1.56 0.531491 0.464742 12006 67531 -1 4334 25 2585 6950 258089 51105 5.34065 5.34065 -1250.43 -5.34065 0 0 430798. 2549.10 0.16 0.25 0.06 -1 -1 0.16 0.149153 0.133591 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 e08b724f058..b09eed101d9 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 6.76 vpr 63.05 MiB 0.04 7136 -1 -1 14 0.26 -1 -1 32900 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 280 312 1 203 90 17 17 289 -1 unnamed_device 24.2 MiB 0.22 1396 5718 1043 4241 434 63.1 MiB 0.09 0.00 8.33526 -166.471 -8.33526 8.33526 0.95 0.00154384 0.001435 0.0482428 0.0448695 28 3586 38 6.55708e+06 313430 500653. 1732.36 2.97 0.290644 0.263386 21310 115450 -1 3058 19 1536 4822 307043 72195 7.53276 7.53276 -163.755 -7.53276 0 0 612192. 2118.31 0.22 0.15 0.16 -1 -1 0.22 0.0606054 0.0551588 186 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 16.80 vpr 62.94 MiB 0.05 6848 -1 -1 14 0.28 -1 -1 32800 -1 -1 30 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64448 30 32 277 309 1 214 92 17 17 289 -1 unnamed_device 24.0 MiB 0.40 1292 9821 2314 6313 1194 62.9 MiB 0.14 0.00 7.97266 -161.847 -7.97266 7.97266 0.95 0.00153217 0.0014241 0.0774486 0.0718962 28 3959 43 6.55708e+06 361650 500653. 1732.36 12.88 0.540127 0.488072 21310 115450 -1 3143 32 1996 6078 475638 149081 7.57758 7.57758 -164.207 -7.57758 0 0 612192. 2118.31 0.18 0.12 0.09 -1 -1 0.18 0.038013 0.0342126 189 189 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 10.52 vpr 62.99 MiB 0.04 7032 -1 -1 11 0.21 -1 -1 32740 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 24.1 MiB 0.32 1387 5633 1032 4013 588 63.0 MiB 0.09 0.00 6.70549 -144.379 -6.70549 6.70549 0.94 0.00152266 0.00141004 0.0475831 0.0442248 36 3713 39 6.55708e+06 301375 612192. 2118.31 6.61 0.414084 0.37392 22750 144809 -1 3104 15 1276 4210 249805 55842 5.90278 5.90278 -139.916 -5.90278 0 0 782063. 2706.10 0.24 0.12 0.21 -1 -1 0.24 0.0494572 0.0451431 180 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 7.08 vpr 63.15 MiB 0.05 6996 -1 -1 12 0.33 -1 -1 32840 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 29 32 269 301 1 203 90 17 17 289 -1 unnamed_device 24.3 MiB 0.34 1235 6522 1332 4656 534 63.1 MiB 0.10 0.00 7.67294 -144.969 -7.67294 7.67294 0.95 0.00153864 0.00143033 0.0543445 0.0505161 34 3670 34 6.55708e+06 349595 585099. 2024.56 3.00 0.346625 0.313843 22462 138074 -1 3164 21 1689 5193 304890 68753 6.96632 6.96632 -142.994 -6.96632 0 0 742403. 2568.87 0.23 0.16 0.20 -1 -1 0.23 0.0655572 0.0596379 185 184 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 6.92 vpr 63.62 MiB 0.04 7044 -1 -1 13 0.31 -1 -1 33020 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65148 32 32 317 349 1 246 95 17 17 289 -1 unnamed_device 24.6 MiB 0.35 1620 8303 2009 5589 705 63.6 MiB 0.13 0.00 7.84931 -165.878 -7.84931 7.84931 0.95 0.00177784 0.00165329 0.0736385 0.0684265 30 4081 45 6.55708e+06 373705 526063. 1820.29 2.66 0.372347 0.33861 21886 126133 -1 3417 31 2192 6994 649153 243609 6.9587 6.9587 -160.39 -6.9587 0 0 666494. 2306.21 0.22 0.32 0.18 -1 -1 0.22 0.106189 0.0966253 224 223 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 7.18 vpr 63.07 MiB 0.05 6968 -1 -1 12 0.27 -1 -1 32852 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 299 331 1 224 95 17 17 289 -1 unnamed_device 24.1 MiB 0.57 1415 13055 3582 8009 1464 63.1 MiB 0.18 0.00 7.00015 -146.985 -7.00015 7.00015 0.97 0.00163652 0.00151807 0.105446 0.0977919 34 3991 40 6.55708e+06 373705 585099. 2024.56 2.84 0.410969 0.373281 22462 138074 -1 3201 16 1453 4561 250317 58217 6.09998 6.09998 -139.546 -6.09998 0 0 742403. 2568.87 0.23 0.13 0.20 -1 -1 0.23 0.056365 0.0514912 206 205 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 10.17 vpr 62.53 MiB 0.03 6808 -1 -1 12 0.18 -1 -1 32420 -1 -1 27 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 27 32 210 242 1 165 86 17 17 289 -1 unnamed_device 23.6 MiB 0.33 974 6890 1587 4820 483 62.5 MiB 0.08 0.00 6.94984 -127.162 -6.94984 6.94984 0.95 0.00145726 0.00135892 0.0459334 0.0426728 26 2854 25 6.55708e+06 325485 477104. 1650.88 6.41 0.343959 0.310465 21022 109990 -1 2549 19 1299 3712 305514 83748 6.49012 6.49012 -129.296 -6.49012 0 0 585099. 2024.56 0.19 0.14 0.15 -1 -1 0.19 0.0454334 0.0412414 137 131 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 5.74 vpr 63.17 MiB 0.05 6884 -1 -1 11 0.20 -1 -1 32660 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 31 32 264 296 1 200 91 17 17 289 -1 unnamed_device 24.3 MiB 0.21 1315 7231 1531 4891 809 63.2 MiB 0.12 0.00 6.53897 -136.036 -6.53897 6.53897 0.92 0.001432 0.00132968 0.0686987 0.0637761 30 3221 27 6.55708e+06 337540 526063. 1820.29 2.00 0.266263 0.24172 21886 126133 -1 2714 16 1147 3840 187272 43051 5.50098 5.50098 -128.943 -5.50098 0 0 666494. 2306.21 0.22 0.11 0.18 -1 -1 0.22 0.050037 0.0456742 175 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 8.90 vpr 62.71 MiB 0.04 6620 -1 -1 12 0.17 -1 -1 32672 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 31 32 234 266 1 190 88 17 17 289 -1 unnamed_device 23.7 MiB 0.30 1115 11203 2815 6442 1946 62.7 MiB 0.14 0.00 6.90263 -147 -6.90263 6.90263 0.97 0.0012612 0.00117023 0.0762973 0.0707539 36 2655 15 6.55708e+06 301375 612192. 2118.31 4.96 0.521233 0.470236 22750 144809 -1 2404 15 948 2492 147743 34318 6.17898 6.17898 -142.164 -6.17898 0 0 782063. 2706.10 0.25 0.09 0.21 -1 -1 0.25 0.0412605 0.0376668 145 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 6.08 vpr 62.80 MiB 0.05 6712 -1 -1 13 0.19 -1 -1 32724 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 32 32 253 285 1 194 89 17 17 289 -1 unnamed_device 23.7 MiB 0.43 1192 15137 4443 8200 2494 62.8 MiB 0.18 0.00 7.39554 -161.911 -7.39554 7.39554 0.95 0.00136352 0.00126633 0.108172 0.100337 30 3232 46 6.55708e+06 301375 526063. 1820.29 2.03 0.338767 0.307654 21886 126133 -1 2512 16 1069 2908 152436 34980 6.42904 6.42904 -155.481 -6.42904 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0463411 0.0421958 162 159 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 5.10 vpr 62.66 MiB 0.04 6772 -1 -1 12 0.17 -1 -1 32704 -1 -1 22 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64164 30 32 217 249 1 169 84 17 17 289 -1 unnamed_device 23.8 MiB 0.34 1009 4842 919 3670 253 62.7 MiB 0.07 0.00 7.00015 -143.218 -7.00015 7.00015 0.96 0.00115876 0.00107517 0.0343581 0.0318348 28 2569 20 6.55708e+06 265210 500653. 1732.36 1.39 0.181041 0.163746 21310 115450 -1 2402 15 949 2345 148723 37256 6.01898 6.01898 -140.306 -6.01898 0 0 612192. 2118.31 0.20 0.09 0.17 -1 -1 0.20 0.0383636 0.0349402 132 129 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 5.81 vpr 62.53 MiB 0.02 6812 -1 -1 12 0.15 -1 -1 32672 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 227 259 1 176 85 17 17 289 -1 unnamed_device 23.7 MiB 0.20 1020 12547 3823 6487 2237 62.5 MiB 0.15 0.00 6.61272 -143.64 -6.61272 6.61272 0.95 0.00117668 0.0010905 0.0830977 0.0769919 34 2847 40 6.55708e+06 253155 585099. 2024.56 2.33 0.307671 0.27869 22462 138074 -1 2226 16 939 2498 138197 32926 5.61918 5.61918 -136.448 -5.61918 0 0 742403. 2568.87 0.23 0.09 0.20 -1 -1 0.23 0.0405611 0.0369262 138 133 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 7.60 vpr 63.12 MiB 0.05 7072 -1 -1 13 0.26 -1 -1 32992 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 306 338 1 236 95 17 17 289 -1 unnamed_device 24.1 MiB 0.37 1509 7439 1652 5093 694 63.1 MiB 0.11 0.00 8.16384 -167.563 -8.16384 8.16384 0.93 0.0016815 0.00158577 0.0633599 0.0588814 28 4102 48 6.55708e+06 373705 500653. 1732.36 3.57 0.36269 0.328431 21310 115450 -1 3511 21 1745 5325 309232 70342 7.0025 7.0025 -161.942 -7.0025 0 0 612192. 2118.31 0.20 0.17 0.17 -1 -1 0.20 0.0722225 0.0657443 212 212 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 6.67 vpr 63.08 MiB 0.04 6892 -1 -1 14 0.31 -1 -1 33328 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 32 32 302 334 1 235 93 17 17 289 -1 unnamed_device 24.1 MiB 0.39 1515 9123 2183 5795 1145 63.1 MiB 0.14 0.00 8.8902 -181.689 -8.8902 8.8902 0.98 0.00166302 0.00154232 0.0779407 0.0723444 30 3813 30 6.55708e+06 349595 526063. 1820.29 2.53 0.322671 0.293566 21886 126133 -1 3212 20 1539 4585 217258 51886 7.7171 7.7171 -169.708 -7.7171 0 0 666494. 2306.21 0.22 0.14 0.18 -1 -1 0.22 0.0695098 0.0633718 208 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 5.46 vpr 62.88 MiB 0.04 6832 -1 -1 11 0.17 -1 -1 32572 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 29 32 238 270 1 186 90 17 17 289 -1 unnamed_device 23.9 MiB 0.21 1080 7125 1641 4792 692 62.9 MiB 0.09 0.00 6.46749 -127.989 -6.46749 6.46749 0.95 0.00125545 0.00116537 0.0484077 0.0449285 28 3059 28 6.55708e+06 349595 500653. 1732.36 1.87 0.22455 0.203386 21310 115450 -1 2622 17 1154 3053 188740 43352 5.60892 5.60892 -125.021 -5.60892 0 0 612192. 2118.31 0.20 0.11 0.16 -1 -1 0.20 0.0452015 0.041132 160 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 7.78 vpr 63.27 MiB 0.04 6936 -1 -1 12 0.27 -1 -1 32896 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64788 32 32 306 338 1 235 98 17 17 289 -1 unnamed_device 24.3 MiB 0.50 1549 8648 1917 6189 542 63.3 MiB 0.13 0.00 7.81486 -160.86 -7.81486 7.81486 0.95 0.0017017 0.00158167 0.0727139 0.06753 34 4317 47 6.55708e+06 409870 585099. 2024.56 3.58 0.436826 0.396611 22462 138074 -1 3488 16 1500 4591 264427 60121 6.6027 6.6027 -153.349 -6.6027 0 0 742403. 2568.87 0.24 0.15 0.20 -1 -1 0.24 0.0619619 0.0568783 213 212 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 5.84 vpr 63.20 MiB 0.05 6744 -1 -1 13 0.26 -1 -1 32808 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 311 343 1 239 96 17 17 289 -1 unnamed_device 24.1 MiB 0.27 1408 11265 2987 6987 1291 63.2 MiB 0.16 0.00 8.0479 -166.811 -8.0479 8.0479 0.95 0.00169157 0.00156895 0.0927604 0.086036 30 3460 21 6.55708e+06 385760 526063. 1820.29 1.84 0.307589 0.279292 21886 126133 -1 2946 16 1333 3878 178193 42730 6.9567 6.9567 -161.012 -6.9567 0 0 666494. 2306.21 0.22 0.12 0.18 -1 -1 0.22 0.0588041 0.05369 217 217 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 5.58 vpr 62.64 MiB 0.03 6904 -1 -1 12 0.15 -1 -1 32548 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 32 32 230 262 1 182 86 17 17 289 -1 unnamed_device 23.7 MiB 0.47 1098 5945 1145 4424 376 62.6 MiB 0.08 0.00 7.5252 -165.404 -7.5252 7.5252 0.95 0.00126531 0.0011757 0.0434442 0.0403499 28 2994 25 6.55708e+06 265210 500653. 1732.36 1.72 0.182717 0.165551 21310 115450 -1 2491 15 1000 2859 179112 40607 6.6393 6.6393 -161.138 -6.6393 0 0 612192. 2118.31 0.20 0.10 0.17 -1 -1 0.20 0.0414935 0.0377819 139 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 10.07 vpr 61.79 MiB 0.04 6448 -1 -1 10 0.10 -1 -1 32184 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63268 30 32 176 208 1 139 82 17 17 289 -1 unnamed_device 23.0 MiB 0.14 786 5244 1130 3909 205 61.8 MiB 0.05 0.00 5.1986 -117.307 -5.1986 5.1986 0.95 0.000615002 0.000566757 0.0211112 0.0194664 28 2255 27 6.55708e+06 241100 500653. 1732.36 6.76 0.264811 0.236384 21310 115450 -1 1986 19 775 1914 127546 29946 4.5908 4.5908 -117.461 -4.5908 0 0 612192. 2118.31 0.20 0.08 0.14 -1 -1 0.20 0.0349713 0.0315576 96 88 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 8.28 vpr 62.54 MiB 0.03 6728 -1 -1 13 0.16 -1 -1 32708 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 31 32 226 258 1 176 87 17 17 289 -1 unnamed_device 23.6 MiB 0.29 1111 8919 2132 5826 961 62.5 MiB 0.11 0.00 7.4032 -157.231 -7.4032 7.4032 0.94 0.00122386 0.00113247 0.0603119 0.0558835 26 3186 36 6.55708e+06 289320 477104. 1650.88 4.56 0.250662 0.227325 21022 109990 -1 2576 24 1090 2786 316796 119199 6.53698 6.53698 -153.821 -6.53698 0 0 585099. 2024.56 0.20 0.17 0.16 -1 -1 0.20 0.0580196 0.0526395 139 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 10.41 vpr 63.24 MiB 0.05 6968 -1 -1 13 0.28 -1 -1 32928 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 302 334 1 228 93 17 17 289 -1 unnamed_device 24.3 MiB 0.27 1380 8913 2232 5739 942 63.2 MiB 0.14 0.00 7.81686 -155.403 -7.81686 7.81686 0.96 0.00165716 0.00154015 0.076748 0.0711987 36 3684 27 6.55708e+06 349595 612192. 2118.31 6.29 0.696957 0.629369 22750 144809 -1 3083 17 1541 4773 241455 57358 6.79164 6.79164 -150.258 -6.79164 0 0 782063. 2706.10 0.24 0.14 0.21 -1 -1 0.24 0.0590383 0.0537315 208 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 12.87 vpr 63.20 MiB 0.04 6976 -1 -1 13 0.28 -1 -1 33208 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 299 331 1 237 98 17 17 289 -1 unnamed_device 24.2 MiB 0.41 1549 7748 1691 5703 354 63.2 MiB 0.11 0.00 7.79063 -163.354 -7.79063 7.79063 0.95 0.00163583 0.00151954 0.0609754 0.056595 38 3911 41 6.55708e+06 409870 638502. 2209.35 8.64 0.787641 0.711967 23326 155178 -1 3294 20 1454 4762 246095 54904 6.7595 6.7595 -153.467 -6.7595 0 0 851065. 2944.86 0.27 0.17 0.23 -1 -1 0.27 0.0768385 0.0704432 207 205 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 4.90 vpr 61.70 MiB 0.04 6704 -1 -1 9 0.09 -1 -1 32144 -1 -1 21 26 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63184 26 32 149 181 1 119 79 17 17 289 -1 unnamed_device 23.1 MiB 0.25 600 8867 2203 6137 527 61.7 MiB 0.08 0.00 4.59771 -89.3905 -4.59771 4.59771 0.95 0.000778756 0.000723526 0.0426342 0.0395106 28 1887 18 6.55708e+06 253155 500653. 1732.36 1.41 0.135914 0.122474 21310 115450 -1 1601 13 634 1606 106280 25324 3.97954 3.97954 -90.4973 -3.97954 0 0 612192. 2118.31 0.20 0.06 0.17 -1 -1 0.20 0.0224764 0.0203315 83 73 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 9.79 vpr 63.21 MiB 0.04 6764 -1 -1 13 0.30 -1 -1 32800 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 304 336 1 228 94 17 17 289 -1 unnamed_device 24.2 MiB 0.20 1450 8188 1784 5725 679 63.2 MiB 0.13 0.00 7.90507 -155.859 -7.90507 7.90507 0.96 0.00165737 0.00154118 0.0689956 0.0640894 38 3525 18 6.55708e+06 361650 638502. 2209.35 5.80 0.664609 0.601118 23326 155178 -1 2844 16 1411 4195 195256 45210 6.93116 6.93116 -146.53 -6.93116 0 0 851065. 2944.86 0.26 0.12 0.23 -1 -1 0.26 0.05683 0.0518892 211 210 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 4.58 vpr 61.77 MiB 0.04 6592 -1 -1 8 0.09 -1 -1 31040 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63256 32 32 155 187 1 113 81 17 17 289 -1 unnamed_device 23.0 MiB 0.17 444 10231 2672 5394 2165 61.8 MiB 0.09 0.00 4.58443 -87.4649 -4.58443 4.58443 0.95 0.000767983 0.000724354 0.0473699 0.0438784 30 1560 21 6.55708e+06 204935 526063. 1820.29 1.18 0.147385 0.132933 21886 126133 -1 1093 15 572 1185 61123 18074 4.08646 4.08646 -90.6103 -4.08646 0 0 666494. 2306.21 0.22 0.05 0.18 -1 -1 0.22 0.0250681 0.0225624 77 61 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 5.25 vpr 62.86 MiB 0.03 7004 -1 -1 15 0.24 -1 -1 33128 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 253 285 1 192 89 17 17 289 -1 unnamed_device 23.9 MiB 0.27 1191 12959 3762 7153 2044 62.9 MiB 0.16 0.00 8.851 -170.456 -8.851 8.851 0.95 0.00141145 0.00131176 0.096108 0.0892526 30 3058 20 6.55708e+06 301375 526063. 1820.29 1.42 0.274066 0.249804 21886 126133 -1 2484 17 1085 3223 162495 37866 7.76915 7.76915 -160.052 -7.76915 0 0 666494. 2306.21 0.22 0.11 0.19 -1 -1 0.22 0.0506171 0.0460686 160 159 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 19.62 vpr 63.21 MiB 0.02 6924 -1 -1 12 0.25 -1 -1 32972 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 309 341 1 232 95 17 17 289 -1 unnamed_device 24.2 MiB 0.27 1527 8303 1758 5555 990 63.2 MiB 0.12 0.00 7.32786 -152.243 -7.32786 7.32786 0.94 0.00169055 0.00155951 0.0696144 0.0645888 30 4202 32 6.55708e+06 373705 526063. 1820.29 15.69 0.616376 0.557777 21886 126133 -1 3420 18 1515 4836 237951 55236 6.58078 6.58078 -146.679 -6.58078 0 0 666494. 2306.21 0.22 0.14 0.18 -1 -1 0.22 0.0639643 0.0583663 218 215 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 9.75 vpr 62.96 MiB 0.04 7032 -1 -1 13 0.27 -1 -1 32732 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64476 32 32 289 321 1 218 92 17 17 289 -1 unnamed_device 24.1 MiB 0.33 1338 13547 3937 7498 2112 63.0 MiB 0.18 0.00 7.41221 -156.076 -7.41221 7.41221 0.95 0.00156816 0.00145635 0.107286 0.0996029 34 3683 24 6.55708e+06 337540 585099. 2024.56 5.60 0.619173 0.560636 22462 138074 -1 3050 22 1798 6051 342055 78711 6.83344 6.83344 -152.339 -6.83344 0 0 742403. 2568.87 0.24 0.18 0.20 -1 -1 0.24 0.0699936 0.0636442 196 195 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 7.42 vpr 62.73 MiB 0.02 6616 -1 -1 12 0.16 -1 -1 32404 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 239 271 1 188 86 17 17 289 -1 unnamed_device 23.6 MiB 0.31 1079 6134 1296 4544 294 62.7 MiB 0.09 0.00 6.41157 -144.86 -6.41157 6.41157 0.95 0.00126752 0.00117571 0.0458969 0.0425019 32 3103 25 6.55708e+06 265210 554710. 1919.41 3.70 0.453643 0.408984 22174 131602 -1 2575 16 1122 2830 178087 42089 5.80812 5.80812 -142.229 -5.80812 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0440189 0.0401486 146 145 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 13.89 vpr 62.51 MiB 0.02 6644 -1 -1 11 0.16 -1 -1 32700 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 30 32 213 245 1 162 85 17 17 289 -1 unnamed_device 23.7 MiB 0.21 981 10687 3354 5227 2106 62.5 MiB 0.12 0.00 6.1536 -130.188 -6.1536 6.1536 0.96 0.00113706 0.00105457 0.0686896 0.0637213 26 3096 40 6.55708e+06 277265 477104. 1650.88 10.27 0.458425 0.412914 21022 109990 -1 2450 22 1171 3141 207315 49021 5.41032 5.41032 -130.097 -5.41032 0 0 585099. 2024.56 0.20 0.12 0.16 -1 -1 0.20 0.05051 0.045709 128 125 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 4.99 vpr 62.70 MiB 0.04 6844 -1 -1 11 0.16 -1 -1 32568 -1 -1 27 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 28 32 221 253 1 183 87 17 17 289 -1 unnamed_device 23.6 MiB 0.26 1116 6615 1427 4569 619 62.7 MiB 0.09 0.00 6.46748 -128.458 -6.46748 6.46748 0.95 0.00121439 0.00112525 0.0465746 0.0430924 30 2774 27 6.55708e+06 325485 526063. 1820.29 1.35 0.212602 0.192666 21886 126133 -1 2342 16 1038 2917 143192 33449 5.71746 5.71746 -124.922 -5.71746 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.042634 0.0388881 142 139 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 11.86 vpr 63.04 MiB 0.02 6856 -1 -1 12 0.19 -1 -1 32500 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 273 305 1 210 92 17 17 289 -1 unnamed_device 24.2 MiB 0.25 1337 7958 1839 5430 689 63.0 MiB 0.11 0.00 7.10257 -160.257 -7.10257 7.10257 0.92 0.00144469 0.00134239 0.0601272 0.0558838 28 3520 41 6.55708e+06 337540 500653. 1732.36 8.02 0.475389 0.42904 21310 115450 -1 3101 34 1414 3817 427357 175411 6.36532 6.36532 -159.422 -6.36532 0 0 612192. 2118.31 0.20 0.24 0.16 -1 -1 0.20 0.0922526 0.0835272 180 179 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 5.24 vpr 62.77 MiB 0.04 6820 -1 -1 11 0.17 -1 -1 32580 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 31 32 238 270 1 182 86 17 17 289 -1 unnamed_device 23.8 MiB 0.22 1155 7646 1807 5307 532 62.8 MiB 0.10 0.00 6.58994 -140.092 -6.58994 6.58994 0.95 0.00129338 0.00120081 0.055447 0.0514489 28 3081 30 6.55708e+06 277265 500653. 1732.36 1.63 0.236868 0.214844 21310 115450 -1 2597 20 1247 3438 191122 44650 6.18238 6.18238 -145.473 -6.18238 0 0 612192. 2118.31 0.20 0.12 0.16 -1 -1 0.20 0.0528504 0.0479873 147 147 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 7.36 vpr 62.46 MiB 0.04 6668 -1 -1 10 0.14 -1 -1 32596 -1 -1 24 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 29 32 221 253 1 165 85 17 17 289 -1 unnamed_device 23.5 MiB 0.24 1047 9943 2574 5558 1811 62.5 MiB 0.12 0.00 6.34628 -126.58 -6.34628 6.34628 0.95 0.00120694 0.00111961 0.0680758 0.0631716 34 2473 17 6.55708e+06 289320 585099. 2024.56 3.60 0.347317 0.314515 22462 138074 -1 2137 15 815 2355 119341 28581 5.34298 5.34298 -117.291 -5.34298 0 0 742403. 2568.87 0.23 0.08 0.20 -1 -1 0.23 0.039704 0.0362113 138 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 8.02 vpr 63.38 MiB 0.03 7168 -1 -1 13 0.32 -1 -1 33188 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 333 365 1 249 97 17 17 289 -1 unnamed_device 24.5 MiB 0.33 1621 5869 1104 4212 553 63.4 MiB 0.10 0.00 7.46683 -155.207 -7.46683 7.46683 0.95 0.00182747 0.00169627 0.0537761 0.0499119 30 3995 44 6.55708e+06 397815 526063. 1820.29 3.91 0.364185 0.330784 21886 126133 -1 3247 17 1408 4754 234861 53197 6.6419 6.6419 -150.395 -6.6419 0 0 666494. 2306.21 0.25 0.14 0.18 -1 -1 0.25 0.0664868 0.0607916 239 239 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 8.88 vpr 63.41 MiB 0.04 6944 -1 -1 13 0.31 -1 -1 33008 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 32 32 297 329 1 228 93 17 17 289 -1 unnamed_device 24.5 MiB 0.37 1398 11643 3043 6787 1813 63.4 MiB 0.17 0.00 7.88716 -168.222 -7.88716 7.88716 0.97 0.00167573 0.00155573 0.0981056 0.0910095 36 3864 21 6.55708e+06 349595 612192. 2118.31 4.65 0.462567 0.419834 22750 144809 -1 3328 17 1508 4913 291910 66422 7.3193 7.3193 -163.753 -7.3193 0 0 782063. 2706.10 0.25 0.15 0.23 -1 -1 0.25 0.0609609 0.0556843 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 5.69 vpr 62.59 MiB 0.04 6812 -1 -1 12 0.15 -1 -1 32716 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64096 31 32 234 266 1 181 88 17 17 289 -1 unnamed_device 23.6 MiB 0.23 1164 9058 2432 5872 754 62.6 MiB 0.11 0.00 6.64691 -142.365 -6.64691 6.64691 0.95 0.00123538 0.00114647 0.0606443 0.0562221 34 2645 21 6.55708e+06 301375 585099. 2024.56 1.93 0.257592 0.233537 22462 138074 -1 2376 16 984 2864 159149 36629 5.98178 5.98178 -138.921 -5.98178 0 0 742403. 2568.87 0.24 0.10 0.20 -1 -1 0.24 0.0422527 0.0384952 150 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 7.39 vpr 63.07 MiB 0.02 6752 -1 -1 12 0.25 -1 -1 33180 -1 -1 34 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 31 32 310 342 1 234 97 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1508 8755 2020 5739 996 63.1 MiB 0.13 0.00 7.97527 -163.603 -7.97527 7.97527 0.94 0.00169853 0.00157842 0.0719113 0.0668318 36 3618 17 6.55708e+06 409870 612192. 2118.31 3.44 0.424221 0.385112 22750 144809 -1 3146 17 1326 3856 218909 50140 7.1573 7.1573 -155.863 -7.1573 0 0 782063. 2706.10 0.25 0.13 0.21 -1 -1 0.25 0.0614217 0.0560897 219 219 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 6.16 vpr 63.25 MiB 0.03 6840 -1 -1 14 0.42 -1 -1 33052 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 31 32 284 316 1 221 91 17 17 289 -1 unnamed_device 24.4 MiB 0.22 1373 7639 1733 4830 1076 63.2 MiB 0.12 0.00 8.2489 -159.291 -8.2489 8.2489 0.94 0.00164998 0.00153484 0.0663378 0.0617006 30 3820 47 6.55708e+06 337540 526063. 1820.29 2.08 0.34758 0.315801 21886 126133 -1 3005 22 1513 4585 215360 51734 7.16956 7.16956 -152.957 -7.16956 0 0 666494. 2306.21 0.22 0.15 0.18 -1 -1 0.22 0.0724003 0.065916 194 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 6.08 vpr 63.00 MiB 0.04 6904 -1 -1 13 0.26 -1 -1 32844 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 31 32 271 303 1 212 91 17 17 289 -1 unnamed_device 24.1 MiB 0.27 1326 8455 1999 5637 819 63.0 MiB 0.13 0.00 7.63835 -158.099 -7.63835 7.63835 0.94 0.0014892 0.00138381 0.0674857 0.0626885 30 3710 50 6.55708e+06 337540 526063. 1820.29 2.14 0.328511 0.297855 21886 126133 -1 3042 20 1429 4011 203673 47955 6.85838 6.85838 -152.522 -6.85838 0 0 666494. 2306.21 0.22 0.13 0.18 -1 -1 0.22 0.0622611 0.0566484 181 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 9.61 vpr 63.08 MiB 0.05 7008 -1 -1 12 0.24 -1 -1 32924 -1 -1 30 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 31 32 280 312 1 211 93 17 17 289 -1 unnamed_device 24.2 MiB 0.58 1314 13533 3823 7424 2286 63.1 MiB 0.18 0.00 6.9636 -142.062 -6.9636 6.9636 0.98 0.00155207 0.00144154 0.104624 0.0969891 42 3493 23 6.55708e+06 361650 701300. 2426.64 5.16 0.566624 0.513456 23902 167433 -1 2873 14 1225 3992 212270 49273 6.19264 6.19264 -136.002 -6.19264 0 0 896083. 3100.63 0.28 0.12 0.25 -1 -1 0.28 0.0483571 0.044188 189 189 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 5.96 vpr 62.82 MiB 0.04 6880 -1 -1 12 0.19 -1 -1 32804 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 264 296 1 194 88 17 17 289 -1 unnamed_device 23.8 MiB 0.30 1236 8473 1937 5465 1071 62.8 MiB 0.12 0.00 7.289 -144.81 -7.289 7.289 0.96 0.00141413 0.00131413 0.0657273 0.061056 30 3229 49 6.55708e+06 289320 526063. 1820.29 2.05 0.311211 0.28179 21886 126133 -1 2470 15 1049 3144 143516 35070 6.1631 6.1631 -138.066 -6.1631 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0456495 0.0416636 172 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 8.08 vpr 63.34 MiB 0.05 7184 -1 -1 14 0.43 -1 -1 32584 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 32 32 339 371 1 259 98 17 17 289 -1 unnamed_device 24.5 MiB 0.32 1704 8873 1951 5982 940 63.3 MiB 0.14 0.00 7.96525 -166.736 -7.96525 7.96525 0.95 0.00190817 0.00177188 0.0807969 0.0751204 38 4005 25 6.55708e+06 409870 638502. 2209.35 3.75 0.503553 0.457849 23326 155178 -1 3482 15 1540 5437 263881 60199 7.1207 7.1207 -159.59 -7.1207 0 0 851065. 2944.86 0.26 0.14 0.23 -1 -1 0.26 0.0626324 0.0574202 245 245 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 8.24 vpr 62.77 MiB 0.03 6740 -1 -1 11 0.19 -1 -1 32536 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 31 32 246 278 1 189 88 17 17 289 -1 unnamed_device 23.7 MiB 0.23 1159 11593 2682 6691 2220 62.8 MiB 0.15 0.00 6.46989 -136.304 -6.46989 6.46989 0.95 0.00136343 0.00126261 0.0867118 0.0804713 36 2943 21 6.55708e+06 301375 612192. 2118.31 4.37 0.502911 0.453928 22750 144809 -1 2650 21 1481 4319 246198 56458 5.85192 5.85192 -133.23 -5.85192 0 0 782063. 2706.10 0.25 0.15 0.21 -1 -1 0.25 0.0626962 0.0569654 160 155 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 6.63 vpr 63.08 MiB 0.03 6876 -1 -1 13 0.27 -1 -1 32756 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 31 32 268 300 1 203 90 17 17 289 -1 unnamed_device 24.2 MiB 0.40 1211 7728 1695 5371 662 63.1 MiB 0.11 0.00 7.98407 -153.841 -7.98407 7.98407 0.96 0.0015263 0.00141721 0.062729 0.0582562 34 3478 22 6.55708e+06 325485 585099. 2024.56 2.52 0.309674 0.280702 22462 138074 -1 2980 19 1378 4398 259694 58628 6.8411 6.8411 -148.878 -6.8411 0 0 742403. 2568.87 0.23 0.14 0.20 -1 -1 0.23 0.0601248 0.0546842 177 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 9.33 vpr 63.13 MiB 0.05 6956 -1 -1 12 0.26 -1 -1 32892 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 318 350 1 231 98 17 17 289 -1 unnamed_device 24.0 MiB 0.32 1486 8873 2152 6049 672 63.1 MiB 0.13 0.00 7.25512 -155.423 -7.25512 7.25512 0.95 0.00173153 0.00160828 0.0732805 0.0680328 36 3699 44 6.55708e+06 409870 612192. 2118.31 5.28 0.618875 0.560191 22750 144809 -1 3253 17 1379 4842 257214 58741 6.42844 6.42844 -148.238 -6.42844 0 0 782063. 2706.10 0.24 0.15 0.16 -1 -1 0.24 0.0635071 0.0579305 227 224 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 8.32 vpr 63.01 MiB 0.09 6768 -1 -1 13 0.24 -1 -1 32792 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 273 305 1 205 92 17 17 289 -1 unnamed_device 24.1 MiB 0.17 1284 9614 2389 6170 1055 63.0 MiB 0.13 0.00 7.57256 -157.801 -7.57256 7.57256 0.96 0.00151388 0.0014074 0.0745374 0.0692079 38 2922 17 6.55708e+06 337540 638502. 2209.35 4.37 0.55355 0.50069 23326 155178 -1 2562 16 1167 3403 165079 38799 6.66944 6.66944 -149.149 -6.66944 0 0 851065. 2944.86 0.25 0.11 0.22 -1 -1 0.25 0.0516754 0.0470345 184 179 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 16.21 vpr 62.90 MiB 0.04 7020 -1 -1 13 0.22 -1 -1 32748 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 269 301 1 198 89 17 17 289 -1 unnamed_device 24.1 MiB 0.25 1228 13553 3512 7868 2173 62.9 MiB 0.17 0.00 7.53 -160.047 -7.53 7.53 0.95 0.00147434 0.00136911 0.105204 0.09756 28 3921 50 6.55708e+06 301375 500653. 1732.36 12.32 0.58507 0.528964 21310 115450 -1 3031 16 1247 3778 246097 55219 6.4433 6.4433 -152.511 -6.4433 0 0 612192. 2118.31 0.20 0.13 0.16 -1 -1 0.20 0.0509889 0.0464575 175 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 10.12 vpr 63.03 MiB 0.04 6832 -1 -1 12 0.27 -1 -1 32976 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 298 330 1 223 95 17 17 289 -1 unnamed_device 24.1 MiB 0.65 1387 8087 1679 5459 949 63.0 MiB 0.12 0.00 7.05212 -153.477 -7.05212 7.05212 0.95 0.001671 0.00155255 0.0667125 0.0618854 38 3330 29 6.55708e+06 373705 638502. 2209.35 5.71 0.650152 0.588265 23326 155178 -1 2778 17 1170 4188 200903 45709 6.17638 6.17638 -144.389 -6.17638 0 0 851065. 2944.86 0.26 0.13 0.23 -1 -1 0.26 0.0604617 0.0552474 205 204 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 9.07 vpr 63.09 MiB 0.05 6844 -1 -1 13 0.29 -1 -1 32736 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 299 331 1 235 93 17 17 289 -1 unnamed_device 24.1 MiB 0.37 1581 12693 3407 7880 1406 63.1 MiB 0.18 0.00 7.78084 -157.592 -7.78084 7.78084 0.96 0.00167106 0.00154264 0.104883 0.0973361 38 3610 20 6.55708e+06 349595 638502. 2209.35 4.80 0.548043 0.496985 23326 155178 -1 2921 18 1276 4009 184583 42930 6.8425 6.8425 -146.405 -6.8425 0 0 851065. 2944.86 0.26 0.13 0.23 -1 -1 0.26 0.062695 0.0572233 205 205 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 7.10 vpr 62.76 MiB 0.04 6852 -1 -1 14 0.26 -1 -1 33000 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 259 291 1 193 89 17 17 289 -1 unnamed_device 23.7 MiB 0.38 1187 11177 2647 6549 1981 62.8 MiB 0.15 0.00 8.02137 -164.712 -8.02137 8.02137 0.95 0.00144388 0.00134099 0.0859026 0.0795803 28 3659 45 6.55708e+06 301375 500653. 1732.36 3.08 0.333721 0.302853 21310 115450 -1 2983 15 1236 3724 230504 53035 6.9567 6.9567 -160.853 -6.9567 0 0 612192. 2118.31 0.20 0.12 0.16 -1 -1 0.20 0.0477845 0.0436375 167 165 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 6.72 vpr 63.04 MiB 0.05 7020 -1 -1 13 0.27 -1 -1 32816 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 293 325 1 227 95 17 17 289 -1 unnamed_device 24.0 MiB 0.66 1504 7655 1499 5468 688 63.0 MiB 0.11 0.00 8.25451 -166.221 -8.25451 8.25451 0.95 0.00151801 0.00140629 0.0604948 0.056183 30 3699 49 6.55708e+06 373705 526063. 1820.29 2.48 0.336049 0.30448 21886 126133 -1 3038 16 1333 3742 175416 41924 7.16956 7.16956 -159.251 -7.16956 0 0 666494. 2306.21 0.22 0.12 0.18 -1 -1 0.22 0.055921 0.0510427 200 199 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 22.40 vpr 63.12 MiB 0.05 6912 -1 -1 13 0.28 -1 -1 33116 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 31 32 311 343 1 231 95 17 17 289 -1 unnamed_device 24.1 MiB 0.22 1458 8735 2070 5739 926 63.1 MiB 0.13 0.00 8.65471 -176.171 -8.65471 8.65471 0.95 0.00173679 0.00161499 0.0749062 0.0695904 28 4844 41 6.55708e+06 385760 500653. 1732.36 18.45 0.577483 0.522723 21310 115450 -1 3656 20 1666 5121 338552 78385 7.7589 7.7589 -175.031 -7.7589 0 0 612192. 2118.31 0.20 0.17 0.17 -1 -1 0.20 0.070351 0.0640115 221 220 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 9.58 vpr 63.21 MiB 0.03 6776 -1 -1 12 0.30 -1 -1 32804 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 324 356 1 240 96 17 17 289 -1 unnamed_device 24.4 MiB 0.42 1609 8856 1924 5931 1001 63.2 MiB 0.13 0.00 7.61091 -162.114 -7.61091 7.61091 0.96 0.00174354 0.00161961 0.0755511 0.0701141 36 4033 24 6.55708e+06 385760 612192. 2118.31 5.24 0.467139 0.424095 22750 144809 -1 3451 22 1646 5368 281184 65071 6.79164 6.79164 -156.467 -6.79164 0 0 782063. 2706.10 0.27 0.12 0.21 -1 -1 0.27 0.0605571 0.0551427 231 230 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 4.75 vpr 62.61 MiB 0.03 6764 -1 -1 11 0.13 -1 -1 32428 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 216 248 1 165 83 17 17 289 -1 unnamed_device 23.8 MiB 0.18 1046 10163 2458 6316 1389 62.6 MiB 0.12 0.00 6.00396 -136.473 -6.00396 6.00396 0.95 0.00114054 0.00105812 0.0677917 0.0627978 30 2449 18 6.55708e+06 229045 526063. 1820.29 1.16 0.206402 0.187448 21886 126133 -1 2008 15 883 2282 116446 27644 5.27786 5.27786 -131.853 -5.27786 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0368693 0.0335432 127 122 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 6.35 vpr 62.76 MiB 0.04 6672 -1 -1 13 0.19 -1 -1 32736 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 245 277 1 195 91 17 17 289 -1 unnamed_device 23.7 MiB 0.44 1206 9883 2182 6350 1351 62.8 MiB 0.12 0.00 7.53281 -161.158 -7.53281 7.53281 0.96 0.00135135 0.00125494 0.0691654 0.0641913 28 3798 47 6.55708e+06 325485 500653. 1732.36 2.36 0.300362 0.272185 21310 115450 -1 2944 25 1270 3615 293517 95594 6.50544 6.50544 -154.919 -6.50544 0 0 612192. 2118.31 0.20 0.17 0.16 -1 -1 0.20 0.0665117 0.060319 156 151 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 6.68 vpr 63.14 MiB 0.05 6920 -1 -1 14 0.43 -1 -1 32924 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 361 393 1 263 100 17 17 289 -1 unnamed_device 24.4 MiB 0.35 1797 7524 1541 5344 639 63.1 MiB 0.13 0.00 8.65712 -179.7 -8.65712 8.65712 0.95 0.00201534 0.00187261 0.0711289 0.0660232 30 4366 36 6.55708e+06 433980 526063. 1820.29 2.43 0.324074 0.294705 21886 126133 -1 3740 18 1779 5490 277904 63610 7.52556 7.52556 -170.919 -7.52556 0 0 666494. 2306.21 0.21 0.17 0.18 -1 -1 0.21 0.076379 0.0699511 267 267 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 8.51 vpr 63.24 MiB 0.05 6964 -1 -1 13 0.32 -1 -1 32812 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 318 350 1 242 95 17 17 289 -1 unnamed_device 24.2 MiB 0.54 1473 7655 1759 5455 441 63.2 MiB 0.12 0.00 7.66968 -164.394 -7.66968 7.66968 0.94 0.00178929 0.00166268 0.0695253 0.0645572 28 4111 34 6.55708e+06 373705 500653. 1732.36 4.19 0.610276 0.552609 21310 115450 -1 3579 17 1652 4802 271564 62897 7.2429 7.2429 -166.589 -7.2429 0 0 612192. 2118.31 0.20 0.15 0.16 -1 -1 0.20 0.0653876 0.0597668 224 224 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 6.63 vpr 62.54 MiB 0.03 6772 -1 -1 11 0.17 -1 -1 32660 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 30 32 223 255 1 165 85 17 17 289 -1 unnamed_device 23.7 MiB 0.19 946 11059 3375 5324 2360 62.5 MiB 0.13 0.00 6.71515 -135.35 -6.71515 6.71515 0.96 0.00121409 0.00111772 0.0752408 0.0696695 36 2340 18 6.55708e+06 277265 612192. 2118.31 2.86 0.310027 0.280799 22750 144809 -1 2002 16 838 2577 137491 32192 5.57938 5.57938 -124.238 -5.57938 0 0 782063. 2706.10 0.24 0.09 0.22 -1 -1 0.24 0.0415432 0.0378631 137 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 11.14 vpr 63.51 MiB 0.05 7004 -1 -1 15 0.49 -1 -1 32892 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65032 32 32 335 367 1 253 97 17 17 289 -1 unnamed_device 24.6 MiB 0.37 1686 6757 1379 4893 485 63.5 MiB 0.12 0.00 8.78929 -181.271 -8.78929 8.78929 0.95 0.00191657 0.0017822 0.0659229 0.0612567 36 4573 34 6.55708e+06 397815 612192. 2118.31 6.71 0.520969 0.473848 22750 144809 -1 3944 22 2118 6909 393443 86671 7.83529 7.83529 -174.408 -7.83529 0 0 782063. 2706.10 0.25 0.20 0.21 -1 -1 0.25 0.0852297 0.0777818 241 241 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 6.82 vpr 63.30 MiB 0.04 6940 -1 -1 13 0.31 -1 -1 33292 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 301 333 1 226 93 17 17 289 -1 unnamed_device 24.4 MiB 0.45 1481 8703 2085 5407 1211 63.3 MiB 0.13 0.00 7.77001 -158.574 -7.77001 7.77001 0.95 0.00167242 0.00155455 0.0736658 0.0684138 36 3749 27 6.55708e+06 349595 612192. 2118.31 2.59 0.382859 0.347408 22750 144809 -1 3294 17 1531 4414 238754 54720 6.7621 6.7621 -154.225 -6.7621 0 0 782063. 2706.10 0.24 0.14 0.21 -1 -1 0.24 0.0606827 0.0554267 207 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 7.33 vpr 62.61 MiB 0.04 6792 -1 -1 11 0.13 -1 -1 32664 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 238 270 1 183 88 17 17 289 -1 unnamed_device 23.6 MiB 0.28 1208 6133 1399 4430 304 62.6 MiB 0.08 0.00 6.57317 -137.784 -6.57317 6.57317 0.95 0.00120736 0.00112012 0.0425261 0.0394483 28 3413 43 6.55708e+06 289320 500653. 1732.36 3.60 0.243957 0.22055 21310 115450 -1 2788 17 1118 3272 212238 47145 5.73878 5.73878 -135.519 -5.73878 0 0 612192. 2118.31 0.20 0.13 0.16 -1 -1 0.20 0.0459819 0.0419778 149 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 9.75 vpr 63.08 MiB 0.05 7004 -1 -1 12 0.32 -1 -1 32996 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 32 32 308 340 1 230 95 17 17 289 -1 unnamed_device 24.0 MiB 0.39 1499 9599 2367 6512 720 63.1 MiB 0.14 0.00 7.23264 -149.423 -7.23264 7.23264 0.95 0.00169766 0.00157638 0.0806288 0.0748364 34 4017 46 6.55708e+06 373705 585099. 2024.56 5.50 0.523889 0.475104 22462 138074 -1 3307 21 1759 6103 368699 80488 6.51604 6.51604 -146.095 -6.51604 0 0 742403. 2568.87 0.23 0.18 0.20 -1 -1 0.23 0.0728382 0.0663412 217 214 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 5.61 vpr 62.81 MiB 0.03 6612 -1 -1 12 0.20 -1 -1 32420 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 253 285 1 191 90 17 17 289 -1 unnamed_device 23.8 MiB 0.28 1248 7728 1690 5460 578 62.8 MiB 0.13 0.00 7.1989 -153.033 -7.1989 7.1989 0.96 0.00141359 0.00130413 0.0632737 0.0590144 30 3134 49 6.55708e+06 313430 526063. 1820.29 1.75 0.308132 0.279726 21886 126133 -1 2563 17 1081 3064 146985 34708 6.43104 6.43104 -147.474 -6.43104 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0498208 0.0454206 164 159 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 6.88 vpr 62.34 MiB 0.05 6608 -1 -1 12 0.18 -1 -1 32792 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63840 30 32 227 259 1 161 83 17 17 289 -1 unnamed_device 23.5 MiB 0.20 938 8723 2063 5985 675 62.3 MiB 0.11 0.00 7.11774 -140.467 -7.11774 7.11774 0.95 0.0013401 0.00122299 0.0659766 0.0613372 26 2517 46 6.55708e+06 253155 477104. 1650.88 3.28 0.442399 0.399561 21022 109990 -1 2200 18 1116 3199 195255 44665 6.94538 6.94538 -144.488 -6.94538 0 0 585099. 2024.56 0.19 0.11 0.16 -1 -1 0.19 0.0470829 0.0427641 139 139 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 7.02 vpr 62.98 MiB 0.05 6816 -1 -1 12 0.30 -1 -1 32840 -1 -1 32 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 29 32 292 324 1 222 93 17 17 289 -1 unnamed_device 24.0 MiB 0.32 1365 11223 2755 7251 1217 63.0 MiB 0.15 0.00 7.16655 -136.833 -7.16655 7.16655 0.95 0.0011409 0.00105316 0.0903084 0.0838676 30 3500 43 6.55708e+06 385760 526063. 1820.29 2.85 0.375289 0.342026 21886 126133 -1 2824 31 1256 4080 399257 177058 6.15344 6.15344 -129.211 -6.15344 0 0 666494. 2306.21 0.22 0.24 0.18 -1 -1 0.22 0.0977665 0.0888834 208 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 6.56 vpr 63.24 MiB 0.05 6820 -1 -1 14 0.31 -1 -1 33004 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 316 348 1 256 97 17 17 289 -1 unnamed_device 24.1 MiB 0.48 1609 7201 1540 4649 1012 63.2 MiB 0.12 0.00 8.6494 -177.704 -8.6494 8.6494 0.95 0.00176795 0.00164316 0.0625629 0.0581125 30 4364 32 6.55708e+06 397815 526063. 1820.29 2.30 0.320709 0.291233 21886 126133 -1 3490 17 1741 4865 241957 57163 7.53016 7.53016 -172.763 -7.53016 0 0 666494. 2306.21 0.22 0.14 0.18 -1 -1 0.22 0.0644069 0.0588701 227 222 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 8.10 vpr 63.05 MiB 0.04 6996 -1 -1 12 0.23 -1 -1 32732 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 286 318 1 212 91 17 17 289 -1 unnamed_device 24.0 MiB 0.34 1316 5191 916 3744 531 63.1 MiB 0.08 0.00 7.48095 -154.676 -7.48095 7.48095 0.98 0.00158783 0.0014767 0.045014 0.0418448 30 3407 21 6.55708e+06 325485 526063. 1820.29 4.15 0.516823 0.466894 21886 126133 -1 2785 18 1250 3607 178365 41568 6.49978 6.49978 -146.95 -6.49978 0 0 666494. 2306.21 0.22 0.12 0.18 -1 -1 0.22 0.0601863 0.0549273 192 192 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 8.30 vpr 62.40 MiB 0.03 6732 -1 -1 12 0.15 -1 -1 32704 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63900 32 32 221 253 1 166 84 17 17 289 -1 unnamed_device 23.6 MiB 0.41 1079 8319 2120 5072 1127 62.4 MiB 0.10 0.00 6.61712 -135.685 -6.61712 6.61712 0.95 0.00116171 0.00107723 0.0561271 0.0520835 34 2602 39 6.55708e+06 241100 585099. 2024.56 4.39 0.455131 0.410239 22462 138074 -1 2380 17 949 2824 171044 38689 5.70218 5.70218 -132.167 -5.70218 0 0 742403. 2568.87 0.23 0.10 0.20 -1 -1 0.23 0.0417667 0.038037 133 127 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 8.58 vpr 62.92 MiB 0.04 6700 -1 -1 12 0.21 -1 -1 32448 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 31 32 261 293 1 199 88 17 17 289 -1 unnamed_device 23.9 MiB 0.23 1062 10033 2618 5721 1694 62.9 MiB 0.13 0.00 7.10067 -138.704 -7.10067 7.10067 0.95 0.00140065 0.00130074 0.0760206 0.0706096 32 3434 37 6.55708e+06 301375 554710. 1919.41 4.71 0.573558 0.51708 22174 131602 -1 2817 22 1474 4273 308407 74038 6.22218 6.22218 -143.685 -6.22218 0 0 701300. 2426.64 0.23 0.16 0.19 -1 -1 0.23 0.0621459 0.0563433 170 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 10.00 vpr 62.98 MiB 0.02 6944 -1 -1 11 0.19 -1 -1 32736 -1 -1 28 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 30 32 277 309 1 209 90 17 17 289 -1 unnamed_device 24.1 MiB 0.20 1179 9738 2219 6538 981 63.0 MiB 0.13 0.00 6.32486 -129.246 -6.32486 6.32486 0.96 0.00149604 0.0013896 0.0768774 0.0713672 34 3244 21 6.55708e+06 337540 585099. 2024.56 6.20 0.613244 0.55375 22462 138074 -1 2853 20 1447 5181 293944 65423 5.53252 5.53252 -126.098 -5.53252 0 0 742403. 2568.87 0.23 0.15 0.20 -1 -1 0.23 0.0617485 0.0561299 189 189 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 6.55 vpr 62.79 MiB 0.05 7032 -1 -1 11 0.20 -1 -1 32704 -1 -1 28 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 28 32 251 283 1 194 88 17 17 289 -1 unnamed_device 23.7 MiB 0.29 1237 8473 1921 5502 1050 62.8 MiB 0.11 0.00 6.63254 -118.16 -6.63254 6.63254 0.96 0.00141919 0.00130751 0.0645718 0.0598803 36 3080 30 6.55708e+06 337540 612192. 2118.31 2.63 0.321097 0.291013 22750 144809 -1 2724 17 1076 3477 195685 43647 5.98178 5.98178 -116.257 -5.98178 0 0 782063. 2706.10 0.25 0.11 0.21 -1 -1 0.25 0.0513956 0.0468765 171 169 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 7.73 vpr 62.67 MiB 0.04 6700 -1 -1 13 0.18 -1 -1 32644 -1 -1 25 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 30 32 223 255 1 182 87 17 17 289 -1 unnamed_device 23.8 MiB 0.50 1025 6039 1172 4360 507 62.7 MiB 0.08 0.00 7.83235 -153.18 -7.83235 7.83235 0.95 0.00120973 0.00112398 0.04171 0.0387129 28 2871 19 6.55708e+06 301375 500653. 1732.36 3.82 0.329341 0.297051 21310 115450 -1 2412 15 953 2504 143229 34232 6.90264 6.90264 -148.197 -6.90264 0 0 612192. 2118.31 0.20 0.09 0.16 -1 -1 0.20 0.0396585 0.0361802 142 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 12.37 vpr 62.84 MiB 0.03 6824 -1 -1 12 0.19 -1 -1 32536 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 269 301 1 210 89 17 17 289 -1 unnamed_device 23.8 MiB 0.30 1211 13553 3317 7968 2268 62.8 MiB 0.18 0.00 7.40035 -154.861 -7.40035 7.40035 0.95 0.00148285 0.00137396 0.10546 0.0978295 28 3579 37 6.55708e+06 301375 500653. 1732.36 8.49 0.532769 0.48252 21310 115450 -1 2855 18 1263 3435 198881 47653 6.46824 6.46824 -153.076 -6.46824 0 0 612192. 2118.31 0.20 0.12 0.17 -1 -1 0.20 0.0553553 0.0504066 180 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 16.24 vpr 63.03 MiB 0.04 6984 -1 -1 13 0.28 -1 -1 32892 -1 -1 30 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 31 32 283 315 1 212 93 17 17 289 -1 unnamed_device 24.1 MiB 0.32 1191 15633 5095 8093 2445 63.0 MiB 0.20 0.00 7.78778 -150.869 -7.78778 7.78778 0.95 0.00157591 0.00146487 0.121694 0.113074 30 3592 25 6.55708e+06 361650 526063. 1820.29 12.18 0.608497 0.551836 21886 126133 -1 2564 16 1316 3784 173970 42821 6.9215 6.9215 -144.12 -6.9215 0 0 666494. 2306.21 0.22 0.11 0.18 -1 -1 0.22 0.0540557 0.0493378 195 192 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 10.37 vpr 63.23 MiB 0.05 7096 -1 -1 14 0.28 -1 -1 32744 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 308 340 1 227 95 17 17 289 -1 unnamed_device 24.2 MiB 0.33 1522 7223 1481 5175 567 63.2 MiB 0.11 0.00 8.11686 -165.797 -8.11686 8.11686 0.95 0.00171698 0.00159553 0.0623058 0.0578408 28 3738 20 6.55708e+06 373705 500653. 1732.36 6.37 0.492726 0.446676 21310 115450 -1 3258 15 1379 4186 235584 54635 7.4003 7.4003 -162.249 -7.4003 0 0 612192. 2118.31 0.20 0.13 0.17 -1 -1 0.20 0.0568029 0.0519501 215 214 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 9.09 vpr 63.16 MiB 0.05 6768 -1 -1 14 0.26 -1 -1 32816 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 277 309 1 210 91 17 17 289 -1 unnamed_device 24.3 MiB 0.38 1333 7027 1488 5239 300 63.2 MiB 0.11 0.00 7.98407 -153.871 -7.98407 7.98407 0.97 0.0015563 0.00144609 0.0589739 0.0547604 44 3058 20 6.55708e+06 325485 742403. 2568.87 4.87 0.519308 0.469808 24478 177802 -1 2551 15 1114 3688 178580 41846 7.0815 7.0815 -141.291 -7.0815 0 0 937218. 3242.97 0.29 0.11 0.27 -1 -1 0.29 0.0518907 0.0473799 183 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 7.42 vpr 62.89 MiB 0.02 6844 -1 -1 13 0.34 -1 -1 33284 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 288 320 1 218 91 17 17 289 -1 unnamed_device 23.9 MiB 0.32 1405 6823 1465 4810 548 62.9 MiB 0.11 0.00 8.04044 -163.796 -8.04044 8.04044 0.95 0.00162326 0.00150878 0.0592226 0.0550351 36 3416 21 6.55708e+06 325485 612192. 2118.31 3.43 0.408217 0.369957 22750 144809 -1 2997 19 1361 4092 217666 50617 7.1991 7.1991 -157.892 -7.1991 0 0 782063. 2706.10 0.25 0.13 0.21 -1 -1 0.25 0.0629673 0.0574839 195 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 9.66 vpr 62.94 MiB 0.03 6584 -1 -1 13 0.20 -1 -1 32660 -1 -1 24 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64448 30 32 230 262 1 183 86 17 17 289 -1 unnamed_device 23.9 MiB 0.26 1136 10859 2622 6566 1671 62.9 MiB 0.13 0.00 7.73016 -155.181 -7.73016 7.73016 0.96 0.00125528 0.00116571 0.0757679 0.0703303 28 2895 16 6.55708e+06 289320 500653. 1732.36 5.89 0.423413 0.382832 21310 115450 -1 2554 18 1134 2860 167778 39963 6.6399 6.6399 -148.575 -6.6399 0 0 612192. 2118.31 0.20 0.11 0.16 -1 -1 0.20 0.0472239 0.042953 146 142 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 11.07 vpr 63.24 MiB 0.04 6768 -1 -1 13 0.43 -1 -1 32760 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 30 32 294 326 1 231 93 17 17 289 -1 unnamed_device 24.3 MiB 0.28 1345 14163 3644 7776 2743 63.2 MiB 0.20 0.00 8.02437 -159.192 -8.02437 8.02437 0.94 0.00167132 0.00155297 0.117879 0.109511 38 3589 27 6.55708e+06 373705 638502. 2209.35 6.74 0.77362 0.700874 23326 155178 -1 2798 25 1694 5348 319509 92203 7.21136 7.21136 -152.328 -7.21136 0 0 851065. 2944.86 0.26 0.19 0.23 -1 -1 0.26 0.0821109 0.0747118 208 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 11.16 vpr 62.94 MiB 0.05 6916 -1 -1 14 0.28 -1 -1 31560 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 276 308 1 206 94 17 17 289 -1 unnamed_device 24.0 MiB 0.30 1329 7549 1640 5431 478 62.9 MiB 0.11 0.00 7.66053 -161.128 -7.66053 7.66053 0.95 0.00155229 0.00144245 0.0594499 0.0551287 36 3204 19 6.55708e+06 361650 612192. 2118.31 7.12 0.627832 0.567243 22750 144809 -1 2881 15 1290 4403 243877 54542 6.73358 6.73358 -152.324 -6.73358 0 0 782063. 2706.10 0.24 0.13 0.23 -1 -1 0.24 0.0511216 0.0466635 184 182 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 8.44 vpr 63.20 MiB 0.05 7068 -1 -1 12 0.24 -1 -1 32972 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 31 32 293 325 1 226 94 17 17 289 -1 unnamed_device 24.2 MiB 0.20 1376 5632 1003 4241 388 63.2 MiB 0.09 0.00 8.15384 -157.78 -8.15384 8.15384 0.95 0.00160812 0.00149454 0.048832 0.0453654 36 3335 28 6.55708e+06 373705 612192. 2118.31 4.61 0.494656 0.447264 22750 144809 -1 2873 15 1273 3752 198861 46093 6.9979 6.9979 -145.643 -6.9979 0 0 782063. 2706.10 0.24 0.12 0.21 -1 -1 0.24 0.0524608 0.0479549 203 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 5.88 vpr 63.04 MiB 0.05 7044 -1 -1 13 0.24 -1 -1 32744 -1 -1 28 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 30 32 273 305 1 212 90 17 17 289 -1 unnamed_device 24.2 MiB 0.25 1337 13557 3204 8755 1598 63.0 MiB 0.18 0.00 7.63303 -140.337 -7.63303 7.63303 0.95 0.00149507 0.00138919 0.10523 0.0976738 30 3338 27 6.55708e+06 337540 526063. 1820.29 1.94 0.312423 0.28445 21886 126133 -1 2844 17 1293 3697 192727 44933 6.47284 6.47284 -135.617 -6.47284 0 0 666494. 2306.21 0.22 0.12 0.18 -1 -1 0.22 0.0539154 0.0491184 186 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 9.56 vpr 63.50 MiB 0.04 6868 -1 -1 14 0.34 -1 -1 33056 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 310 342 1 239 96 17 17 289 -1 unnamed_device 24.5 MiB 0.61 1453 7104 1305 5544 255 63.5 MiB 0.11 0.00 8.90186 -170.541 -8.90186 8.90186 0.97 0.00172829 0.00160628 0.0610316 0.0567485 44 3396 16 6.55708e+06 385760 742403. 2568.87 4.99 0.572613 0.51885 24478 177802 -1 2895 16 1314 4025 186348 44498 7.69982 7.69982 -160.441 -7.69982 0 0 937218. 3242.97 0.29 0.12 0.27 -1 -1 0.29 0.0599834 0.0549012 220 216 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 5.72 vpr 62.84 MiB 0.05 6892 -1 -1 11 0.28 -1 -1 32856 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 29 32 259 291 1 190 90 17 17 289 -1 unnamed_device 23.8 MiB 0.33 1157 6924 1532 4775 617 62.8 MiB 0.10 0.00 6.93657 -131.54 -6.93657 6.93657 0.95 0.001478 0.00136422 0.0547995 0.0508646 28 3052 23 6.55708e+06 349595 500653. 1732.36 1.84 0.250346 0.22729 21310 115450 -1 2806 18 1205 4003 236177 53217 6.11164 6.11164 -127.615 -6.11164 0 0 612192. 2118.31 0.21 0.09 0.16 -1 -1 0.21 0.0337826 0.0307752 174 174 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 6.16 vpr 62.58 MiB 0.02 6608 -1 -1 13 0.16 -1 -1 32640 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64084 32 32 225 257 1 185 87 17 17 289 -1 unnamed_device 23.7 MiB 0.31 1099 6807 1492 4622 693 62.6 MiB 0.09 0.00 7.61867 -163.8 -7.61867 7.61867 0.95 0.00122607 0.00113855 0.0468275 0.0434035 26 3107 21 6.55708e+06 277265 477104. 1650.88 2.42 0.206707 0.187446 21022 109990 -1 2633 33 1220 3078 264583 87643 6.46824 6.46824 -155.84 -6.46824 0 0 585099. 2024.56 0.19 0.17 0.16 -1 -1 0.19 0.0760758 0.0687813 142 131 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 6.97 vpr 63.06 MiB 0.04 6836 -1 -1 14 0.24 -1 -1 32788 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 273 305 1 209 91 17 17 289 -1 unnamed_device 24.2 MiB 0.24 1349 5803 1181 3934 688 63.1 MiB 0.09 0.00 8.14347 -163.597 -8.14347 8.14347 0.95 0.0014906 0.00138465 0.0468478 0.0435536 28 3894 26 6.55708e+06 325485 500653. 1732.36 3.25 0.260526 0.236768 21310 115450 -1 3185 26 1363 3755 325317 104874 7.17216 7.17216 -157.98 -7.17216 0 0 612192. 2118.31 0.20 0.18 0.09 -1 -1 0.20 0.076684 0.0696407 183 179 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 11.31 vpr 63.17 MiB 0.05 6816 -1 -1 15 0.36 -1 -1 33392 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 322 354 1 251 96 17 17 289 -1 unnamed_device 24.1 MiB 0.63 1653 6666 1327 4767 572 63.2 MiB 0.11 0.00 9.56735 -197.421 -9.56735 9.56735 0.94 0.00177146 0.00164082 0.0589618 0.0547736 36 4018 18 6.55708e+06 385760 612192. 2118.31 6.84 0.710776 0.643904 22750 144809 -1 3351 15 1442 4222 215609 49978 8.17401 8.17401 -180.437 -8.17401 0 0 782063. 2706.10 0.25 0.13 0.21 -1 -1 0.25 0.0585154 0.0536068 228 228 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 8.77 vpr 62.40 MiB 0.04 6840 -1 -1 11 0.16 -1 -1 32448 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63896 32 32 218 250 1 164 86 17 17 289 -1 unnamed_device 23.6 MiB 0.54 1095 7835 2015 4854 966 62.4 MiB 0.09 0.00 6.79369 -139.331 -6.79369 6.79369 0.95 0.00114436 0.00106037 0.0508107 0.0470514 30 2671 23 6.55708e+06 265210 526063. 1820.29 4.76 0.399006 0.359439 21886 126133 -1 2260 13 822 2344 126396 29066 6.03324 6.03324 -135.276 -6.03324 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0339073 0.030951 126 124 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 7.45 vpr 62.78 MiB 0.04 6736 -1 -1 12 0.19 -1 -1 32496 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 31 32 244 276 1 192 89 17 17 289 -1 unnamed_device 23.8 MiB 0.38 1142 12761 3209 8075 1477 62.8 MiB 0.16 0.00 7.38518 -156.247 -7.38518 7.38518 1.00 0.00134235 0.00124727 0.0904768 0.0839857 32 3099 50 6.55708e+06 313430 554710. 1919.41 3.32 0.512524 0.463299 22174 131602 -1 2861 28 1462 4594 422530 151011 7.07124 7.07124 -157.198 -7.07124 0 0 701300. 2426.64 0.22 0.21 0.19 -1 -1 0.22 0.07343 0.0665791 157 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 8.44 vpr 63.12 MiB 0.03 6924 -1 -1 12 0.30 -1 -1 33088 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 301 333 1 232 96 17 17 289 -1 unnamed_device 24.1 MiB 0.36 1401 10827 2800 6524 1503 63.1 MiB 0.17 0.00 7.63524 -167.112 -7.63524 7.63524 0.95 0.00169241 0.00156848 0.0953739 0.0882321 34 4044 25 6.55708e+06 385760 585099. 2024.56 4.30 0.609756 0.551963 22462 138074 -1 3392 17 1555 4551 261942 60338 6.9215 6.9215 -163.459 -6.9215 0 0 742403. 2568.87 0.24 0.14 0.20 -1 -1 0.24 0.0618818 0.0564935 209 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 6.65 vpr 62.95 MiB 0.05 7112 -1 -1 12 0.24 -1 -1 32960 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 278 310 1 215 92 17 17 289 -1 unnamed_device 24.0 MiB 0.43 1413 11063 2862 6898 1303 62.9 MiB 0.15 0.00 7.56535 -160.035 -7.56535 7.56535 0.94 0.00152999 0.00142017 0.085684 0.0795372 30 3743 28 6.55708e+06 337540 526063. 1820.29 2.53 0.301059 0.273779 21886 126133 -1 3028 17 1348 4224 217211 49859 6.47024 6.47024 -151.298 -6.47024 0 0 666494. 2306.21 0.22 0.13 0.18 -1 -1 0.22 0.0547878 0.0498694 186 184 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 7.15 vpr 63.43 MiB 0.04 6908 -1 -1 14 0.42 -1 -1 33312 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 333 365 1 247 99 17 17 289 -1 unnamed_device 24.6 MiB 0.24 1571 16287 4218 9846 2223 63.4 MiB 0.23 0.00 8.43809 -174.225 -8.43809 8.43809 0.97 0.00188721 0.00175269 0.139448 0.129395 36 4152 20 6.55708e+06 421925 612192. 2118.31 2.82 0.437374 0.399275 22750 144809 -1 3500 17 1775 5455 309193 70495 7.53276 7.53276 -167.242 -7.53276 0 0 782063. 2706.10 0.24 0.16 0.23 -1 -1 0.24 0.0683161 0.0624824 241 239 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 15.81 vpr 62.89 MiB 0.04 7032 -1 -1 11 0.23 -1 -1 32660 -1 -1 27 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 30 32 261 293 1 202 89 17 17 289 -1 unnamed_device 23.8 MiB 0.42 1258 9791 2659 6167 965 62.9 MiB 0.13 0.00 6.70478 -131.306 -6.70478 6.70478 0.95 0.00147985 0.00136482 0.076637 0.0711679 28 3584 30 6.55708e+06 325485 500653. 1732.36 11.88 0.495453 0.44831 21310 115450 -1 3192 17 1485 4544 286397 62292 5.79224 5.79224 -133.519 -5.79224 0 0 612192. 2118.31 0.20 0.14 0.11 -1 -1 0.20 0.0531182 0.0483815 176 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 8.34 vpr 62.48 MiB 0.02 6844 -1 -1 11 0.17 -1 -1 32392 -1 -1 25 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 27 32 217 249 1 157 84 17 17 289 -1 unnamed_device 23.6 MiB 0.23 955 9966 2597 6231 1138 62.5 MiB 0.12 0.00 6.3206 -117.079 -6.3206 6.3206 0.94 0.00119644 0.00111189 0.0683971 0.0634649 26 2742 25 6.55708e+06 301375 477104. 1650.88 4.70 0.376013 0.339846 21022 109990 -1 2264 18 1075 3077 169285 39286 5.53252 5.53252 -115.94 -5.53252 0 0 585099. 2024.56 0.19 0.10 0.16 -1 -1 0.19 0.0450059 0.040896 138 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 10.68 vpr 63.64 MiB 0.05 6972 -1 -1 13 0.41 -1 -1 32840 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65164 32 32 373 405 1 274 104 17 17 289 -1 unnamed_device 24.5 MiB 0.29 1955 9864 2276 6867 721 63.6 MiB 0.16 0.00 7.70458 -159.131 -7.70458 7.70458 0.95 0.00210525 0.00195082 0.0916449 0.085063 36 5073 36 6.55708e+06 482200 612192. 2118.31 6.35 0.601005 0.54647 22750 144809 -1 4189 18 1948 7062 397652 88021 6.98824 6.98824 -155.331 -6.98824 0 0 782063. 2706.10 0.24 0.20 0.21 -1 -1 0.24 0.0803951 0.0737071 280 279 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 8.00 vpr 63.15 MiB 0.04 6944 -1 -1 14 0.27 -1 -1 33404 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 31 32 269 301 1 200 89 17 17 289 -1 unnamed_device 24.3 MiB 0.28 1245 11573 2731 6807 2035 63.1 MiB 0.15 0.00 8.47244 -166.107 -8.47244 8.47244 0.95 0.00148768 0.00138206 0.0901488 0.0837427 30 2953 18 6.55708e+06 313430 526063. 1820.29 4.01 0.523362 0.473441 21886 126133 -1 2497 15 1140 3175 144476 34920 7.40536 7.40536 -156.727 -7.40536 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0488209 0.0445758 179 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 10.55 vpr 62.75 MiB 0.02 6824 -1 -1 12 0.15 -1 -1 32372 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 228 260 1 185 91 17 17 289 -1 unnamed_device 23.8 MiB 0.36 1139 15187 4363 8443 2381 62.8 MiB 0.17 0.00 7.2366 -160.978 -7.2366 7.2366 0.95 0.00125114 0.00116088 0.0963889 0.0894112 34 3292 44 6.55708e+06 325485 585099. 2024.56 6.65 0.550147 0.497534 22462 138074 -1 2663 16 1081 3043 173469 39926 6.73618 6.73618 -157.668 -6.73618 0 0 742403. 2568.87 0.24 0.10 0.20 -1 -1 0.24 0.0428346 0.0390374 144 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 6.25 vpr 62.98 MiB 0.04 6820 -1 -1 13 0.30 -1 -1 32824 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 265 297 1 201 89 17 17 289 -1 unnamed_device 23.8 MiB 0.43 1179 9593 2501 5729 1363 63.0 MiB 0.13 0.00 8.00084 -154.84 -8.00084 8.00084 0.95 0.00149316 0.0013886 0.0759849 0.0705748 30 3624 25 6.55708e+06 301375 526063. 1820.29 2.16 0.275237 0.25022 21886 126133 -1 2743 16 1272 3680 179696 42920 6.81356 6.81356 -148.908 -6.81356 0 0 666494. 2306.21 0.22 0.11 0.18 -1 -1 0.22 0.0515775 0.0470713 172 171 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 13.20 vpr 63.42 MiB 0.05 6944 -1 -1 13 0.31 -1 -1 33600 -1 -1 35 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 31 32 325 357 1 258 98 17 17 289 -1 unnamed_device 24.6 MiB 0.43 1723 8423 1649 6094 680 63.4 MiB 0.13 0.00 7.58638 -160.922 -7.58638 7.58638 0.95 0.00180228 0.00166423 0.074104 0.0688129 28 4597 36 6.55708e+06 421925 500653. 1732.36 9.01 0.585975 0.531178 21310 115450 -1 4029 21 1959 5968 388832 86822 6.95104 6.95104 -160.966 -6.95104 0 0 612192. 2118.31 0.20 0.19 0.17 -1 -1 0.20 0.0766691 0.0699156 235 234 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 9.36 vpr 63.05 MiB 0.03 6976 -1 -1 11 0.23 -1 -1 32800 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 30 32 287 319 1 213 95 17 17 289 -1 unnamed_device 24.1 MiB 0.29 1432 7007 1504 4847 656 63.1 MiB 0.10 0.00 7.1643 -145.437 -7.1643 7.1643 0.95 0.00158356 0.00147052 0.0555436 0.0516137 34 3873 32 6.55708e+06 397815 585099. 2024.56 5.37 0.506297 0.457511 22462 138074 -1 3265 17 1294 4435 268645 58996 6.39124 6.39124 -143.08 -6.39124 0 0 742403. 2568.87 0.24 0.14 0.20 -1 -1 0.24 0.0584035 0.0532564 199 199 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 9.70 vpr 63.16 MiB 0.02 6892 -1 -1 15 0.32 -1 -1 32884 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 297 329 1 230 93 17 17 289 -1 unnamed_device 24.2 MiB 0.32 1519 8073 1948 5210 915 63.2 MiB 0.10 0.00 9.01015 -184 -9.01015 9.01015 0.95 0.00110725 0.00101688 0.0473089 0.0435924 36 4015 24 6.55708e+06 349595 612192. 2118.31 5.64 0.414977 0.375747 22750 144809 -1 3287 24 1483 4529 305525 85309 7.68815 7.68815 -170.097 -7.68815 0 0 782063. 2706.10 0.24 0.18 0.21 -1 -1 0.24 0.0781853 0.0711895 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 18.23 vpr 63.17 MiB 0.04 6860 -1 -1 13 0.36 -1 -1 33120 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 311 343 1 238 96 17 17 289 -1 unnamed_device 24.2 MiB 0.18 1448 14331 3665 9149 1517 63.2 MiB 0.20 0.00 7.86097 -165.619 -7.86097 7.86097 0.95 0.00174852 0.00162459 0.119331 0.110762 28 4370 37 6.55708e+06 385760 500653. 1732.36 14.17 0.691359 0.627109 21310 115450 -1 3674 21 1917 5747 341864 76915 7.03204 7.03204 -165.002 -7.03204 0 0 612192. 2118.31 0.20 0.18 0.16 -1 -1 0.20 0.0726575 0.066011 217 217 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 5.99 vpr 62.66 MiB 0.04 6624 -1 -1 12 0.20 -1 -1 32268 -1 -1 27 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 29 32 236 268 1 193 88 17 17 289 -1 unnamed_device 23.5 MiB 0.39 1047 10813 2718 6103 1992 62.7 MiB 0.13 0.00 6.80146 -143.314 -6.80146 6.80146 0.95 0.00128043 0.00117944 0.0740279 0.0683829 30 3274 41 6.55708e+06 325485 526063. 1820.29 2.10 0.276686 0.250855 21886 126133 -1 2397 18 1274 3345 158487 38872 6.20792 6.20792 -141.221 -6.20792 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0478014 0.0435136 157 151 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 13.27 vpr 62.45 MiB 0.05 6908 -1 -1 11 0.15 -1 -1 32384 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 32 32 231 263 1 179 86 17 17 289 -1 unnamed_device 23.6 MiB 0.43 1093 5189 1003 3884 302 62.4 MiB 0.07 0.00 6.74698 -142.525 -6.74698 6.74698 0.96 0.00120774 0.00112039 0.0366912 0.0340283 28 3144 36 6.55708e+06 265210 500653. 1732.36 9.43 0.378043 0.340819 21310 115450 -1 2547 16 1180 3230 178454 42563 5.78058 5.78058 -139.904 -5.78058 0 0 612192. 2118.31 0.20 0.10 0.16 -1 -1 0.20 0.0419075 0.0381944 138 137 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 10.32 vpr 63.22 MiB 0.03 6980 -1 -1 13 0.30 -1 -1 32756 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 31 32 294 326 1 224 94 17 17 289 -1 unnamed_device 24.2 MiB 0.35 1501 5632 1004 4261 367 63.2 MiB 0.09 0.00 8.25511 -166.809 -8.25511 8.25511 0.95 0.00165826 0.00154097 0.0482152 0.0448025 36 3446 27 6.55708e+06 373705 612192. 2118.31 6.26 0.675971 0.611578 22750 144809 -1 3048 17 1347 4370 229793 53051 7.2781 7.2781 -155.783 -7.2781 0 0 782063. 2706.10 0.24 0.13 0.21 -1 -1 0.24 0.0600156 0.054808 204 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 8.10 vpr 62.51 MiB 0.02 6608 -1 -1 10 0.17 -1 -1 32780 -1 -1 25 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 29 32 221 253 1 167 86 17 17 289 -1 unnamed_device 23.6 MiB 0.21 1064 7646 1912 5016 718 62.5 MiB 0.09 0.00 5.93963 -122.7 -5.93963 5.93963 0.95 0.0011926 0.00110277 0.0517793 0.0480434 28 2785 23 6.55708e+06 301375 500653. 1732.36 4.46 0.40583 0.365967 21310 115450 -1 2557 18 1147 3447 215774 47653 5.34558 5.34558 -123.527 -5.34558 0 0 612192. 2118.31 0.20 0.11 0.17 -1 -1 0.20 0.0448041 0.0407218 138 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 9.13 vpr 62.80 MiB 0.04 6636 -1 -1 14 0.19 -1 -1 32700 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 240 272 1 178 88 17 17 289 -1 unnamed_device 23.8 MiB 0.40 1142 10033 2412 5986 1635 62.8 MiB 0.12 0.00 7.66803 -156.849 -7.66803 7.66803 0.95 0.00128946 0.00119602 0.0696789 0.0646405 36 2731 29 6.55708e+06 289320 612192. 2118.31 5.12 0.565461 0.510622 22750 144809 -1 2333 17 1028 3056 165099 39037 6.6791 6.6791 -146.906 -6.6791 0 0 782063. 2706.10 0.27 0.12 0.21 -1 -1 0.27 0.0573819 0.0529762 149 146 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 7.37 vpr 63.06 MiB 0.03 6844 -1 -1 12 0.32 -1 -1 32908 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 31 32 292 324 1 211 92 17 17 289 -1 unnamed_device 24.1 MiB 0.31 1394 6095 1205 4292 598 63.1 MiB 0.10 0.00 7.67729 -159.665 -7.67729 7.67729 0.95 0.00163155 0.0015159 0.0527783 0.0490053 34 3698 50 6.55708e+06 349595 585099. 2024.56 3.30 0.428119 0.387651 22462 138074 -1 3092 18 1266 4129 229679 52857 6.5191 6.5191 -151.267 -6.5191 0 0 742403. 2568.87 0.24 0.13 0.20 -1 -1 0.24 0.0617563 0.0563429 201 201 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 8.07 vpr 62.51 MiB 0.04 6696 -1 -1 12 0.15 -1 -1 32368 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 31 32 229 261 1 182 86 17 17 289 -1 unnamed_device 23.5 MiB 0.31 1194 5567 1099 4211 257 62.5 MiB 0.08 0.00 6.82849 -150.919 -6.82849 6.82849 0.86 0.00120511 0.0011187 0.0389337 0.0361198 32 3121 22 6.55708e+06 277265 554710. 1919.41 4.26 0.419385 0.378079 22174 131602 -1 2745 29 1051 2842 350390 131656 6.05818 6.05818 -145.531 -6.05818 0 0 701300. 2426.64 0.22 0.19 0.20 -1 -1 0.22 0.0668487 0.0605148 142 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 7.40 vpr 63.25 MiB 0.05 6940 -1 -1 12 0.19 -1 -1 32756 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 32 32 282 314 1 206 90 17 17 289 -1 unnamed_device 24.0 MiB 0.20 1308 5517 1109 4058 350 63.2 MiB 0.08 0.00 6.90658 -147.949 -6.90658 6.90658 0.96 0.00152044 0.00141224 0.0461218 0.0427851 28 3844 44 6.55708e+06 313430 500653. 1732.36 3.62 0.303418 0.274582 21310 115450 -1 3170 23 1630 5200 323155 75306 6.78398 6.78398 -146.832 -6.78398 0 0 612192. 2118.31 0.20 0.19 0.16 -1 -1 0.20 0.0743064 0.0672605 188 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 9.31 vpr 62.89 MiB 0.04 7044 -1 -1 13 0.29 -1 -1 32952 -1 -1 30 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 31 32 269 301 1 216 93 17 17 289 -1 unnamed_device 24.0 MiB 0.30 1442 9753 2402 6155 1196 62.9 MiB 0.13 0.00 7.83564 -165.134 -7.83564 7.83564 0.95 0.00151497 0.0014062 0.0745861 0.0692325 36 3404 14 6.55708e+06 361650 612192. 2118.31 5.24 0.629684 0.569216 22750 144809 -1 2917 17 1137 3614 188614 43755 7.0005 7.0005 -157.503 -7.0005 0 0 782063. 2706.10 0.25 0.12 0.21 -1 -1 0.25 0.0551335 0.050273 180 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 9.98 vpr 62.83 MiB 0.02 6556 -1 -1 11 0.16 -1 -1 32364 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 237 269 1 183 90 17 17 289 -1 unnamed_device 23.8 MiB 0.22 1181 5316 953 4041 322 62.8 MiB 0.07 0.00 6.7625 -141.932 -6.7625 6.7625 0.95 0.00126341 0.0011718 0.0382959 0.0354998 26 3531 32 6.55708e+06 313430 477104. 1650.88 6.03 0.401951 0.362343 21022 109990 -1 3041 45 2080 6791 809890 357099 5.78318 5.78318 -144.141 -5.78318 0 0 585099. 2024.56 0.23 0.38 0.16 -1 -1 0.23 0.0863166 0.077665 148 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 5.91 vpr 62.94 MiB 0.04 6816 -1 -1 13 0.19 -1 -1 32572 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 259 291 1 202 91 17 17 289 -1 unnamed_device 23.9 MiB 0.22 1261 6619 1462 4468 689 62.9 MiB 0.09 0.00 7.87238 -161.512 -7.87238 7.87238 0.95 0.00141729 0.00131713 0.0501963 0.0466555 28 3533 23 6.55708e+06 325485 500653. 1732.36 2.19 0.236555 0.21456 21310 115450 -1 2991 19 1431 3925 254944 58035 6.7993 6.7993 -155.897 -6.7993 0 0 612192. 2118.31 0.20 0.14 0.17 -1 -1 0.20 0.0559949 0.0508987 167 165 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 9.98 vpr 62.91 MiB 0.05 7032 -1 -1 13 0.26 -1 -1 32860 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 277 309 1 220 93 17 17 289 -1 unnamed_device 24.0 MiB 0.37 1331 9963 2251 5897 1815 62.9 MiB 0.14 0.00 7.86397 -163.224 -7.86397 7.86397 0.94 0.00146987 0.00136087 0.0776632 0.0720796 36 3848 46 6.55708e+06 349595 612192. 2118.31 5.99 0.454773 0.412067 22750 144809 -1 2979 15 1430 4355 242484 55252 6.7601 6.7601 -151.042 -6.7601 0 0 782063. 2706.10 0.22 0.07 0.16 -1 -1 0.22 0.0258982 0.0236417 188 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 7.24 vpr 62.81 MiB 0.05 6960 -1 -1 11 0.22 -1 -1 32848 -1 -1 27 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64320 29 32 245 277 1 190 88 17 17 289 -1 unnamed_device 23.8 MiB 0.24 1009 12373 3112 6826 2435 62.8 MiB 0.15 0.00 6.353 -119.656 -6.353 6.353 0.96 0.00134314 0.00124754 0.0887954 0.082352 34 3298 42 6.55708e+06 325485 585099. 2024.56 3.29 0.372273 0.337292 22462 138074 -1 2349 15 1066 3121 177342 43549 5.77292 5.77292 -119.425 -5.77292 0 0 742403. 2568.87 0.25 0.10 0.21 -1 -1 0.25 0.0441816 0.0402303 160 160 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 10.47 vpr 63.30 MiB 0.04 6988 -1 -1 14 0.31 -1 -1 33444 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 316 348 1 250 96 17 17 289 -1 unnamed_device 24.2 MiB 0.38 1579 9732 2188 6618 926 63.3 MiB 0.15 0.00 8.66947 -182.489 -8.66947 8.66947 0.98 0.00178749 0.00166088 0.0845369 0.0784886 34 4585 42 6.55708e+06 385760 585099. 2024.56 6.19 0.699677 0.63325 22462 138074 -1 3866 19 1825 5368 344449 78081 7.55769 7.55769 -173.73 -7.55769 0 0 742403. 2568.87 0.24 0.16 0.21 -1 -1 0.24 0.0662992 0.0607688 225 222 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 6.46 vpr 62.68 MiB 0.02 6780 -1 -1 12 0.15 -1 -1 32468 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64188 31 32 230 262 1 186 91 17 17 289 -1 unnamed_device 23.7 MiB 0.36 1132 10903 2780 6518 1605 62.7 MiB 0.12 0.00 6.86778 -146.474 -6.86778 6.86778 1.00 0.00124195 0.00115248 0.0696099 0.0645374 34 2856 19 6.55708e+06 337540 585099. 2024.56 2.53 0.275169 0.249673 22462 138074 -1 2490 16 1026 2784 171062 39331 5.75164 5.75164 -137.214 -5.75164 0 0 742403. 2568.87 0.24 0.10 0.20 -1 -1 0.24 0.0426436 0.0388821 145 139 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 9.20 vpr 62.88 MiB 0.05 7032 -1 -1 13 0.28 -1 -1 32868 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 32 32 282 314 1 213 91 17 17 289 -1 unnamed_device 23.9 MiB 0.32 1389 6211 1334 4310 567 62.9 MiB 0.10 0.00 7.65501 -153.87 -7.65501 7.65501 0.95 0.00154377 0.00143461 0.0525654 0.0488232 36 3187 18 6.55708e+06 325485 612192. 2118.31 5.17 0.608063 0.549096 22750 144809 -1 2963 17 1443 4534 250040 60091 6.94138 6.94138 -148.972 -6.94138 0 0 782063. 2706.10 0.24 0.14 0.21 -1 -1 0.24 0.0564181 0.0514268 189 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 6.14 vpr 62.61 MiB 0.04 6672 -1 -1 13 0.18 -1 -1 32756 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 235 267 1 180 90 17 17 289 -1 unnamed_device 23.6 MiB 0.43 1095 7326 1550 5416 360 62.6 MiB 0.09 0.00 7.45231 -160.211 -7.45231 7.45231 0.96 0.00127346 0.00118217 0.0496926 0.0460349 28 3229 48 6.55708e+06 313430 500653. 1732.36 2.22 0.2657 0.24031 21310 115450 -1 2529 18 1181 3304 233801 67472 6.90984 6.90984 -159.34 -6.90984 0 0 612192. 2118.31 0.20 0.13 0.17 -1 -1 0.20 0.0470042 0.0427641 145 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 11.82 vpr 62.89 MiB 0.05 6996 -1 -1 12 0.22 -1 -1 32700 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64396 32 32 265 297 1 193 90 17 17 289 -1 unnamed_device 23.8 MiB 0.31 1228 7728 1665 5629 434 62.9 MiB 0.11 0.00 7.58733 -154.847 -7.58733 7.58733 0.95 0.00148918 0.00138318 0.0631501 0.0585887 28 3325 41 6.55708e+06 313430 500653. 1732.36 7.94 0.479193 0.433565 21310 115450 -1 2794 17 1142 3561 201327 46238 6.7641 6.7641 -149.049 -6.7641 0 0 612192. 2118.31 0.20 0.12 0.16 -1 -1 0.20 0.052482 0.0477038 172 171 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 9.13 vpr 63.50 MiB 0.05 6968 -1 -1 15 0.46 -1 -1 32852 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 344 376 1 259 98 17 17 289 -1 unnamed_device 24.6 MiB 0.27 1717 9323 2212 6516 595 63.5 MiB 0.15 0.00 8.85561 -175.55 -8.85561 8.85561 0.98 0.00197287 0.00183275 0.0874709 0.0811119 36 4498 22 6.55708e+06 409870 612192. 2118.31 4.73 0.520949 0.473498 22750 144809 -1 3788 19 2011 6737 369089 82495 7.48896 7.48896 -166.143 -7.48896 0 0 782063. 2706.10 0.24 0.19 0.21 -1 -1 0.24 0.082217 0.0752892 250 250 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 9.27 vpr 61.81 MiB 0.04 6692 -1 -1 10 0.10 -1 -1 32108 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63296 30 32 173 205 1 128 78 17 17 289 -1 unnamed_device 23.2 MiB 0.30 663 7880 1846 5770 264 61.8 MiB 0.08 0.00 5.47134 -123.464 -5.47134 5.47134 0.95 0.000887084 0.000814561 0.0446201 0.0412632 26 2282 45 6.55708e+06 192880 477104. 1650.88 5.73 0.32444 0.290201 21022 109990 -1 1731 15 680 1574 122336 31518 4.92186 4.92186 -123.916 -4.92186 0 0 585099. 2024.56 0.19 0.07 0.16 -1 -1 0.19 0.0283207 0.0255761 92 85 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 9.00 vpr 62.93 MiB 0.02 6640 -1 -1 13 0.17 -1 -1 32568 -1 -1 29 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64436 30 32 229 261 1 173 91 17 17 289 -1 unnamed_device 23.9 MiB 0.15 1085 9679 2271 6084 1324 62.9 MiB 0.11 0.00 7.6407 -150.826 -7.6407 7.6407 0.95 0.00125248 0.00115307 0.0628223 0.0582545 26 3068 25 6.55708e+06 349595 477104. 1650.88 5.45 0.387675 0.349972 21022 109990 -1 2660 16 1104 3075 191780 44166 6.5589 6.5589 -148.945 -6.5589 0 0 585099. 2024.56 0.19 0.11 0.15 -1 -1 0.19 0.0427345 0.0389213 149 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 8.47 vpr 62.91 MiB 0.04 6664 -1 -1 12 0.19 -1 -1 32484 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 261 293 1 201 87 17 17 289 -1 unnamed_device 23.8 MiB 0.26 1229 11607 2776 7348 1483 62.9 MiB 0.16 0.00 6.61226 -148.616 -6.61226 6.61226 0.95 0.00144372 0.00133952 0.0914967 0.0848566 36 3015 18 6.55708e+06 277265 612192. 2118.31 4.52 0.491864 0.444607 22750 144809 -1 2612 16 1066 3031 166652 38729 5.90338 5.90338 -143.913 -5.90338 0 0 782063. 2706.10 0.24 0.10 0.21 -1 -1 0.24 0.0476314 0.043334 167 167 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 6.98 vpr 61.97 MiB 0.03 6676 -1 -1 9 0.13 -1 -1 32612 -1 -1 23 25 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63460 25 32 184 216 1 142 80 17 17 289 -1 unnamed_device 23.2 MiB 0.27 731 11260 3536 5471 2253 62.0 MiB 0.11 0.00 5.58849 -100.305 -5.58849 5.58849 0.96 0.0009935 0.000922359 0.0680704 0.0631722 28 2136 29 6.55708e+06 277265 500653. 1732.36 3.38 0.339712 0.305986 21310 115450 -1 1746 20 847 2309 118804 29072 4.84486 4.84486 -99.4417 -4.84486 0 0 612192. 2118.31 0.20 0.09 0.17 -1 -1 0.20 0.0407419 0.0368711 113 111 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 9.07 vpr 63.12 MiB 0.05 7040 -1 -1 12 0.29 -1 -1 32644 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 302 334 1 241 97 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1511 13861 3457 8236 2168 63.1 MiB 0.17 0.00 7.51028 -165.632 -7.51028 7.51028 0.97 0.00165269 0.00153722 0.0908271 0.0841971 38 3862 21 6.55708e+06 397815 638502. 2209.35 5.00 0.553602 0.501262 23326 155178 -1 3142 18 1469 4657 236614 53535 6.6419 6.6419 -153.865 -6.6419 0 0 851065. 2944.86 0.26 0.14 0.23 -1 -1 0.26 0.0615828 0.0561839 209 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 10.32 vpr 63.21 MiB 0.05 7036 -1 -1 14 0.31 -1 -1 32992 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 31 32 295 327 1 222 91 17 17 289 -1 unnamed_device 24.3 MiB 0.46 1427 6415 1288 4361 766 63.2 MiB 0.10 0.00 8.59764 -174.646 -8.59764 8.59764 0.95 0.00167585 0.00155739 0.0575881 0.0534229 28 4265 50 6.55708e+06 337540 500653. 1732.36 6.12 0.607845 0.549218 21310 115450 -1 3432 25 1414 4173 343131 111357 7.82002 7.82002 -173.29 -7.82002 0 0 612192. 2118.31 0.20 0.20 0.16 -1 -1 0.20 0.0832959 0.0758123 204 204 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 5.09 vpr 63.50 MiB 0.04 7284 -1 -1 1 0.03 -1 -1 30868 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 438 350 1 194 100 17 17 289 -1 unnamed_device 24.6 MiB 0.14 929 17268 4565 10218 2485 63.5 MiB 0.22 0.00 4.24756 -141.398 -4.24756 4.24756 0.95 0.00131861 0.00122164 0.103331 0.0957284 32 2582 23 6.64007e+06 452088 554710. 1919.41 1.37 0.277224 0.252208 22834 132086 -1 2128 22 1824 3085 215108 49318 3.85983 3.85983 -141.351 -3.85983 0 0 701300. 2426.64 0.22 0.13 0.19 -1 -1 0.22 0.057874 0.0523706 153 96 32 32 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.89 vpr 63.41 MiB 0.03 7304 -1 -1 1 0.03 -1 -1 30652 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 30 32 409 330 1 186 85 17 17 289 -1 unnamed_device 24.6 MiB 0.22 873 12919 4129 6395 2395 63.4 MiB 0.18 0.00 4.45516 -130.844 -4.45516 4.45516 0.95 0.0012462 0.00115678 0.0900047 0.0835989 32 2371 23 6.64007e+06 288834 554710. 1919.41 1.21 0.250852 0.228291 22834 132086 -1 1972 20 1719 2894 194521 44806 3.77263 3.77263 -134.041 -3.77263 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0502126 0.0455149 142 91 30 30 89 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.67 vpr 63.45 MiB 0.05 7232 -1 -1 1 0.03 -1 -1 30588 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 387 309 1 186 99 17 17 289 -1 unnamed_device 24.4 MiB 0.14 1003 9675 2005 7104 566 63.4 MiB 0.13 0.00 3.83457 -129.818 -3.83457 3.83457 0.96 0.00122746 0.00114001 0.05539 0.0514084 30 2327 20 6.64007e+06 439530 526063. 1820.29 1.10 0.209096 0.1898 22546 126617 -1 2038 20 1231 2024 112746 25536 3.42623 3.42623 -130.48 -3.42623 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0484752 0.0439312 142 65 54 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.70 vpr 63.15 MiB 0.04 7220 -1 -1 1 0.03 -1 -1 30632 -1 -1 24 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64668 29 32 343 267 1 184 85 17 17 289 -1 unnamed_device 24.1 MiB 0.12 990 11245 3461 6773 1011 63.2 MiB 0.17 0.00 4.46418 -132.416 -4.46418 4.46418 0.98 0.00111542 0.00103664 0.0709767 0.0660279 26 2541 22 6.64007e+06 301392 477104. 1650.88 1.19 0.213938 0.194547 21682 110474 -1 2196 21 1695 2906 201027 44603 4.05023 4.05023 -139.484 -4.05023 0 0 585099. 2024.56 0.19 0.12 0.16 -1 -1 0.19 0.0469608 0.042569 138 34 87 29 29 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.94 vpr 63.21 MiB 0.03 7160 -1 -1 1 0.04 -1 -1 30488 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 32 32 376 288 1 195 86 17 17 289 -1 unnamed_device 24.2 MiB 0.15 849 15017 4515 8552 1950 63.2 MiB 0.22 0.00 4.14936 -139.21 -4.14936 4.14936 0.99 0.00122455 0.00113969 0.0990694 0.09217 32 2459 26 6.64007e+06 276276 554710. 1919.41 1.23 0.262226 0.239237 22834 132086 -1 1918 22 1772 3110 188012 46814 3.62743 3.62743 -135.62 -3.62743 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0533412 0.0484029 153 34 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.92 vpr 63.45 MiB 0.05 7240 -1 -1 1 0.03 -1 -1 30588 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 402 316 1 199 103 17 17 289 -1 unnamed_device 24.6 MiB 0.16 1024 19142 5775 10357 3010 63.4 MiB 0.21 0.00 3.5603 -122.248 -3.5603 3.5603 0.96 0.00047549 0.000437587 0.0980727 0.0910261 32 2370 19 6.64007e+06 489762 554710. 1919.41 1.18 0.253253 0.230751 22834 132086 -1 1980 18 1303 2072 133528 32337 3.04517 3.04517 -120.141 -3.04517 0 0 701300. 2426.64 0.23 0.10 0.20 -1 -1 0.23 0.0470195 0.0426869 156 64 63 32 63 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.72 vpr 62.56 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30680 -1 -1 20 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 27 32 269 226 1 135 79 17 17 289 -1 unnamed_device 23.5 MiB 0.11 536 12754 3285 8720 749 62.6 MiB 0.14 0.00 3.7877 -97.0533 -3.7877 3.7877 0.95 0.000901661 0.000837991 0.0703107 0.0653453 32 1410 24 6.64007e+06 251160 554710. 1919.41 1.25 0.191535 0.173708 22834 132086 -1 1193 18 930 1583 104791 26692 2.95897 2.95897 -95.2487 -2.95897 0 0 701300. 2426.64 0.22 0.07 0.19 -1 -1 0.22 0.0331552 0.0299041 97 34 54 27 27 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.69 vpr 63.00 MiB 0.03 7140 -1 -1 1 0.03 -1 -1 30252 -1 -1 34 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 31 32 317 242 1 185 97 17 17 289 -1 unnamed_device 24.0 MiB 0.11 948 16081 4441 8879 2761 63.0 MiB 0.19 0.00 3.49449 -109.504 -3.49449 3.49449 0.95 0.00108194 0.00100652 0.081278 0.0755797 28 2354 23 6.64007e+06 426972 500653. 1732.36 1.16 0.222513 0.202698 21970 115934 -1 1989 19 1188 2041 139376 31263 2.73997 2.73997 -104.448 -2.73997 0 0 612192. 2118.31 0.20 0.10 0.17 -1 -1 0.20 0.0415952 0.0376904 140 4 115 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.43 vpr 63.11 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 30200 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 31 32 338 292 1 147 80 17 17 289 -1 unnamed_device 24.3 MiB 0.19 706 7820 1805 5417 598 63.1 MiB 0.10 0.00 3.31336 -101.862 -3.31336 3.31336 0.91 0.00105138 0.000975554 0.0506407 0.0470173 28 1802 17 6.64007e+06 213486 500653. 1732.36 1.02 0.175371 0.158675 21970 115934 -1 1658 17 747 1272 84161 19545 2.86817 2.86817 -102.645 -2.86817 0 0 612192. 2118.31 0.20 0.07 0.17 -1 -1 0.20 0.0367629 0.0332825 106 85 0 0 84 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.69 vpr 62.91 MiB 0.04 7016 -1 -1 1 0.03 -1 -1 30424 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 314 256 1 162 81 17 17 289 -1 unnamed_device 24.1 MiB 0.18 890 10756 2975 5928 1853 62.9 MiB 0.14 0.00 3.5061 -124.869 -3.5061 3.5061 0.95 0.00103098 0.000957243 0.0661962 0.0614904 32 2098 19 6.64007e+06 213486 554710. 1919.41 1.12 0.192927 0.175244 22834 132086 -1 1853 19 1370 2100 146399 33560 3.09517 3.09517 -127.81 -3.09517 0 0 701300. 2426.64 0.22 0.10 0.20 -1 -1 0.22 0.0400033 0.0361868 121 34 64 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.67 vpr 63.02 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30180 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64536 30 32 325 273 1 151 80 17 17 289 -1 unnamed_device 24.2 MiB 0.17 822 14012 5060 7295 1657 63.0 MiB 0.17 0.00 3.4841 -115.834 -3.4841 3.4841 0.96 0.00103711 0.000963646 0.0876093 0.0814298 28 1765 21 6.64007e+06 226044 500653. 1732.36 1.03 0.213971 0.194511 21970 115934 -1 1613 17 950 1352 87230 19841 2.92617 2.92617 -111.175 -2.92617 0 0 612192. 2118.31 0.20 0.07 0.17 -1 -1 0.20 0.0364626 0.0329888 110 63 30 30 60 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.46 vpr 62.89 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 30572 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64396 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 24.0 MiB 0.13 840 9753 2297 6936 520 62.9 MiB 0.12 0.00 3.52209 -114.564 -3.52209 3.52209 0.95 0.00104829 0.000972956 0.0512837 0.0475642 30 1983 23 6.64007e+06 364182 526063. 1820.29 1.10 0.178393 0.161316 22546 126617 -1 1684 20 963 1598 88084 20474 2.86577 2.86577 -112.046 -2.86577 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0416048 0.0375675 114 65 25 25 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.93 vpr 63.61 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 30272 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65132 32 32 386 305 1 188 98 17 17 289 -1 unnamed_device 24.8 MiB 0.21 893 19448 6133 10048 3267 63.6 MiB 0.24 0.00 3.56129 -122.026 -3.56129 3.56129 0.95 0.00123436 0.00114657 0.109276 0.101509 32 2328 23 6.64007e+06 426972 554710. 1919.41 1.20 0.266917 0.243475 22834 132086 -1 1920 21 1696 2872 185494 42352 2.99617 2.99617 -114.917 -2.99617 0 0 701300. 2426.64 0.23 0.12 0.19 -1 -1 0.23 0.0513885 0.046557 145 58 64 32 57 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 8.23 vpr 63.38 MiB 0.04 7256 -1 -1 1 0.03 -1 -1 30516 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 407 319 1 200 100 17 17 289 -1 unnamed_device 24.5 MiB 0.19 891 11700 2919 7112 1669 63.4 MiB 0.14 0.00 4.29776 -143.645 -4.29776 4.29776 0.95 0.00128653 0.00119593 0.0686426 0.0638229 30 2503 26 6.64007e+06 452088 526063. 1820.29 4.57 0.492298 0.444385 22546 126617 -1 1950 21 1586 2514 140522 33275 3.65443 3.65443 -141.805 -3.65443 0 0 666494. 2306.21 0.22 0.11 0.18 -1 -1 0.22 0.0530965 0.0482524 158 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.62 vpr 62.79 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30680 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 29 32 272 228 1 145 80 17 17 289 -1 unnamed_device 23.7 MiB 0.15 800 8852 2481 5509 862 62.8 MiB 0.11 0.00 3.4261 -103.793 -3.4261 3.4261 0.88 0.000923831 0.000859485 0.0497199 0.0462591 32 1629 19 6.64007e+06 238602 554710. 1919.41 1.05 0.161022 0.145817 22834 132086 -1 1529 19 1008 1717 104415 24999 2.63957 2.63957 -99.7065 -2.63957 0 0 701300. 2426.64 0.23 0.08 0.19 -1 -1 0.23 0.0354794 0.0320364 108 29 58 29 24 24 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.98 vpr 63.26 MiB 0.05 7240 -1 -1 1 0.03 -1 -1 30388 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64780 32 32 401 315 1 192 86 17 17 289 -1 unnamed_device 24.5 MiB 0.24 1073 13316 3773 7644 1899 63.3 MiB 0.20 0.00 3.5141 -124.76 -3.5141 3.5141 0.95 0.00127642 0.00118642 0.0933524 0.0867545 32 2373 21 6.64007e+06 276276 554710. 1919.41 1.19 0.252755 0.230387 22834 132086 -1 2046 20 1555 2691 176916 38971 2.93417 2.93417 -120.618 -2.93417 0 0 701300. 2426.64 0.23 0.11 0.19 -1 -1 0.23 0.0509281 0.0461871 147 63 64 32 62 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 8.49 vpr 63.30 MiB 0.03 7120 -1 -1 1 0.03 -1 -1 30388 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 383 303 1 185 100 17 17 289 -1 unnamed_device 24.2 MiB 0.21 964 16340 5208 8057 3075 63.3 MiB 0.18 0.00 3.6263 -123.14 -3.6263 3.6263 0.96 0.00122731 0.00114004 0.0895449 0.0831726 36 2220 38 6.64007e+06 452088 612192. 2118.31 4.81 0.491366 0.443774 23410 145293 -1 1812 17 1226 1882 127574 30308 2.90477 2.90477 -116.354 -2.90477 0 0 782063. 2706.10 0.25 0.09 0.21 -1 -1 0.25 0.0430412 0.0390881 144 57 64 32 56 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.75 vpr 62.99 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30244 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 339 284 1 162 95 17 17 289 -1 unnamed_device 24.0 MiB 0.16 919 13487 3473 7992 2022 63.0 MiB 0.15 0.00 2.83964 -105.375 -2.83964 2.83964 0.91 0.00108122 0.00100421 0.0703432 0.0652991 26 2148 18 6.64007e+06 389298 477104. 1650.88 1.10 0.199876 0.181399 21682 110474 -1 1894 18 1084 1729 118381 26386 2.31791 2.31791 -101.895 -2.31791 0 0 585099. 2024.56 0.20 0.09 0.15 -1 -1 0.20 0.0392418 0.0355399 119 65 29 29 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 4.30 vpr 62.57 MiB 0.02 7032 -1 -1 1 0.03 -1 -1 30196 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 23.8 MiB 0.08 670 10835 3352 6011 1472 62.6 MiB 0.11 0.00 2.72344 -89.4054 -2.72344 2.72344 0.95 0.000785842 0.000728689 0.0527456 0.0488964 32 1414 19 6.64007e+06 188370 554710. 1919.41 1.00 0.144943 0.130744 22834 132086 -1 1284 18 556 845 61323 13722 1.87911 1.87911 -80.4728 -1.87911 0 0 701300. 2426.64 0.23 0.06 0.19 -1 -1 0.23 0.0280278 0.0251578 85 34 24 24 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.70 vpr 62.93 MiB 0.05 7128 -1 -1 1 0.04 -1 -1 30376 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 31 32 335 280 1 154 81 17 17 289 -1 unnamed_device 24.1 MiB 0.15 858 12506 4894 6227 1385 62.9 MiB 0.16 0.00 4.22795 -126.106 -4.22795 4.22795 0.97 0.00107079 0.000990208 0.0794497 0.0738399 32 2005 15 6.64007e+06 226044 554710. 1919.41 1.06 0.202089 0.18388 22834 132086 -1 1690 17 786 1183 76194 18292 3.39142 3.39142 -123.542 -3.39142 0 0 701300. 2426.64 0.23 0.07 0.19 -1 -1 0.23 0.0374604 0.0338974 114 64 31 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.80 vpr 63.31 MiB 0.05 7260 -1 -1 1 0.03 -1 -1 30248 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64828 32 32 366 283 1 192 100 17 17 289 -1 unnamed_device 24.2 MiB 0.12 885 17732 4998 9545 3189 63.3 MiB 0.21 0.00 4.22193 -138.344 -4.22193 4.22193 0.87 0.00119705 0.00111398 0.0952641 0.0885659 32 2499 24 6.64007e+06 452088 554710. 1919.41 1.26 0.252174 0.2299 22834 132086 -1 2101 21 1749 2584 200638 46522 3.99323 3.99323 -139.849 -3.99323 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0502486 0.0455363 147 34 91 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.91 vpr 63.52 MiB 0.05 7352 -1 -1 1 0.03 -1 -1 30628 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 460 375 1 196 102 17 17 289 -1 unnamed_device 24.5 MiB 0.23 960 11288 2842 7087 1359 63.5 MiB 0.16 0.00 3.74425 -123.858 -3.74425 3.74425 0.95 0.00140654 0.00130857 0.0701053 0.0651751 30 2600 21 6.64007e+06 477204 526063. 1820.29 1.21 0.243762 0.221201 22546 126617 -1 2046 23 1395 2198 125630 29103 3.47943 3.47943 -125.707 -3.47943 0 0 666494. 2306.21 0.22 0.12 0.18 -1 -1 0.22 0.0626749 0.056724 150 124 0 0 125 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 4.25 vpr 62.04 MiB 0.02 6940 -1 -1 1 0.03 -1 -1 30568 -1 -1 17 26 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63528 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 23.3 MiB 0.12 395 10503 3120 6151 1232 62.0 MiB 0.09 0.00 2.74064 -71.156 -2.74064 2.74064 0.95 0.000586563 0.000536215 0.0458534 0.0424967 28 1132 21 6.64007e+06 213486 500653. 1732.36 0.98 0.129472 0.116801 21970 115934 -1 969 16 568 838 50567 13363 1.94911 1.94911 -69.9683 -1.94911 0 0 612192. 2118.31 0.24 0.05 0.17 -1 -1 0.24 0.0224648 0.0201795 77 30 26 26 22 22 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.87 vpr 63.11 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 30148 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 333 251 1 187 86 17 17 289 -1 unnamed_device 24.1 MiB 0.13 992 12749 4476 6094 2179 63.1 MiB 0.17 0.00 4.46433 -140.075 -4.46433 4.46433 1.02 0.00113349 0.00105449 0.0795321 0.0740294 32 2463 23 6.64007e+06 276276 554710. 1919.41 1.23 0.227614 0.207457 22834 132086 -1 2140 19 1678 2905 193127 44835 3.77702 3.77702 -140.014 -3.77702 0 0 701300. 2426.64 0.22 0.11 0.23 -1 -1 0.22 0.0442442 0.0401885 138 3 122 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.52 vpr 62.01 MiB 0.04 6800 -1 -1 1 0.02 -1 -1 30376 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63496 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 23.3 MiB 0.07 603 10020 2349 7350 321 62.0 MiB 0.10 0.00 2.3583 -84.1764 -2.3583 2.3583 0.96 0.000709237 0.000656868 0.0457705 0.0424351 28 1582 18 6.64007e+06 163254 500653. 1732.36 1.15 0.130754 0.118214 21970 115934 -1 1337 15 601 779 71736 16843 2.02131 2.02131 -84.9436 -2.02131 0 0 612192. 2118.31 0.29 0.05 0.15 -1 -1 0.29 0.0179196 0.0162153 81 3 53 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.85 vpr 63.23 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30632 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 24.0 MiB 0.10 956 14691 4376 8904 1411 63.2 MiB 0.19 0.00 4.18856 -140.856 -4.18856 4.18856 0.96 0.00123452 0.00114921 0.0829327 0.0770272 32 2613 24 6.64007e+06 439530 554710. 1919.41 1.22 0.224793 0.204591 22834 132086 -1 2136 20 1821 2871 190414 45196 3.68983 3.68983 -141.585 -3.68983 0 0 701300. 2426.64 0.31 0.10 0.17 -1 -1 0.31 0.0364728 0.0330379 153 34 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 6.14 vpr 63.34 MiB 0.04 7124 -1 -1 1 0.03 -1 -1 30112 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 337 253 1 196 101 17 17 289 -1 unnamed_device 24.3 MiB 0.10 1019 8796 1857 6524 415 63.3 MiB 0.12 0.00 3.60659 -123.354 -3.60659 3.60659 0.95 0.00114129 0.00106239 0.0459611 0.0427556 26 3320 31 6.64007e+06 464646 477104. 1650.88 2.66 0.205922 0.186658 21682 110474 -1 2490 28 1964 3353 297636 74197 3.12817 3.12817 -127.245 -3.12817 0 0 585099. 2024.56 0.19 0.16 0.16 -1 -1 0.19 0.0611777 0.0553733 152 3 124 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.99 vpr 63.48 MiB 0.04 7232 -1 -1 1 0.04 -1 -1 30516 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65004 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 24.6 MiB 0.11 1069 18901 5689 10576 2636 63.5 MiB 0.24 0.00 4.16036 -141.868 -4.16036 4.16036 0.95 0.00128125 0.00119013 0.10693 0.0993087 32 2750 23 6.64007e+06 464646 554710. 1919.41 1.28 0.272963 0.248671 22834 132086 -1 2267 22 1879 3002 190676 44944 3.74943 3.74943 -141.358 -3.74943 0 0 701300. 2426.64 0.27 0.13 0.19 -1 -1 0.27 0.0578455 0.0525226 155 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.39 vpr 62.87 MiB 0.03 6844 -1 -1 1 0.03 -1 -1 30236 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 294 246 1 149 80 17 17 289 -1 unnamed_device 24.0 MiB 0.11 857 10572 2555 6423 1594 62.9 MiB 0.13 0.00 3.07196 -107.422 -3.07196 3.07196 0.95 0.000974767 0.000905145 0.0625927 0.0581404 32 1903 18 6.64007e+06 200928 554710. 1919.41 1.07 0.180213 0.163494 22834 132086 -1 1715 17 893 1476 101216 23699 2.79977 2.79977 -110.621 -2.79977 0 0 701300. 2426.64 0.23 0.08 0.19 -1 -1 0.23 0.0345633 0.0312712 107 34 54 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.57 vpr 62.96 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30240 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64476 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 24.1 MiB 0.12 824 11806 3275 6761 1770 63.0 MiB 0.14 0.00 3.4951 -114.009 -3.4951 3.4951 0.94 0.000991228 0.00092211 0.0692252 0.0643832 32 1787 20 6.64007e+06 238602 554710. 1919.41 1.10 0.191241 0.173663 22834 132086 -1 1618 18 1138 1683 116961 26817 2.99497 2.99497 -111.529 -2.99497 0 0 701300. 2426.64 0.22 0.08 0.19 -1 -1 0.22 0.0366148 0.0330744 115 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.52 vpr 62.95 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30332 -1 -1 20 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64460 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 24.1 MiB 0.10 658 7132 1686 4570 876 62.9 MiB 0.10 0.00 3.4309 -100.483 -3.4309 3.4309 0.95 0.000938849 0.000869392 0.0413495 0.0384788 32 1835 21 6.64007e+06 251160 554710. 1919.41 1.09 0.157499 0.142453 22834 132086 -1 1597 19 1111 1876 111279 27499 2.85097 2.85097 -103.462 -2.85097 0 0 701300. 2426.64 0.23 0.08 0.19 -1 -1 0.23 0.0357191 0.0322237 107 34 56 28 28 28 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.68 vpr 62.91 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30316 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 24.0 MiB 0.11 802 15390 5648 7380 2362 62.9 MiB 0.18 0.00 3.5251 -121.985 -3.5251 3.5251 0.97 0.000982152 0.000913161 0.0875548 0.081438 32 2017 23 6.64007e+06 226044 554710. 1919.41 1.13 0.213434 0.194352 22834 132086 -1 1792 21 1581 2549 178377 40946 2.94697 2.94697 -120.267 -2.94697 0 0 701300. 2426.64 0.23 0.11 0.19 -1 -1 0.23 0.0410868 0.0371109 125 3 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.58 vpr 62.98 MiB 0.08 7024 -1 -1 1 0.03 -1 -1 30304 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 24.1 MiB 0.10 772 9679 2262 6618 799 63.0 MiB 0.12 0.00 3.47387 -114.287 -3.47387 3.47387 0.96 0.000999375 0.000927766 0.0474954 0.0440558 28 2082 20 6.64007e+06 389298 500653. 1732.36 1.10 0.170346 0.154075 21970 115934 -1 1858 20 1288 2146 134035 31511 2.71377 2.71377 -110.497 -2.71377 0 0 612192. 2118.31 0.21 0.09 0.17 -1 -1 0.21 0.0397444 0.0358442 119 34 61 31 31 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.64 vpr 63.23 MiB 0.03 7164 -1 -1 1 0.03 -1 -1 30076 -1 -1 31 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 29 32 312 264 1 154 92 17 17 289 -1 unnamed_device 24.3 MiB 0.16 877 15824 4460 9332 2032 63.2 MiB 0.17 0.00 2.80466 -91.9047 -2.80466 2.80466 0.97 0.000796961 0.00073546 0.0708461 0.0656364 26 1994 20 6.64007e+06 389298 477104. 1650.88 1.15 0.19457 0.176342 21682 110474 -1 1850 21 1261 2063 144309 32254 2.28271 2.28271 -92.0582 -2.28271 0 0 585099. 2024.56 0.19 0.09 0.16 -1 -1 0.19 0.0415698 0.037517 110 61 29 29 57 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 6.21 vpr 63.66 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30564 -1 -1 41 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65192 32 32 423 310 1 229 105 17 17 289 -1 unnamed_device 25.1 MiB 0.21 1234 17889 5288 10109 2492 63.7 MiB 0.27 0.00 4.16036 -142.499 -4.16036 4.16036 0.97 0.00139893 0.00130313 0.107278 0.0997537 28 3545 25 6.64007e+06 514878 500653. 1732.36 2.35 0.29575 0.269966 21970 115934 -1 2771 23 2018 3505 277286 57834 3.59443 3.59443 -140.539 -3.59443 0 0 612192. 2118.31 0.22 0.15 0.17 -1 -1 0.22 0.0627629 0.0569747 181 29 128 32 27 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 7.14 vpr 63.38 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30464 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 403 317 1 198 101 17 17 289 -1 unnamed_device 24.5 MiB 0.18 1001 12556 2992 8501 1063 63.4 MiB 0.17 0.00 3.5823 -124.897 -3.5823 3.5823 0.95 0.00128262 0.00119039 0.0727695 0.0674339 26 2647 27 6.64007e+06 464646 477104. 1650.88 3.59 0.454363 0.410281 21682 110474 -1 2131 19 1671 2462 155864 36324 3.06617 3.06617 -126.861 -3.06617 0 0 585099. 2024.56 0.19 0.11 0.16 -1 -1 0.19 0.0490066 0.044526 154 65 62 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 7.16 vpr 62.89 MiB 0.02 7272 -1 -1 1 0.03 -1 -1 30656 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64396 31 32 353 302 1 156 92 17 17 289 -1 unnamed_device 24.0 MiB 0.22 849 6716 1490 4831 395 62.9 MiB 0.09 0.00 3.4309 -114.527 -3.4309 3.4309 1.04 0.00108174 0.00100329 0.0383568 0.0355768 26 2093 24 6.64007e+06 364182 477104. 1650.88 3.63 0.350663 0.314689 21682 110474 -1 1884 21 1217 2072 138023 31593 2.79677 2.79677 -112.621 -2.79677 0 0 585099. 2024.56 0.19 0.10 0.16 -1 -1 0.19 0.0442234 0.0398671 114 90 0 0 89 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 6.76 vpr 63.21 MiB 0.02 7404 -1 -1 1 0.03 -1 -1 30564 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 31 32 391 309 1 194 87 17 17 289 -1 unnamed_device 24.1 MiB 0.19 1058 10839 2803 6606 1430 63.2 MiB 0.16 0.00 3.4841 -118.469 -3.4841 3.4841 0.96 0.00124853 0.0011604 0.0730161 0.0678312 28 2604 24 6.64007e+06 301392 500653. 1732.36 3.13 0.436219 0.393907 21970 115934 -1 2242 21 1694 2807 185283 43066 3.02797 3.02797 -118.736 -3.02797 0 0 612192. 2118.31 0.20 0.12 0.17 -1 -1 0.20 0.051426 0.0466055 149 64 60 30 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.99 vpr 63.44 MiB 0.05 7376 -1 -1 1 0.03 -1 -1 30500 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 31 32 455 371 1 193 86 17 17 289 -1 unnamed_device 24.6 MiB 0.33 953 7835 1760 5704 371 63.4 MiB 0.13 0.00 5.23812 -147.937 -5.23812 5.23812 0.95 0.00138189 0.00128455 0.0608408 0.056564 32 2489 22 6.64007e+06 288834 554710. 1919.41 1.20 0.234689 0.212809 22834 132086 -1 2099 22 1328 2260 170864 38627 4.06588 4.06588 -142.772 -4.06588 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0589001 0.0532331 150 124 0 0 124 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.70 vpr 63.32 MiB 0.03 7244 -1 -1 1 0.03 -1 -1 30432 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 31 32 413 333 1 188 86 17 17 289 -1 unnamed_device 24.2 MiB 0.26 955 10859 3044 7047 768 63.3 MiB 0.16 0.00 5.02279 -136.574 -5.02279 5.02279 0.94 0.00128994 0.00119952 0.0778166 0.0723867 30 2194 18 6.64007e+06 288834 526063. 1820.29 1.07 0.214092 0.194725 22546 126617 -1 1811 17 953 1502 84216 19390 3.80628 3.80628 -130.763 -3.80628 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0450446 0.0409589 144 90 31 31 89 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 5.20 vpr 63.47 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30448 -1 -1 35 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64996 31 32 391 309 1 193 98 17 17 289 -1 unnamed_device 24.7 MiB 0.16 1024 15398 4164 9880 1354 63.5 MiB 0.20 0.00 3.5401 -119.706 -3.5401 3.5401 0.95 0.00124883 0.00115072 0.0883208 0.0818606 26 2863 23 6.64007e+06 439530 477104. 1650.88 1.56 0.251498 0.228786 21682 110474 -1 2185 21 1584 2783 182949 41113 3.04137 3.04137 -118.897 -3.04137 0 0 585099. 2024.56 0.19 0.11 0.16 -1 -1 0.19 0.0512198 0.0464587 148 64 60 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.87 vpr 63.73 MiB 0.04 7236 -1 -1 1 0.03 -1 -1 30720 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65260 32 32 407 319 1 198 101 17 17 289 -1 unnamed_device 24.9 MiB 0.16 865 10206 2264 6941 1001 63.7 MiB 0.14 0.00 4.23656 -140.329 -4.23656 4.23656 0.95 0.00126173 0.00117225 0.0592174 0.0549554 32 2778 25 6.64007e+06 464646 554710. 1919.41 1.29 0.226139 0.2052 22834 132086 -1 2089 20 1834 2849 178412 43461 3.63963 3.63963 -136.194 -3.63963 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0504513 0.0457703 156 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 5.05 vpr 63.53 MiB 0.03 7464 -1 -1 1 0.04 -1 -1 30652 -1 -1 42 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65056 32 32 496 380 1 232 106 17 17 289 -1 unnamed_device 24.9 MiB 0.20 1205 17356 4219 10649 2488 63.5 MiB 0.24 0.00 4.21478 -145.938 -4.21478 4.21478 1.00 0.00154509 0.00143188 0.111106 0.10332 32 2800 20 6.64007e+06 527436 554710. 1919.41 1.26 0.303234 0.27672 22834 132086 -1 2489 18 1805 2833 192180 41804 3.65443 3.65443 -142.902 -3.65443 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0569476 0.0517284 186 96 62 32 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.62 vpr 63.10 MiB 0.04 6956 -1 -1 1 0.03 -1 -1 30584 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 24.2 MiB 0.16 655 13731 5030 6417 2284 63.1 MiB 0.16 0.00 3.7665 -117.146 -3.7665 3.7665 0.96 0.00100778 0.000936586 0.0813734 0.0756253 32 1845 24 6.64007e+06 226044 554710. 1919.41 1.11 0.213403 0.194085 22834 132086 -1 1531 18 1200 1878 126764 31492 2.88417 2.88417 -110.663 -2.88417 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0394959 0.0356604 116 34 62 31 31 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.85 vpr 63.44 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30548 -1 -1 38 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 31 32 395 311 1 196 101 17 17 289 -1 unnamed_device 24.6 MiB 0.16 910 7386 1527 5477 382 63.4 MiB 0.11 0.00 4.20356 -136.322 -4.20356 4.20356 0.95 0.00126292 0.00117515 0.0427251 0.0396678 32 2730 23 6.64007e+06 477204 554710. 1919.41 1.24 0.202965 0.184031 22834 132086 -1 2085 21 1746 2759 176961 42586 3.86663 3.86663 -141.998 -3.86663 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0520252 0.0471792 152 64 62 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.80 vpr 63.20 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30612 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 397 313 1 196 98 17 17 289 -1 unnamed_device 24.3 MiB 0.16 994 14048 3500 8468 2080 63.2 MiB 0.19 0.00 3.7163 -119.726 -3.7163 3.7163 0.95 0.00125032 0.00116153 0.0816021 0.0758234 32 2470 21 6.64007e+06 426972 554710. 1919.41 1.19 0.238755 0.217363 22834 132086 -1 2007 22 1670 2926 184055 42950 2.91517 2.91517 -111.183 -2.91517 0 0 701300. 2426.64 0.22 0.12 0.16 -1 -1 0.22 0.0540264 0.0489722 149 63 62 32 62 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.89 vpr 63.42 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30432 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64944 32 32 345 257 1 194 86 17 17 289 -1 unnamed_device 24.4 MiB 0.13 1080 15017 4624 8554 1839 63.4 MiB 0.21 0.00 4.14936 -144.892 -4.14936 4.14936 0.95 0.00116895 0.00108719 0.0958405 0.0891669 32 2642 22 6.64007e+06 276276 554710. 1919.41 1.21 0.245068 0.223644 22834 132086 -1 2344 18 1728 3059 207410 45325 3.63843 3.63843 -143.826 -3.63843 0 0 701300. 2426.64 0.23 0.11 0.19 -1 -1 0.23 0.0435542 0.0396022 151 3 128 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.88 vpr 63.45 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30428 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 424 343 1 190 99 17 17 289 -1 unnamed_device 24.4 MiB 0.22 1044 15603 4218 9336 2049 63.4 MiB 0.20 0.00 3.55822 -125.535 -3.55822 3.55822 0.95 0.00128685 0.00119457 0.0917366 0.0851464 32 2404 21 6.64007e+06 439530 554710. 1919.41 1.14 0.253666 0.230906 22834 132086 -1 2140 23 1494 2286 156511 35184 2.75357 2.75357 -117.658 -2.75357 0 0 701300. 2426.64 0.22 0.12 0.20 -1 -1 0.22 0.0576037 0.0521228 146 96 25 25 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 6.03 vpr 63.24 MiB 0.11 7192 -1 -1 1 0.03 -1 -1 30340 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 395 311 1 194 101 17 17 289 -1 unnamed_device 24.1 MiB 0.13 1017 12791 3286 8285 1220 63.2 MiB 0.17 0.00 3.47912 -120.914 -3.47912 3.47912 0.95 0.00125526 0.00116658 0.0716289 0.0664208 26 2727 36 6.64007e+06 464646 477104. 1650.88 2.44 0.258545 0.234351 21682 110474 -1 2057 17 1061 1896 120949 29081 3.26357 3.26357 -123.648 -3.26357 0 0 585099. 2024.56 0.19 0.10 0.16 -1 -1 0.19 0.0468426 0.0427093 148 61 64 32 60 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.82 vpr 63.45 MiB 0.02 7244 -1 -1 1 0.04 -1 -1 30512 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 405 318 1 200 103 17 17 289 -1 unnamed_device 24.6 MiB 0.17 1102 19142 5372 11310 2460 63.4 MiB 0.23 0.00 3.5243 -123.608 -3.5243 3.5243 0.95 0.00127557 0.00118569 0.105295 0.0977737 32 2456 22 6.64007e+06 489762 554710. 1919.41 1.18 0.270563 0.246819 22834 132086 -1 2022 22 1778 2816 177947 39171 2.75177 2.75177 -114.877 -2.75177 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0554633 0.0502999 157 65 63 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.66 vpr 63.68 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30548 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65204 32 32 376 288 1 194 101 17 17 289 -1 unnamed_device 24.8 MiB 0.11 1032 14906 4320 9186 1400 63.7 MiB 0.20 0.00 4.18856 -144.112 -4.18856 4.18856 0.95 0.00123109 0.00114574 0.0815206 0.0757776 30 2350 21 6.64007e+06 464646 526063. 1820.29 1.16 0.22517 0.20507 22546 126617 -1 1948 23 1626 2580 137099 31450 3.46723 3.46723 -136.683 -3.46723 0 0 666494. 2306.21 0.22 0.11 0.18 -1 -1 0.22 0.0547818 0.0496988 152 34 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 5.51 vpr 63.34 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30708 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 407 319 1 197 103 17 17 289 -1 unnamed_device 24.5 MiB 0.17 1016 12153 3010 8355 788 63.3 MiB 0.16 0.00 4.23153 -146.068 -4.23153 4.23153 0.95 0.00128896 0.00119875 0.0685286 0.063655 26 3093 37 6.64007e+06 489762 477104. 1650.88 1.95 0.265685 0.240945 21682 110474 -1 2387 22 2013 3233 250133 55046 4.22543 4.22543 -157.694 -4.22543 0 0 585099. 2024.56 0.19 0.14 0.16 -1 -1 0.19 0.0550271 0.0497469 155 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 5.37 vpr 63.55 MiB 0.04 7420 -1 -1 1 0.03 -1 -1 30572 -1 -1 36 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65076 31 32 449 367 1 193 99 17 17 289 -1 unnamed_device 24.6 MiB 0.23 1147 12639 3382 8238 1019 63.6 MiB 0.18 0.00 4.39296 -135.032 -4.39296 4.39296 0.95 0.00135937 0.00126153 0.0784471 0.0728653 28 2942 24 6.64007e+06 452088 500653. 1732.36 1.65 0.266958 0.242317 21970 115934 -1 2526 22 1546 2792 197546 44807 3.93003 3.93003 -135.196 -3.93003 0 0 612192. 2118.31 0.21 0.13 0.17 -1 -1 0.21 0.0582562 0.0527252 147 122 0 0 122 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 5.00 vpr 63.36 MiB 0.04 7328 -1 -1 1 0.03 -1 -1 30524 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 32 32 432 346 1 195 86 17 17 289 -1 unnamed_device 24.5 MiB 0.21 1069 15584 4992 8664 1928 63.4 MiB 0.23 0.00 4.34993 -137.194 -4.34993 4.34993 0.96 0.00132294 0.00122917 0.113045 0.10504 32 2682 22 6.64007e+06 276276 554710. 1919.41 1.22 0.282477 0.257605 22834 132086 -1 2344 20 1715 3137 203196 46058 3.66863 3.66863 -139.699 -3.66863 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0532876 0.0483233 151 94 32 32 94 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 4.53 vpr 63.03 MiB 0.04 7132 -1 -1 1 0.03 -1 -1 30616 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 312 255 1 166 95 17 17 289 -1 unnamed_device 24.2 MiB 0.11 928 8735 1852 5986 897 63.0 MiB 0.11 0.00 3.50687 -122.364 -3.50687 3.50687 0.95 0.0010111 0.000938088 0.0440406 0.0409112 28 2194 20 6.64007e+06 389298 500653. 1732.36 1.09 0.170342 0.154174 21970 115934 -1 1978 19 1179 1910 123808 28910 3.00117 3.00117 -122.224 -3.00117 0 0 612192. 2118.31 0.20 0.09 0.17 -1 -1 0.20 0.0390889 0.0353255 125 34 63 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.65 vpr 63.07 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 30392 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64588 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 24.2 MiB 0.20 885 10406 2864 6861 681 63.1 MiB 0.15 0.00 3.5031 -121.505 -3.5031 3.5031 0.99 0.00113954 0.00105791 0.0700182 0.0650313 26 2216 20 6.64007e+06 226044 477104. 1650.88 1.09 0.211196 0.191726 21682 110474 -1 1923 21 1319 2114 157118 34146 2.99217 2.99217 -120.399 -2.99217 0 0 585099. 2024.56 0.21 0.12 0.14 -1 -1 0.21 0.0568033 0.0515681 121 94 0 0 94 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 5.07 vpr 63.67 MiB 0.03 7328 -1 -1 1 0.03 -1 -1 30784 -1 -1 42 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65200 32 32 469 351 1 233 106 17 17 289 -1 unnamed_device 25.0 MiB 0.12 1352 17606 4821 10688 2097 63.7 MiB 0.26 0.01 4.98622 -168.741 -4.98622 4.98622 0.95 0.00148734 0.00138316 0.108369 0.100785 32 3475 26 6.64007e+06 527436 554710. 1919.41 1.40 0.306069 0.279173 22834 132086 -1 2824 23 2578 4316 291727 66454 5.23049 5.23049 -176.821 -5.23049 0 0 701300. 2426.64 0.23 0.17 0.19 -1 -1 0.23 0.0670393 0.0608676 189 65 96 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.66 vpr 63.25 MiB 0.04 7112 -1 -1 1 0.03 -1 -1 30336 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64768 32 32 368 284 1 194 97 17 17 289 -1 unnamed_device 24.1 MiB 0.18 1055 17857 5354 10411 2092 63.2 MiB 0.23 0.00 3.51607 -123.396 -3.51607 3.51607 0.95 0.00120792 0.00112235 0.100328 0.0930252 30 2214 17 6.64007e+06 414414 526063. 1820.29 1.06 0.244052 0.222724 22546 126617 -1 1952 19 1238 1872 93959 22767 2.93717 2.93717 -120.668 -2.93717 0 0 666494. 2306.21 0.22 0.09 0.18 -1 -1 0.22 0.0465255 0.0422588 148 34 92 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.59 vpr 63.09 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30328 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 30 32 296 244 1 158 93 17 17 289 -1 unnamed_device 24.2 MiB 0.11 854 17523 5448 9891 2184 63.1 MiB 0.19 0.00 3.4529 -114.919 -3.4529 3.4529 0.95 0.000982283 0.000912357 0.0851734 0.0790847 30 1877 21 6.64007e+06 389298 526063. 1820.29 1.05 0.209171 0.190231 22546 126617 -1 1638 19 882 1371 83618 18199 2.61677 2.61677 -105.127 -2.61677 0 0 666494. 2306.21 0.22 0.07 0.18 -1 -1 0.22 0.037794 0.0341673 116 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 5.20 vpr 63.55 MiB 0.05 7536 -1 -1 1 0.04 -1 -1 30916 -1 -1 45 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65080 32 32 531 413 1 232 109 17 17 289 -1 unnamed_device 25.0 MiB 0.38 1192 13629 3357 8864 1408 63.6 MiB 0.20 0.00 4.97469 -167.233 -4.97469 4.97469 0.95 0.00159005 0.00147882 0.0878394 0.0815774 32 2903 21 6.64007e+06 565110 554710. 1919.41 1.26 0.288018 0.262119 22834 132086 -1 2418 20 2252 3402 219342 48676 4.52829 4.52829 -165.734 -4.52829 0 0 701300. 2426.64 0.24 0.14 0.19 -1 -1 0.24 0.0641886 0.0582815 188 127 32 32 128 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.92 vpr 63.30 MiB 0.04 7136 -1 -1 1 0.03 -1 -1 30636 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 376 288 1 194 102 17 17 289 -1 unnamed_device 24.5 MiB 0.15 1027 16762 4357 10483 1922 63.3 MiB 0.20 0.00 4.27488 -146.847 -4.27488 4.27488 0.95 0.00122718 0.00114079 0.0895284 0.0831085 28 2555 19 6.64007e+06 477204 500653. 1732.36 1.30 0.239495 0.218182 21970 115934 -1 2308 20 1779 2632 170801 40372 3.76183 3.76183 -147.826 -3.76183 0 0 612192. 2118.31 0.20 0.11 0.17 -1 -1 0.20 0.0494621 0.044884 153 34 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.41 vpr 62.99 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30316 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 283 225 1 164 96 17 17 289 -1 unnamed_device 24.1 MiB 0.08 882 11046 2802 6952 1292 63.0 MiB 0.13 0.00 3.5621 -124.172 -3.5621 3.5621 0.86 0.000986704 0.000917513 0.0531458 0.0493247 30 1789 19 6.64007e+06 401856 526063. 1820.29 1.06 0.173121 0.15701 22546 126617 -1 1527 18 784 1304 70997 17006 2.46797 2.46797 -107.154 -2.46797 0 0 666494. 2306.21 0.22 0.07 0.18 -1 -1 0.22 0.0361507 0.0327594 124 3 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 5.28 vpr 63.38 MiB 0.05 7260 -1 -1 1 0.08 -1 -1 30816 -1 -1 43 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64904 32 32 438 320 1 235 107 17 17 289 -1 unnamed_device 24.8 MiB 0.15 1334 20347 5362 13158 1827 63.4 MiB 0.27 0.00 4.95502 -168.119 -4.95502 4.95502 1.02 0.00142769 0.00132929 0.115229 0.107234 30 3282 23 6.64007e+06 539994 526063. 1820.29 1.45 0.301668 0.27554 22546 126617 -1 2570 22 2061 3452 211185 45460 4.62329 4.62329 -171.941 -4.62329 0 0 666494. 2306.21 0.22 0.14 0.18 -1 -1 0.22 0.0619404 0.0562199 190 34 128 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.27 vpr 62.86 MiB 0.03 6948 -1 -1 1 0.03 -1 -1 30264 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 283 225 1 162 81 17 17 289 -1 unnamed_device 24.0 MiB 0.07 623 13731 4925 6406 2400 62.9 MiB 0.16 0.00 3.5061 -118.666 -3.5061 3.5061 0.95 0.000979778 0.000910056 0.079622 0.0740555 32 2319 30 6.64007e+06 213486 554710. 1919.41 1.13 0.208561 0.189287 22834 132086 -1 1561 21 1442 2278 155291 39307 3.29657 3.29657 -120.613 -3.29657 0 0 701300. 2426.64 0.22 0.10 0.20 -1 -1 0.22 0.0406854 0.0367124 121 3 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.48 vpr 63.06 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30204 -1 -1 32 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 30 32 296 244 1 157 94 17 17 289 -1 unnamed_device 24.1 MiB 0.14 846 13087 3844 8172 1071 63.1 MiB 0.15 0.00 3.50322 -113.721 -3.50322 3.50322 0.95 0.000986471 0.00091685 0.0633112 0.0587501 28 1867 21 6.64007e+06 401856 500653. 1732.36 1.05 0.186544 0.169116 21970 115934 -1 1602 18 1023 1691 95128 22649 2.64977 2.64977 -104.893 -2.64977 0 0 612192. 2118.31 0.20 0.07 0.17 -1 -1 0.20 0.0299389 0.026985 114 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.74 vpr 63.19 MiB 0.03 7456 -1 -1 1 0.03 -1 -1 30396 -1 -1 34 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 29 32 393 319 1 182 95 17 17 289 -1 unnamed_device 24.0 MiB 0.21 1003 12839 3224 8329 1286 63.2 MiB 0.17 0.00 3.6803 -109.03 -3.6803 3.6803 0.95 0.00121572 0.00113001 0.0753906 0.0700562 26 2451 24 6.64007e+06 426972 477104. 1650.88 1.17 0.231359 0.210219 21682 110474 -1 2126 19 1356 2370 153384 35770 3.11756 3.11756 -113.201 -3.11756 0 0 585099. 2024.56 0.19 0.10 0.16 -1 -1 0.19 0.0465188 0.0421109 134 88 29 29 85 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.81 vpr 63.34 MiB 0.03 7068 -1 -1 1 0.04 -1 -1 30748 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 407 319 1 194 86 17 17 289 -1 unnamed_device 24.3 MiB 0.16 937 11048 2797 7564 687 63.3 MiB 0.16 0.00 4.21976 -143.232 -4.21976 4.21976 0.95 0.00127675 0.00118661 0.0782193 0.0727372 32 2271 23 6.64007e+06 276276 554710. 1919.41 1.24 0.242328 0.220674 22834 132086 -1 1946 21 1977 2972 204053 46827 3.81683 3.81683 -147.104 -3.81683 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0532359 0.0482916 152 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 5.11 vpr 63.39 MiB 0.02 7192 -1 -1 1 0.04 -1 -1 30760 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 32 32 407 319 1 195 100 17 17 289 -1 unnamed_device 24.5 MiB 0.26 1070 15876 4480 9346 2050 63.4 MiB 0.22 0.00 4.25856 -146.098 -4.25856 4.25856 0.95 0.00128376 0.00119269 0.0912503 0.0847435 32 2696 29 6.64007e+06 452088 554710. 1919.41 1.36 0.272221 0.247651 22834 132086 -1 2464 22 1898 3089 213624 47396 3.73543 3.73543 -146.789 -3.73543 0 0 701300. 2426.64 0.23 0.13 0.19 -1 -1 0.23 0.0551112 0.0499448 154 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.79 vpr 63.07 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30560 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64588 32 32 345 287 1 161 96 17 17 289 -1 unnamed_device 24.2 MiB 0.18 863 8856 1892 6516 448 63.1 MiB 0.12 0.00 3.4749 -121.747 -3.4749 3.4749 0.95 0.00109153 0.00101327 0.0474735 0.0440319 32 2079 22 6.64007e+06 401856 554710. 1919.41 1.15 0.1853 0.167624 22834 132086 -1 1814 21 1332 2091 149944 33656 2.80957 2.80957 -116.543 -2.80957 0 0 701300. 2426.64 0.30 0.10 0.19 -1 -1 0.30 0.0451747 0.0408035 122 65 32 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.80 vpr 62.94 MiB 0.02 7052 -1 -1 1 0.04 -1 -1 30440 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64448 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 24.1 MiB 0.22 821 8336 2395 4162 1779 62.9 MiB 0.11 0.00 3.72326 -116.749 -3.72326 3.72326 0.95 0.00108546 0.00100774 0.0555844 0.0516273 32 1910 21 6.64007e+06 213486 554710. 1919.41 1.13 0.190674 0.172686 22834 132086 -1 1689 17 929 1729 94151 23145 2.89177 2.89177 -110.219 -2.89177 0 0 701300. 2426.64 0.27 0.08 0.19 -1 -1 0.27 0.0381296 0.0344701 109 90 0 0 89 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.66 vpr 63.30 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 30416 -1 -1 35 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 30 32 374 297 1 186 97 17 17 289 -1 unnamed_device 24.2 MiB 0.19 919 13195 3488 8459 1248 63.3 MiB 0.17 0.00 3.5511 -113.034 -3.5511 3.5511 0.95 0.00119014 0.00110622 0.0731785 0.0679676 26 2372 24 6.64007e+06 439530 477104. 1650.88 1.19 0.226169 0.2054 21682 110474 -1 1897 18 972 1718 98070 24209 2.91877 2.91877 -111.933 -2.91877 0 0 585099. 2024.56 0.20 0.09 0.16 -1 -1 0.20 0.0445005 0.0403775 139 60 60 30 57 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.88 vpr 63.24 MiB 0.02 7216 -1 -1 1 0.03 -1 -1 30384 -1 -1 32 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 28 32 332 260 1 180 92 17 17 289 -1 unnamed_device 24.2 MiB 0.12 939 14996 4215 8524 2257 63.2 MiB 0.18 0.00 4.39198 -124.88 -4.39198 4.39198 0.95 0.00108305 0.0010082 0.0813356 0.0756071 26 2459 20 6.64007e+06 401856 477104. 1650.88 1.44 0.215195 0.195907 21682 110474 -1 2143 22 1576 2525 191177 41342 3.71862 3.71862 -128.803 -3.71862 0 0 585099. 2024.56 0.23 0.10 0.15 -1 -1 0.23 0.0355524 0.0319696 134 34 84 28 28 28 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.62 vpr 63.18 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 30168 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 30 32 325 273 1 157 81 17 17 289 -1 unnamed_device 24.3 MiB 0.18 812 12506 4081 6359 2066 63.2 MiB 0.16 0.00 3.5343 -115.469 -3.5343 3.5343 0.95 0.00103955 0.000969621 0.0765487 0.0710716 32 1970 21 6.64007e+06 238602 554710. 1919.41 1.12 0.205308 0.18639 22834 132086 -1 1722 19 1222 2008 145659 30923 2.69057 2.69057 -109.105 -2.69057 0 0 701300. 2426.64 0.23 0.10 0.19 -1 -1 0.23 0.0321006 0.0288347 115 63 30 30 60 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.72 vpr 63.15 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30320 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 361 308 1 158 81 17 17 289 -1 unnamed_device 24.3 MiB 0.22 892 11281 2807 6986 1488 63.1 MiB 0.15 0.00 3.6865 -117.315 -3.6865 3.6865 0.97 0.00112062 0.00104012 0.0756766 0.0702726 30 1814 21 6.64007e+06 213486 526063. 1820.29 1.07 0.216034 0.196111 22546 126617 -1 1687 17 815 1359 86402 19223 2.67457 2.67457 -106.696 -2.67457 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0390476 0.035389 114 91 0 0 91 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.77 vpr 63.27 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30288 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64792 31 32 335 251 1 196 100 17 17 289 -1 unnamed_device 24.2 MiB 0.11 1121 19124 6194 10224 2706 63.3 MiB 0.23 0.00 4.18856 -139.706 -4.18856 4.18856 0.95 0.00114029 0.00105659 0.0968643 0.0900323 32 2632 21 6.64007e+06 464646 554710. 1919.41 1.18 0.24002 0.219046 22834 132086 -1 2206 20 1690 2797 185921 40582 3.70983 3.70983 -138.492 -3.70983 0 0 701300. 2426.64 0.23 0.11 0.19 -1 -1 0.23 0.0459905 0.0417413 152 4 124 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 5.13 vpr 63.40 MiB 0.04 7260 -1 -1 1 0.03 -1 -1 30680 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 407 319 1 197 100 17 17 289 -1 unnamed_device 24.5 MiB 0.21 1037 18660 5257 10625 2778 63.4 MiB 0.24 0.00 4.17032 -143.358 -4.17032 4.17032 1.06 0.00127928 0.00118913 0.106421 0.0987899 32 2714 19 6.64007e+06 452088 554710. 1919.41 1.24 0.263562 0.240484 22834 132086 -1 2168 21 1856 3139 205603 45688 3.58523 3.58523 -137.998 -3.58523 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0535114 0.0485162 155 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.87 vpr 63.34 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30356 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 32 32 407 319 1 194 100 17 17 289 -1 unnamed_device 24.4 MiB 0.19 1085 15876 4268 10377 1231 63.3 MiB 0.20 0.00 4.15553 -144.194 -4.15553 4.15553 0.97 0.00128852 0.00119801 0.0924009 0.08577 32 2694 21 6.64007e+06 452088 554710. 1919.41 1.23 0.254786 0.232099 22834 132086 -1 2306 20 1740 2835 186964 42392 3.63423 3.63423 -144.496 -3.63423 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0517734 0.0469792 153 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 12.06 vpr 63.39 MiB 0.04 7232 -1 -1 1 0.04 -1 -1 30476 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 32 32 399 315 1 196 102 17 17 289 -1 unnamed_device 24.5 MiB 0.21 958 7956 1551 5183 1222 63.4 MiB 0.11 0.00 4.17056 -134.333 -4.17056 4.17056 0.95 0.00127982 0.00119002 0.0465585 0.0433107 28 3481 33 6.64007e+06 477204 500653. 1732.36 8.49 0.402419 0.362675 21970 115934 -1 2359 18 1490 2576 174926 43768 3.89103 3.89103 -138.495 -3.89103 0 0 612192. 2118.31 0.20 0.11 0.17 -1 -1 0.20 0.0466285 0.042349 149 65 60 30 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.68 vpr 62.96 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 30384 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 30 32 296 244 1 156 81 17 17 289 -1 unnamed_device 24.1 MiB 0.15 840 12856 4254 6466 2136 63.0 MiB 0.15 0.00 3.4921 -115.538 -3.4921 3.4921 0.96 0.000979212 0.000909362 0.0746744 0.0693727 32 2098 17 6.64007e+06 238602 554710. 1919.41 1.12 0.191236 0.173762 22834 132086 -1 1854 23 1282 2024 145802 32486 2.85177 2.85177 -114.379 -2.85177 0 0 701300. 2426.64 0.28 0.12 0.19 -1 -1 0.28 0.0491657 0.0446036 113 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 5.19 vpr 63.21 MiB 0.03 7228 -1 -1 1 0.03 -1 -1 30324 -1 -1 24 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 30 32 383 303 1 191 86 17 17 289 -1 unnamed_device 24.2 MiB 0.23 996 13127 3599 7422 2106 63.2 MiB 0.18 0.00 4.20393 -135.69 -4.20393 4.20393 0.95 0.00123131 0.00114472 0.0883443 0.0821796 26 2570 22 6.64007e+06 301392 477104. 1650.88 1.55 0.245904 0.22397 21682 110474 -1 2255 23 1911 2793 202480 46338 4.20463 4.20463 -142.015 -4.20463 0 0 585099. 2024.56 0.20 0.13 0.16 -1 -1 0.20 0.0551065 0.04998 146 63 60 30 60 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 6.33 vpr 63.78 MiB 0.02 7400 -1 -1 1 0.03 -1 -1 30920 -1 -1 41 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65308 32 32 469 381 1 198 105 17 17 289 -1 unnamed_device 24.5 MiB 0.24 1061 10232 2187 7405 640 63.8 MiB 0.15 0.00 4.16036 -143.59 -4.16036 4.16036 0.96 0.00139881 0.00129933 0.0621425 0.0577114 26 3091 27 6.64007e+06 514878 477104. 1650.88 2.67 0.256626 0.232203 21682 110474 -1 2470 24 2129 3662 254812 56783 3.87763 3.87763 -150.717 -3.87763 0 0 585099. 2024.56 0.19 0.15 0.16 -1 -1 0.19 0.0644066 0.0581209 156 127 0 0 128 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 5.07 vpr 63.37 MiB 0.02 7192 -1 -1 1 0.05 -1 -1 30416 -1 -1 33 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 31 32 425 341 1 189 96 17 17 289 -1 unnamed_device 24.5 MiB 0.15 924 14769 3776 9247 1746 63.4 MiB 0.20 0.00 4.18868 -135.93 -4.18868 4.18868 0.95 0.00130306 0.0012106 0.0901867 0.0837043 32 2520 23 6.64007e+06 414414 554710. 1919.41 1.27 0.260146 0.237006 22834 132086 -1 1968 21 1559 2523 151398 36244 3.68663 3.68663 -135.139 -3.68663 0 0 701300. 2426.64 0.28 0.10 0.20 -1 -1 0.28 0.0498321 0.0451013 148 94 31 31 93 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.83 vpr 63.20 MiB 0.03 7376 -1 -1 1 0.03 -1 -1 30424 -1 -1 32 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 30 32 404 328 1 182 94 17 17 289 -1 unnamed_device 24.2 MiB 0.18 981 15217 4561 7983 2673 63.2 MiB 0.20 0.00 3.6613 -113.514 -3.6613 3.6613 0.95 0.00125855 0.00116911 0.0932742 0.0866676 32 2166 20 6.64007e+06 401856 554710. 1919.41 1.16 0.24673 0.224721 22834 132086 -1 1897 21 1380 2255 138409 32039 2.99017 2.99017 -111.94 -2.99017 0 0 701300. 2426.64 0.23 0.10 0.20 -1 -1 0.23 0.0515106 0.0466341 138 92 26 26 90 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 5.12 vpr 63.21 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30540 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 407 319 1 198 86 17 17 289 -1 unnamed_device 24.3 MiB 0.33 1125 9725 2385 6614 726 63.2 MiB 0.16 0.00 4.21673 -144.443 -4.21673 4.21673 0.95 0.00127935 0.00118921 0.0695185 0.0646773 30 2755 23 6.64007e+06 276276 526063. 1820.29 1.28 0.235422 0.214407 22546 126617 -1 2426 18 1756 2988 165500 39165 3.63843 3.63843 -145.722 -3.63843 0 0 666494. 2306.21 0.22 0.11 0.18 -1 -1 0.22 0.0479473 0.0436147 155 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.78 vpr 63.12 MiB 0.03 7244 -1 -1 1 0.05 -1 -1 30364 -1 -1 36 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64636 29 32 387 316 1 179 97 17 17 289 -1 unnamed_device 24.0 MiB 0.19 964 18079 5198 10699 2182 63.1 MiB 0.21 0.00 3.5353 -109.347 -3.5353 3.5353 0.95 0.00119797 0.00111365 0.101108 0.0937499 32 2205 23 6.64007e+06 452088 554710. 1919.41 1.16 0.255041 0.232161 22834 132086 -1 1917 20 1480 2395 153837 35367 2.98837 2.98837 -106.254 -2.98837 0 0 701300. 2426.64 0.23 0.10 0.19 -1 -1 0.23 0.0482532 0.0436964 136 88 26 26 85 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.68 vpr 62.91 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30512 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 283 225 1 156 81 17 17 289 -1 unnamed_device 24.0 MiB 0.10 799 9356 2113 6168 1075 62.9 MiB 0.12 0.00 3.4921 -122.483 -3.4921 3.4921 0.95 0.00098074 0.00091186 0.0547617 0.0509542 32 1933 21 6.64007e+06 213486 554710. 1919.41 1.13 0.17684 0.160484 22834 132086 -1 1746 20 1309 2038 140179 31697 2.90477 2.90477 -119.498 -2.90477 0 0 701300. 2426.64 0.23 0.10 0.19 -1 -1 0.23 0.0406135 0.0367914 115 3 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 5.39 vpr 63.25 MiB 0.03 7068 -1 -1 1 0.04 -1 -1 30480 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 32 32 407 319 1 194 99 17 17 289 -1 unnamed_device 24.3 MiB 0.31 992 16743 5741 8435 2567 63.2 MiB 0.22 0.00 4.25856 -144.485 -4.25856 4.25856 0.95 0.00128906 0.00119729 0.0979691 0.091041 28 2940 26 6.64007e+06 439530 500653. 1732.36 1.52 0.269838 0.245832 21970 115934 -1 2391 21 1824 3028 214853 48314 3.86363 3.86363 -149.866 -3.86363 0 0 612192. 2118.31 0.23 0.13 0.16 -1 -1 0.23 0.0536773 0.0486817 152 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 5.13 vpr 63.39 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30556 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64908 32 32 407 319 1 201 87 17 17 289 -1 unnamed_device 24.2 MiB 0.23 1054 17367 5167 10302 1898 63.4 MiB 0.25 0.00 4.21976 -145.962 -4.21976 4.21976 0.96 0.00130357 0.0012129 0.121467 0.113035 32 2490 25 6.64007e+06 288834 554710. 1919.41 1.21 0.291741 0.266446 22834 132086 -1 2166 22 1926 3151 220327 52100 3.68863 3.68863 -143.279 -3.68863 0 0 701300. 2426.64 0.23 0.14 0.19 -1 -1 0.23 0.057732 0.0523469 158 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 5.42 vpr 63.07 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 30392 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 24.2 MiB 0.19 691 7975 1531 6145 299 63.1 MiB 0.10 0.00 3.6913 -111.241 -3.6913 3.6913 0.95 0.00101095 0.000938354 0.0403363 0.0373671 26 2290 37 6.64007e+06 376740 477104. 1650.88 1.91 0.193501 0.174376 21682 110474 -1 1809 20 1168 1833 136009 32871 2.94497 2.94497 -110.67 -2.94497 0 0 585099. 2024.56 0.19 0.11 0.16 -1 -1 0.19 0.0482483 0.0434224 112 55 32 32 54 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.63 vpr 62.72 MiB 0.06 7048 -1 -1 1 0.03 -1 -1 30440 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 23.8 MiB 0.12 653 13381 4684 6039 2658 62.7 MiB 0.16 0.00 3.5533 -116.629 -3.5533 3.5533 0.94 0.000950105 0.000883035 0.0753172 0.0700623 32 1995 26 6.64007e+06 226044 554710. 1919.41 1.13 0.202867 0.184375 22834 132086 -1 1554 16 1211 1853 127409 31046 3.14237 3.14237 -114.992 -3.14237 0 0 701300. 2426.64 0.23 0.08 0.19 -1 -1 0.23 0.0322871 0.0292517 118 4 93 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.91 vpr 63.16 MiB 0.05 7248 -1 -1 1 0.03 -1 -1 30392 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 381 303 1 188 97 17 17 289 -1 unnamed_device 24.1 MiB 0.19 927 16303 4785 8793 2725 63.2 MiB 0.20 0.00 4.16476 -135.871 -4.16476 4.16476 0.95 0.00120844 0.00112208 0.0920885 0.0854766 32 2295 21 6.64007e+06 414414 554710. 1919.41 1.15 0.244609 0.22273 22834 132086 -1 1967 22 1517 2274 163104 37126 3.63083 3.63083 -129.372 -3.63083 0 0 701300. 2426.64 0.22 0.11 0.19 -1 -1 0.22 0.0526544 0.0476652 139 59 60 32 58 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.97 vpr 63.20 MiB 0.05 7252 -1 -1 1 0.03 -1 -1 30392 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 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.4 MiB 0.13 1051 17397 5163 9750 2484 63.2 MiB 0.22 0.00 4.41596 -136.112 -4.41596 4.41596 0.95 0.00126024 0.00116984 0.10279 0.0954035 26 2990 28 6.64007e+06 401856 477104. 1650.88 2.30 0.279915 0.254762 21682 110474 -1 2375 22 1703 2688 210983 46235 3.95102 3.95102 -136.496 -3.95102 0 0 585099. 2024.56 0.19 0.13 0.16 -1 -1 0.19 0.0542813 0.0491481 136 88 28 28 88 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.81 vpr 63.29 MiB 0.03 7360 -1 -1 1 0.03 -1 -1 30548 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 399 285 1 228 101 17 17 289 -1 unnamed_device 24.6 MiB 0.11 1159 10441 2545 7247 649 63.3 MiB 0.16 0.00 4.95022 -163.094 -4.95022 4.95022 0.95 0.00134568 0.00125312 0.0630511 0.0587242 32 3412 24 6.64007e+06 464646 554710. 1919.41 1.34 0.23639 0.215655 22834 132086 -1 2768 22 2343 3752 277181 63284 4.51929 4.51929 -166.594 -4.51929 0 0 701300. 2426.64 0.22 0.08 0.17 -1 -1 0.22 0.0254204 0.0229997 179 3 156 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 7.36 vpr 63.20 MiB 0.05 7388 -1 -1 1 0.03 -1 -1 30712 -1 -1 34 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 30 32 371 295 1 184 96 17 17 289 -1 unnamed_device 24.1 MiB 0.15 809 10170 2335 6303 1532 63.2 MiB 0.13 0.00 3.8005 -110.812 -3.8005 3.8005 0.96 0.00117637 0.00109234 0.06161 0.0574691 32 2220 40 6.64007e+06 426972 554710. 1919.41 3.82 0.437001 0.393437 22834 132086 -1 1707 19 1380 2183 134550 33468 2.96316 2.96316 -111.935 -2.96316 0 0 701300. 2426.64 0.23 0.10 0.19 -1 -1 0.23 0.0451481 0.0408789 138 59 60 30 56 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.66 vpr 62.82 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 30540 -1 -1 21 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64328 27 32 269 226 1 143 80 17 17 289 -1 unnamed_device 23.6 MiB 0.10 529 12292 5081 5761 1450 62.8 MiB 0.12 0.00 3.54427 -98.353 -3.54427 3.54427 0.94 0.00089905 0.00083483 0.0666504 0.0619547 32 1648 39 6.64007e+06 263718 554710. 1919.41 1.25 0.206911 0.187252 22834 132086 -1 1283 21 1156 1617 125703 30421 3.04217 3.04217 -100.453 -3.04217 0 0 701300. 2426.64 0.23 0.09 0.21 -1 -1 0.23 0.0381643 0.0344341 107 34 54 27 27 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 5.17 vpr 63.55 MiB 0.05 7396 -1 -1 1 0.03 -1 -1 30696 -1 -1 42 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 493 378 1 232 106 17 17 289 -1 unnamed_device 24.9 MiB 0.19 1462 20856 5895 12562 2399 63.5 MiB 0.30 0.00 4.52196 -148.077 -4.52196 4.52196 0.95 0.00152309 0.00141555 0.130893 0.121655 30 3434 23 6.64007e+06 527436 526063. 1820.29 1.37 0.326253 0.297678 22546 126617 -1 2882 20 1953 3609 227728 48875 3.83863 3.83863 -145.246 -3.83863 0 0 666494. 2306.21 0.22 0.14 0.19 -1 -1 0.22 0.0614245 0.0557984 186 95 62 31 95 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.92 vpr 63.34 MiB 0.05 7376 -1 -1 1 0.03 -1 -1 30700 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 31 32 455 371 1 188 85 17 17 289 -1 unnamed_device 24.4 MiB 0.28 983 10501 2625 7195 681 63.3 MiB 0.16 0.00 4.43796 -139.728 -4.43796 4.43796 0.95 0.00136533 0.00126669 0.0804074 0.0747198 32 2486 22 6.64007e+06 276276 554710. 1919.41 1.22 0.252435 0.229219 22834 132086 -1 2111 21 1551 2546 178225 40250 3.74282 3.74282 -142.726 -3.74282 0 0 701300. 2426.64 0.23 0.12 0.19 -1 -1 0.23 0.0565837 0.0512156 145 124 0 0 124 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.61 vpr 62.99 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 30380 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 355 304 1 150 80 17 17 289 -1 unnamed_device 24.1 MiB 0.24 851 9540 2516 6274 750 63.0 MiB 0.13 0.00 3.72946 -115.235 -3.72946 3.72946 0.95 0.00110259 0.00102344 0.0640072 0.0594416 32 1916 20 6.64007e+06 200928 554710. 1919.41 1.07 0.199387 0.180812 22834 132086 -1 1727 15 705 1094 73805 17005 2.63957 2.63957 -108.939 -2.63957 0 0 701300. 2426.64 0.25 0.07 0.19 -1 -1 0.25 0.0349768 0.031695 109 89 0 0 89 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 5.64 vpr 63.37 MiB 0.03 7000 -1 -1 1 0.03 -1 -1 30400 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 364 282 1 196 97 17 17 289 -1 unnamed_device 24.3 MiB 0.11 1023 18745 6322 9498 2925 63.4 MiB 0.23 0.00 4.46396 -139.111 -4.46396 4.46396 0.95 0.00119299 0.00110894 0.103942 0.0966266 28 3088 39 6.64007e+06 414414 500653. 1732.36 2.06 0.29093 0.264924 21970 115934 -1 2233 23 1523 2357 182616 40728 3.94083 3.94083 -141.043 -3.94083 0 0 612192. 2118.31 0.21 0.12 0.17 -1 -1 0.21 0.0537971 0.0487372 147 34 90 30 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.98 vpr 63.35 MiB 0.03 7324 -1 -1 1 0.03 -1 -1 30832 -1 -1 38 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 31 32 443 336 1 220 101 17 17 289 -1 unnamed_device 24.6 MiB 0.20 1135 20076 5790 11566 2720 63.3 MiB 0.27 0.00 4.51716 -144.659 -4.51716 4.51716 0.95 0.00140209 0.00130485 0.124192 0.115577 32 2700 20 6.64007e+06 477204 554710. 1919.41 1.21 0.299643 0.273678 22834 132086 -1 2362 20 1904 2937 196238 45700 3.94423 3.94423 -144.809 -3.94423 0 0 701300. 2426.64 0.23 0.12 0.19 -1 -1 0.23 0.0556779 0.050511 173 64 87 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 5.82 vpr 63.29 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30424 -1 -1 34 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 30 32 373 297 1 186 96 17 17 289 -1 unnamed_device 24.2 MiB 0.18 923 11484 2608 8162 714 63.3 MiB 0.16 0.00 3.73061 -110.59 -3.73061 3.73061 0.95 0.0011868 0.001103 0.0653068 0.0606284 26 2927 27 6.64007e+06 426972 477104. 1650.88 2.18 0.228402 0.207202 21682 110474 -1 2233 20 1649 2813 191993 51133 3.45377 3.45377 -122.214 -3.45377 0 0 585099. 2024.56 0.22 0.12 0.16 -1 -1 0.22 0.048577 0.044105 135 61 58 30 58 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 5.02 vpr 63.43 MiB 0.04 7224 -1 -1 1 0.04 -1 -1 30512 -1 -1 43 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 32 32 407 319 1 201 107 17 17 289 -1 unnamed_device 24.4 MiB 0.18 1008 13516 3637 9135 744 63.4 MiB 0.18 0.00 4.19956 -142.899 -4.19956 4.19956 0.97 0.00128755 0.00119672 0.0719489 0.066802 28 2973 25 6.64007e+06 539994 500653. 1732.36 1.40 0.242135 0.220102 21970 115934 -1 2181 18 1687 2814 170761 41453 3.85983 3.85983 -147.768 -3.85983 0 0 612192. 2118.31 0.20 0.11 0.17 -1 -1 0.20 0.0476405 0.0432575 158 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 5.68 vpr 63.36 MiB 0.04 7252 -1 -1 1 0.05 -1 -1 30480 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64880 32 32 405 318 1 200 104 17 17 289 -1 unnamed_device 24.4 MiB 0.17 988 17184 5218 8807 3159 63.4 MiB 0.21 0.00 3.62559 -123.648 -3.62559 3.62559 0.95 0.00128137 0.00119039 0.0937282 0.0870957 28 3023 44 6.64007e+06 502320 500653. 1732.36 2.00 0.307347 0.279371 21970 115934 -1 2285 21 1520 2399 196474 44970 2.87197 2.87197 -119.095 -2.87197 0 0 612192. 2118.31 0.20 0.12 0.17 -1 -1 0.20 0.053402 0.0484432 157 65 63 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 6.74 vpr 62.65 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30420 -1 -1 18 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 29 32 287 238 1 134 79 17 17 289 -1 unnamed_device 23.8 MiB 0.09 627 13430 5541 5355 2534 62.6 MiB 0.15 0.00 3.6785 -106.673 -3.6785 3.6785 0.97 0.000963455 0.000895813 0.0792127 0.0736687 32 1473 19 6.64007e+06 226044 554710. 1919.41 3.11 0.36874 0.332228 22834 132086 -1 1343 21 1082 1537 110955 26479 2.78797 2.78797 -105.529 -2.78797 0 0 701300. 2426.64 0.24 0.08 0.20 -1 -1 0.24 0.0399282 0.0360007 95 34 58 29 29 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 6.78 vpr 63.12 MiB 0.04 7212 -1 -1 1 0.03 -1 -1 30292 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 334 290 1 154 81 17 17 289 -1 unnamed_device 24.3 MiB 0.18 811 6206 1352 4542 312 63.1 MiB 0.09 0.00 4.00083 -111.764 -4.00083 4.00083 0.94 0.00104291 0.000967082 0.0396909 0.0368368 32 1917 22 6.64007e+06 213486 554710. 1919.41 3.21 0.293163 0.263255 22834 132086 -1 1739 21 1155 1706 141936 31393 3.08537 3.08537 -109.931 -3.08537 0 0 701300. 2426.64 0.23 0.10 0.19 -1 -1 0.23 0.0413898 0.0373052 110 82 0 0 82 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 6.90 vpr 63.23 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30448 -1 -1 38 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 31 32 365 281 1 196 101 17 17 289 -1 unnamed_device 24.1 MiB 0.12 1140 17961 4896 10693 2372 63.2 MiB 0.21 0.00 4.56916 -143.41 -4.56916 4.56916 0.95 0.00119353 0.00110953 0.0944691 0.0878436 30 2480 22 6.64007e+06 477204 526063. 1820.29 3.40 0.420066 0.380578 22546 126617 -1 2142 19 1456 2447 150989 33118 3.78563 3.78563 -139.153 -3.78563 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0466995 0.0424424 151 34 93 31 31 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 5.13 vpr 62.71 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30440 -1 -1 31 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 23.8 MiB 0.20 620 10442 2502 7352 588 62.7 MiB 0.12 0.00 3.6803 -100.526 -3.6803 3.6803 0.95 0.000962711 0.000890304 0.0508735 0.0472212 26 2111 25 6.64007e+06 389298 477104. 1650.88 1.69 0.177414 0.160198 21682 110474 -1 1643 18 977 1607 104797 26031 2.85177 2.85177 -102.811 -2.85177 0 0 585099. 2024.56 0.19 0.07 0.16 -1 -1 0.19 0.0300213 0.0272299 108 56 29 29 52 26 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.77 vpr 62.78 MiB 0.04 7036 -1 -1 1 0.03 -1 -1 30488 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 314 256 1 160 81 17 17 289 -1 unnamed_device 23.9 MiB 0.17 691 13906 4599 7385 1922 62.8 MiB 0.18 0.00 3.53127 -120.288 -3.53127 3.53127 0.95 0.00103664 0.000963554 0.0846517 0.0786805 32 2087 26 6.64007e+06 213486 554710. 1919.41 1.14 0.221981 0.201849 22834 132086 -1 1716 21 1501 2395 163983 38176 2.90197 2.90197 -119.072 -2.90197 0 0 701300. 2426.64 0.23 0.11 0.19 -1 -1 0.23 0.0437463 0.0394885 118 34 64 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.67 vpr 63.17 MiB 0.04 7236 -1 -1 1 0.03 -1 -1 30488 -1 -1 38 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 31 32 387 307 1 189 101 17 17 289 -1 unnamed_device 24.1 MiB 0.17 999 13261 3446 8635 1180 63.2 MiB 0.17 0.00 3.5665 -119.865 -3.5665 3.5665 0.95 0.00122822 0.00114196 0.0725999 0.0673532 30 2083 21 6.64007e+06 477204 526063. 1820.29 1.13 0.226733 0.206174 22546 126617 -1 1827 22 1534 2359 132012 30369 2.96017 2.96017 -115.637 -2.96017 0 0 666494. 2306.21 0.23 0.11 0.18 -1 -1 0.23 0.0537886 0.0487706 144 64 58 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.64 vpr 62.80 MiB 0.04 7040 -1 -1 1 0.03 -1 -1 30536 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 31 32 308 262 1 147 80 17 17 289 -1 unnamed_device 24.0 MiB 0.18 869 9368 2508 6076 784 62.8 MiB 0.12 0.00 3.34153 -105.882 -3.34153 3.34153 0.95 0.00100268 0.000931648 0.0572706 0.0532057 32 2012 22 6.64007e+06 213486 554710. 1919.41 1.11 0.1833 0.165942 22834 132086 -1 1735 17 947 1567 114144 24834 2.92897 2.92897 -112.484 -2.92897 0 0 701300. 2426.64 0.23 0.08 0.20 -1 -1 0.23 0.0349579 0.0316024 106 55 31 31 53 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 5.22 vpr 63.16 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 30620 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 383 307 1 184 97 17 17 289 -1 unnamed_device 24.1 MiB 0.18 879 9865 2512 6573 780 63.2 MiB 0.13 0.00 3.57229 -117.612 -3.57229 3.57229 0.95 0.00120916 0.0011236 0.0571525 0.0530558 28 2775 25 6.64007e+06 414414 500653. 1732.36 1.74 0.215827 0.195735 21970 115934 -1 2007 20 1256 2228 154021 36271 2.88697 2.88697 -113.214 -2.88697 0 0 612192. 2118.31 0.20 0.11 0.17 -1 -1 0.20 0.0484279 0.0438609 137 65 52 26 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 8.99 vpr 63.43 MiB 0.03 7360 -1 -1 1 0.03 -1 -1 30356 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 31 32 422 339 1 195 100 17 17 289 -1 unnamed_device 24.5 MiB 0.27 885 10772 2451 7753 568 63.4 MiB 0.15 0.00 3.7525 -117.99 -3.7525 3.7525 0.98 0.001305 0.00121251 0.0633396 0.0588224 26 2790 38 6.64007e+06 464646 477104. 1650.88 5.31 0.457427 0.412645 21682 110474 -1 2103 25 1903 2787 223481 60381 3.18737 3.18737 -127.42 -3.18737 0 0 585099. 2024.56 0.20 0.14 0.16 -1 -1 0.20 0.0625559 0.0566164 149 93 31 31 92 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.59 vpr 63.07 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30360 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64588 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 24.2 MiB 0.19 816 8626 2345 5890 391 63.1 MiB 0.12 0.00 3.06096 -106.925 -3.06096 3.06096 0.95 0.00106244 0.00098655 0.0543089 0.0504369 32 2030 19 6.64007e+06 226044 554710. 1919.41 1.09 0.183907 0.16667 22834 132086 -1 1785 21 1232 1968 139236 31313 2.72677 2.72677 -107.834 -2.72677 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0444559 0.0401618 115 61 32 32 60 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.65 vpr 62.86 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 30284 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 23.9 MiB 0.22 920 11296 3024 7326 946 62.9 MiB 0.15 0.00 3.5031 -121.121 -3.5031 3.5031 0.95 0.00107827 0.00100105 0.0716846 0.0665825 30 2213 19 6.64007e+06 226044 526063. 1820.29 1.10 0.204569 0.185802 22546 126617 -1 1909 18 1150 1903 117299 26636 2.93097 2.93097 -116.249 -2.93097 0 0 666494. 2306.21 0.22 0.09 0.18 -1 -1 0.22 0.039649 0.0358835 121 63 32 32 62 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.98 vpr 63.43 MiB 0.05 7252 -1 -1 1 0.04 -1 -1 30704 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 407 319 1 198 102 17 17 289 -1 unnamed_device 24.6 MiB 0.15 1027 12240 2965 8371 904 63.4 MiB 0.16 0.00 4.25676 -144.495 -4.25676 4.25676 0.95 0.00127332 0.00118184 0.068764 0.0638159 32 2506 30 6.64007e+06 477204 554710. 1919.41 1.33 0.246852 0.224136 22834 132086 -1 2201 24 1972 2976 212021 49064 3.97103 3.97103 -145.544 -3.97103 0 0 701300. 2426.64 0.23 0.15 0.19 -1 -1 0.23 0.0679254 0.0611404 156 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.73 vpr 63.46 MiB 0.05 7248 -1 -1 1 0.03 -1 -1 30464 -1 -1 34 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64980 29 32 367 293 1 183 95 17 17 289 -1 unnamed_device 24.4 MiB 0.16 1020 16079 4107 10319 1653 63.5 MiB 0.20 0.00 3.72052 -109.725 -3.72052 3.72052 0.95 0.00117242 0.00108033 0.0901244 0.083555 32 2233 21 6.64007e+06 426972 554710. 1919.41 1.10 0.236344 0.215093 22834 132086 -1 1995 20 1159 1872 114735 28009 2.89377 2.89377 -109.298 -2.89377 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0466119 0.0422216 135 62 56 29 58 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 5.02 vpr 63.68 MiB 0.04 7316 -1 -1 1 0.03 -1 -1 30780 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65208 32 32 469 381 1 200 103 17 17 289 -1 unnamed_device 24.7 MiB 0.26 937 9020 1835 6701 484 63.7 MiB 0.13 0.00 4.29776 -145.038 -4.29776 4.29776 0.96 0.00143806 0.00133707 0.0571534 0.0531261 32 2656 21 6.64007e+06 489762 554710. 1919.41 1.26 0.235032 0.213121 22834 132086 -1 2222 20 1820 2780 182410 44504 3.77583 3.77583 -145.92 -3.77583 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0557807 0.0503953 158 127 0 0 128 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 4.45 vpr 62.80 MiB 0.03 6932 -1 -1 1 0.03 -1 -1 30444 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 31 32 259 212 1 146 80 17 17 289 -1 unnamed_device 23.8 MiB 0.10 804 11948 3967 6404 1577 62.8 MiB 0.13 0.00 3.08296 -103.529 -3.08296 3.08296 0.92 0.000903922 0.000840721 0.0653975 0.0607871 32 1842 19 6.64007e+06 213486 554710. 1919.41 1.05 0.176363 0.16018 22834 132086 -1 1616 16 845 1363 101286 23075 2.80117 2.80117 -105.322 -2.80117 0 0 701300. 2426.64 0.22 0.07 0.19 -1 -1 0.22 0.0302675 0.0273737 106 4 85 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 5.49 vpr 63.46 MiB 0.04 7424 -1 -1 1 0.03 -1 -1 30376 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64980 32 32 418 338 1 190 99 17 17 289 -1 unnamed_device 24.6 MiB 0.16 998 18111 4956 10747 2408 63.5 MiB 0.22 0.00 4.26296 -139.632 -4.26296 4.26296 0.95 0.00128129 0.00118906 0.104898 0.0972885 26 2775 40 6.64007e+06 439530 477104. 1650.88 1.76 0.307392 0.279225 21682 110474 -1 2281 21 1689 2417 200330 43693 3.84003 3.84003 -141.489 -3.84003 0 0 585099. 2024.56 0.25 0.12 0.16 -1 -1 0.25 0.053871 0.0487929 144 92 28 28 92 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.81 vpr 63.21 MiB 0.06 7256 -1 -1 1 0.03 -1 -1 30128 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 24.3 MiB 0.29 734 13381 4309 7077 1995 63.2 MiB 0.17 0.00 3.54047 -121.881 -3.54047 3.54047 0.98 0.00115563 0.00107295 0.0917602 0.0852077 28 1976 21 6.64007e+06 213486 500653. 1732.36 1.11 0.23655 0.215157 21970 115934 -1 1687 19 1255 1828 131259 30469 2.96597 2.96597 -120.713 -2.96597 0 0 612192. 2118.31 0.20 0.10 0.17 -1 -1 0.20 0.0439322 0.0397131 114 96 0 0 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 8.01 vpr 63.73 MiB 0.05 7260 -1 -1 1 0.03 -1 -1 30484 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65264 32 32 401 316 1 196 101 17 17 289 -1 unnamed_device 24.9 MiB 0.17 1060 9736 1961 7168 607 63.7 MiB 0.13 0.00 3.51212 -122.885 -3.51212 3.51212 0.97 0.00133757 0.00124762 0.0579944 0.0540418 26 2898 22 6.64007e+06 464646 477104. 1650.88 4.39 0.435024 0.393747 21682 110474 -1 2295 22 1432 2025 146212 32597 3.11157 3.11157 -122.927 -3.11157 0 0 585099. 2024.56 0.19 0.11 0.16 -1 -1 0.19 0.0551065 0.0499639 151 65 61 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 6.85 vpr 63.82 MiB 0.05 7340 -1 -1 1 0.03 -1 -1 30952 -1 -1 45 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65348 32 32 500 382 1 232 109 17 17 289 -1 unnamed_device 25.1 MiB 0.24 1244 16489 4012 10933 1544 63.8 MiB 0.23 0.00 4.96651 -168.366 -4.96651 4.96651 0.99 0.0015365 0.00142947 0.100456 0.0932931 26 3688 31 6.64007e+06 565110 477104. 1650.88 2.98 0.323498 0.294328 21682 110474 -1 2834 22 2604 4209 286529 63741 4.75769 4.75769 -176.659 -4.75769 0 0 585099. 2024.56 0.19 0.16 0.16 -1 -1 0.19 0.0666607 0.0605046 188 96 64 32 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.34 vpr 62.61 MiB 0.03 6916 -1 -1 1 0.03 -1 -1 30168 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 23.8 MiB 0.12 483 10509 2545 7262 702 62.6 MiB 0.10 0.00 2.73878 -81.5531 -2.73878 2.73878 0.95 0.000807729 0.000748647 0.0541413 0.0502189 28 1389 26 6.64007e+06 188370 500653. 1732.36 1.03 0.160102 0.144357 21970 115934 -1 1124 16 547 701 53976 13610 2.08151 2.08151 -78.095 -2.08151 0 0 612192. 2118.31 0.21 0.06 0.18 -1 -1 0.21 0.0267025 0.0239535 83 56 0 0 53 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.48 vpr 62.95 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30360 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64460 30 32 296 244 1 137 79 17 17 289 -1 unnamed_device 24.1 MiB 0.09 791 10388 3354 5416 1618 62.9 MiB 0.12 0.00 3.6895 -113.454 -3.6895 3.6895 0.95 0.000981579 0.000911753 0.0630907 0.0586494 32 1673 19 6.64007e+06 213486 554710. 1919.41 1.07 0.182877 0.165988 22834 132086 -1 1521 18 940 1423 114250 24927 2.89197 2.89197 -108.545 -2.89197 0 0 701300. 2426.64 0.23 0.08 0.20 -1 -1 0.23 0.0363758 0.0328872 97 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.77 vpr 62.99 MiB 0.04 7104 -1 -1 1 0.03 -1 -1 30064 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 24.1 MiB 0.13 798 13966 5020 6560 2386 63.0 MiB 0.18 0.00 3.4859 -119.604 -3.4859 3.4859 0.95 0.00103495 0.000960638 0.0839948 0.0780443 32 2349 21 6.64007e+06 226044 554710. 1919.41 1.19 0.213524 0.194244 22834 132086 -1 1898 22 1478 2643 190894 43446 3.14817 3.14817 -121.261 -3.14817 0 0 701300. 2426.64 0.22 0.13 0.20 -1 -1 0.22 0.0504454 0.0455731 126 34 64 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 4.43 vpr 62.73 MiB 0.02 7028 -1 -1 1 0.04 -1 -1 30512 -1 -1 34 25 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 23.6 MiB 0.06 678 12127 3168 7672 1287 62.7 MiB 0.12 0.00 3.4089 -91.215 -3.4089 3.4089 0.95 0.00083753 0.000778776 0.0519378 0.0482735 26 1705 23 6.64007e+06 426972 477104. 1650.88 1.21 0.158706 0.143364 21682 110474 -1 1513 20 1059 1640 113036 25947 2.84177 2.84177 -93.3739 -2.84177 0 0 585099. 2024.56 0.19 0.08 0.16 -1 -1 0.19 0.0322727 0.0290189 103 34 50 25 25 25 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.87 vpr 63.62 MiB 0.03 7200 -1 -1 1 0.03 -1 -1 30532 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65144 32 32 432 346 1 193 86 17 17 289 -1 unnamed_device 24.5 MiB 0.22 1064 14828 5337 7470 2021 63.6 MiB 0.22 0.00 4.34676 -140.278 -4.34676 4.34676 0.95 0.00134785 0.00125354 0.10926 0.101628 32 2469 22 6.64007e+06 276276 554710. 1919.41 1.19 0.283381 0.258891 22834 132086 -1 2117 22 1582 2852 176721 39684 3.63843 3.63843 -134.688 -3.63843 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0572721 0.0519132 149 94 32 32 94 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 6.58 vpr 63.51 MiB 0.03 7364 -1 -1 1 0.03 -1 -1 30376 -1 -1 39 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65032 31 32 421 339 1 193 102 17 17 289 -1 unnamed_device 24.6 MiB 0.18 994 11288 2808 7770 710 63.5 MiB 0.16 0.00 3.54427 -117.284 -3.54427 3.54427 0.95 0.00129868 0.00120693 0.066305 0.061551 26 2715 23 6.64007e+06 489762 477104. 1650.88 3.06 0.391138 0.353251 21682 110474 -1 2275 23 1961 3011 199968 47387 3.04837 3.04837 -122.417 -3.04837 0 0 585099. 2024.56 0.19 0.13 0.16 -1 -1 0.19 0.0582118 0.0527203 148 94 29 29 93 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 5.00 vpr 63.34 MiB 0.04 7252 -1 -1 1 0.03 -1 -1 30908 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 32 32 438 350 1 194 98 17 17 289 -1 unnamed_device 24.4 MiB 0.14 984 7523 1506 5708 309 63.3 MiB 0.12 0.00 3.92206 -133.487 -3.92206 3.92206 0.95 0.00133623 0.00124103 0.0485169 0.0450148 32 3191 25 6.65987e+06 431052 554710. 1919.41 1.40 0.226567 0.205235 22834 132086 -1 2415 24 2140 3445 278484 65165 3.64431 3.64431 -141.044 -3.64431 0 0 701300. 2426.64 0.22 0.15 0.19 -1 -1 0.22 0.0626202 0.0567167 151 96 32 32 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.92 vpr 63.24 MiB 0.03 7360 -1 -1 1 0.03 -1 -1 30668 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 30 32 409 330 1 186 83 17 17 289 -1 unnamed_device 24.4 MiB 0.24 1021 12323 3933 6472 1918 63.2 MiB 0.18 0.00 4.34307 -130.434 -4.34307 4.34307 0.95 0.00125218 0.00116364 0.0892138 0.0828975 32 2554 23 6.65987e+06 266238 554710. 1919.41 1.21 0.249368 0.226998 22834 132086 -1 2215 22 1826 3029 246688 54655 3.64371 3.64371 -131.32 -3.64371 0 0 701300. 2426.64 0.22 0.13 0.19 -1 -1 0.22 0.0547122 0.0495909 140 91 30 30 89 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 5.24 vpr 63.20 MiB 0.04 7208 -1 -1 1 0.03 -1 -1 30420 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 387 309 1 186 98 17 17 289 -1 unnamed_device 24.4 MiB 0.20 1046 17198 4925 10203 2070 63.2 MiB 0.20 0.00 3.50085 -120.205 -3.50085 3.50085 0.95 0.00121684 0.00113033 0.095949 0.0890938 28 2593 48 6.65987e+06 431052 500653. 1732.36 1.62 0.301996 0.274334 21970 115934 -1 2248 24 1601 2653 202682 45446 3.15565 3.15565 -120.273 -3.15565 0 0 612192. 2118.31 0.20 0.13 0.17 -1 -1 0.20 0.0568227 0.0514309 141 65 54 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 7.02 vpr 63.04 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30416 -1 -1 22 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 29 32 343 267 1 184 83 17 17 289 -1 unnamed_device 24.3 MiB 0.14 792 11963 2924 7039 2000 63.0 MiB 0.14 0.00 4.3057 -123.39 -4.3057 4.3057 0.95 0.00112318 0.00104428 0.0768166 0.0715544 32 2771 44 6.65987e+06 278916 554710. 1919.41 2.53 0.334166 0.302536 22834 132086 -1 1992 120 7130 13721 2198801 1156837 3.86511 3.86511 -131.346 -3.86511 0 0 701300. 2426.64 0.22 1.02 0.19 -1 -1 0.22 0.219636 0.19713 138 34 87 29 29 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 5.03 vpr 63.07 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30500 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 376 288 1 195 84 17 17 289 -1 unnamed_device 24.2 MiB 0.22 1026 15456 4961 8586 1909 63.1 MiB 0.22 0.00 4.14936 -143.085 -4.14936 4.14936 0.96 0.00122829 0.00114276 0.107431 0.0999609 32 2859 24 6.65987e+06 253560 554710. 1919.41 1.30 0.268377 0.245118 22834 132086 -1 2385 25 2273 4133 304272 70766 3.95683 3.95683 -148.431 -3.95683 0 0 701300. 2426.64 0.22 0.16 0.19 -1 -1 0.22 0.0599114 0.0544174 151 34 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.91 vpr 63.40 MiB 0.03 7236 -1 -1 1 0.03 -1 -1 30460 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 402 316 1 199 101 17 17 289 -1 unnamed_device 24.5 MiB 0.20 1029 9501 1978 7135 388 63.4 MiB 0.13 0.00 3.43623 -117.882 -3.43623 3.43623 1.01 0.00128686 0.00119799 0.0542443 0.0503115 32 2536 20 6.65987e+06 469086 554710. 1919.41 1.20 0.21414 0.194479 22834 132086 -1 2170 19 1427 2284 165217 39054 2.81471 2.81471 -115.499 -2.81471 0 0 701300. 2426.64 0.23 0.11 0.19 -1 -1 0.23 0.0493786 0.044861 154 64 63 32 63 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.60 vpr 62.54 MiB 0.03 7064 -1 -1 1 0.03 -1 -1 30732 -1 -1 19 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 27 32 269 226 1 135 78 17 17 289 -1 unnamed_device 23.7 MiB 0.13 580 13026 4344 6329 2353 62.5 MiB 0.17 0.00 3.7565 -98.351 -3.7565 3.7565 1.01 0.000897465 0.000833751 0.0791141 0.0734675 30 1411 19 6.65987e+06 240882 526063. 1820.29 1.04 0.190004 0.172699 22546 126617 -1 1171 19 804 1373 82491 19526 2.70051 2.70051 -92.1985 -2.70051 0 0 666494. 2306.21 0.22 0.07 0.18 -1 -1 0.22 0.0352135 0.0317928 96 34 54 27 27 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 7.23 vpr 63.07 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30376 -1 -1 33 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 31 32 317 242 1 185 96 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1016 11265 2888 7039 1338 63.1 MiB 0.14 0.00 3.36201 -108.145 -3.36201 3.36201 0.96 0.00109422 0.00101925 0.05967 0.0555334 26 2634 28 6.65987e+06 418374 477104. 1650.88 3.42 0.341904 0.308931 21682 110474 -1 2328 50 2093 3828 686103 352049 3.00031 3.00031 -110.877 -3.00031 0 0 585099. 2024.56 0.19 0.35 0.16 -1 -1 0.19 0.0978431 0.0882617 139 4 115 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 6.61 vpr 62.78 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30188 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 31 32 338 292 1 147 79 17 17 289 -1 unnamed_device 23.9 MiB 0.24 818 11571 4275 5789 1507 62.8 MiB 0.15 0.00 3.08801 -101.656 -3.08801 3.08801 0.95 0.00105136 0.000975214 0.0749494 0.0695549 28 1929 21 6.65987e+06 202848 500653. 1732.36 3.02 0.367399 0.330697 21970 115934 -1 1779 17 917 1490 111111 25142 2.62745 2.62745 -104.072 -2.62745 0 0 612192. 2118.31 0.20 0.08 0.17 -1 -1 0.20 0.0372328 0.0336899 105 85 0 0 84 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 6.74 vpr 62.86 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30472 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 314 256 1 162 80 17 17 289 -1 unnamed_device 24.0 MiB 0.22 642 11432 4032 4649 2751 62.9 MiB 0.13 0.00 3.56921 -118.924 -3.56921 3.56921 0.95 0.00103465 0.00096024 0.071748 0.0666414 36 2046 43 6.65987e+06 202848 612192. 2118.31 3.14 0.328761 0.2967 23410 145293 -1 1422 21 1272 2006 138197 42465 2.85597 2.85597 -110.179 -2.85597 0 0 782063. 2706.10 0.24 0.10 0.21 -1 -1 0.24 0.043662 0.0394965 121 34 64 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.58 vpr 62.70 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 30252 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 30 32 325 273 1 151 79 17 17 289 -1 unnamed_device 23.8 MiB 0.20 688 7684 1925 5205 554 62.7 MiB 0.11 0.00 3.53806 -112.993 -3.53806 3.53806 0.95 0.00103407 0.000960799 0.0498217 0.0463109 32 1644 20 6.65987e+06 215526 554710. 1919.41 1.06 0.17743 0.160839 22834 132086 -1 1456 19 1087 1483 99523 23708 2.89677 2.89677 -110.282 -2.89677 0 0 701300. 2426.64 0.22 0.08 0.20 -1 -1 0.22 0.0400936 0.0362391 110 63 30 30 60 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.85 vpr 62.94 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30496 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64448 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 24.0 MiB 0.27 841 11223 2602 8034 587 62.9 MiB 0.13 0.00 3.27957 -108.894 -3.27957 3.27957 0.95 0.00105754 0.000980938 0.0593229 0.0550601 30 2020 22 6.65987e+06 367662 526063. 1820.29 1.21 0.200583 0.182082 22546 126617 -1 1668 22 1025 1665 104569 24167 2.50305 2.50305 -103.61 -2.50305 0 0 666494. 2306.21 0.24 0.09 0.18 -1 -1 0.24 0.0453713 0.0409494 114 65 25 25 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 5.07 vpr 63.10 MiB 0.04 7192 -1 -1 1 0.03 -1 -1 30248 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 32 32 386 305 1 188 96 17 17 289 -1 unnamed_device 24.2 MiB 0.34 1002 18711 5900 10256 2555 63.1 MiB 0.24 0.00 3.50686 -122.446 -3.50686 3.50686 0.95 0.00123194 0.00114388 0.108961 0.101125 32 2401 19 6.65987e+06 405696 554710. 1919.41 1.22 0.265028 0.242267 22834 132086 -1 2038 22 1742 2945 205847 47930 2.96397 2.96397 -116.671 -2.96397 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0532521 0.0481536 143 58 64 32 57 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.96 vpr 63.38 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 30448 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64904 32 32 407 319 1 200 98 17 17 289 -1 unnamed_device 24.4 MiB 0.20 896 8423 1626 6163 634 63.4 MiB 0.12 0.00 4.07724 -137.456 -4.07724 4.07724 0.95 0.00128464 0.00119396 0.051057 0.0474499 32 2832 22 6.65987e+06 431052 554710. 1919.41 1.30 0.209013 0.189806 22834 132086 -1 2195 22 2106 3327 247497 60499 3.82351 3.82351 -144.786 -3.82351 0 0 701300. 2426.64 0.23 0.13 0.19 -1 -1 0.23 0.0487774 0.044186 156 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.46 vpr 62.68 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 30652 -1 -1 18 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 29 32 272 228 1 145 79 17 17 289 -1 unnamed_device 23.8 MiB 0.23 686 7177 1709 4538 930 62.7 MiB 0.09 0.00 3.15358 -93.6229 -3.15358 3.15358 0.95 0.000924397 0.000859438 0.0414969 0.0386223 28 1745 20 6.65987e+06 228204 500653. 1732.36 1.02 0.153701 0.138977 21970 115934 -1 1554 20 1081 1777 122299 29001 2.55425 2.55425 -95.2583 -2.55425 0 0 612192. 2118.31 0.20 0.08 0.17 -1 -1 0.20 0.0368942 0.0332786 107 29 58 29 24 24 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.99 vpr 63.20 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30356 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 401 315 1 192 84 17 17 289 -1 unnamed_device 24.3 MiB 0.24 1074 13992 4161 7846 1985 63.2 MiB 0.20 0.00 3.5141 -125.301 -3.5141 3.5141 0.95 0.00127196 0.00118295 0.100561 0.0934808 32 2555 18 6.65987e+06 253560 554710. 1919.41 1.20 0.254961 0.232684 22834 132086 -1 2386 22 1791 3119 270322 59828 3.12937 3.12937 -126.952 -3.12937 0 0 701300. 2426.64 0.22 0.14 0.19 -1 -1 0.22 0.0556985 0.0505399 146 63 64 32 62 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.52 vpr 63.04 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30308 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 383 303 1 185 98 17 17 289 -1 unnamed_device 24.1 MiB 0.33 934 18323 6450 8556 3317 63.0 MiB 0.20 0.00 3.6343 -123.732 -3.6343 3.6343 0.96 0.00122583 0.00113904 0.102409 0.0950916 30 2378 28 6.65987e+06 431052 526063. 1820.29 1.79 0.271367 0.247181 22546 126617 -1 1916 19 1275 1888 125113 28979 2.76277 2.76277 -114.988 -2.76277 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0473705 0.0430179 142 57 64 32 56 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.77 vpr 62.93 MiB 0.04 7092 -1 -1 1 0.03 -1 -1 30120 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 339 284 1 162 94 17 17 289 -1 unnamed_device 23.9 MiB 0.25 832 15430 4777 8379 2274 62.9 MiB 0.18 0.00 2.83964 -101.659 -2.83964 2.83964 0.96 0.00107861 0.00100121 0.0804237 0.0746791 30 1996 22 6.65987e+06 380340 526063. 1820.29 1.10 0.217976 0.198088 22546 126617 -1 1635 14 802 1184 72625 16499 2.18971 2.18971 -96.9741 -2.18971 0 0 666494. 2306.21 0.22 0.07 0.19 -1 -1 0.22 0.0344348 0.0313925 118 65 29 29 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 4.31 vpr 62.08 MiB 0.04 6768 -1 -1 1 0.03 -1 -1 30160 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63572 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 23.5 MiB 0.10 661 10835 3152 6204 1479 62.1 MiB 0.11 0.00 2.60038 -85.2282 -2.60038 2.60038 0.95 0.000767518 0.000711995 0.0530038 0.0491709 28 1493 20 6.65987e+06 190170 500653. 1732.36 0.98 0.147312 0.132965 21970 115934 -1 1296 18 585 876 63146 14271 1.59965 1.59965 -75.2323 -1.59965 0 0 612192. 2118.31 0.20 0.07 0.17 -1 -1 0.20 0.0297629 0.0268003 85 34 24 24 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.69 vpr 62.64 MiB 0.04 7028 -1 -1 1 0.03 -1 -1 30372 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 31 32 335 280 1 154 79 17 17 289 -1 unnamed_device 23.7 MiB 0.13 862 13768 4646 7227 1895 62.6 MiB 0.20 0.00 3.94338 -122.441 -3.94338 3.94338 0.98 0.00107494 0.000999538 0.101917 0.0946929 32 2009 20 6.65987e+06 202848 554710. 1919.41 1.11 0.235093 0.214286 22834 132086 -1 1704 18 946 1411 113736 25061 2.91545 2.91545 -114.323 -2.91545 0 0 701300. 2426.64 0.22 0.08 0.19 -1 -1 0.22 0.0389795 0.0352853 113 64 31 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 7.03 vpr 63.13 MiB 0.05 7276 -1 -1 1 0.03 -1 -1 30208 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 366 283 1 192 98 17 17 289 -1 unnamed_device 24.3 MiB 0.17 1067 12248 3339 7850 1059 63.1 MiB 0.16 0.00 4.06436 -136.288 -4.06436 4.06436 0.95 0.00119937 0.00111496 0.0686107 0.0637961 30 2353 19 6.65987e+06 431052 526063. 1820.29 3.42 0.446706 0.403629 22546 126617 -1 2038 20 1356 2011 119922 27360 3.22177 3.22177 -126.056 -3.22177 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0486037 0.0441515 145 34 91 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 5.01 vpr 63.20 MiB 0.04 7212 -1 -1 1 0.04 -1 -1 30652 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 460 375 1 196 100 17 17 289 -1 unnamed_device 24.5 MiB 0.27 1107 12164 3260 7320 1584 63.2 MiB 0.17 0.00 3.45103 -121.866 -3.45103 3.45103 0.95 0.00139536 0.00128644 0.076453 0.0707803 32 2878 20 6.65987e+06 456408 554710. 1919.41 1.24 0.248395 0.22515 22834 132086 -1 2381 21 1553 2320 174783 40214 3.24785 3.24785 -121.916 -3.24785 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0575041 0.0520059 149 124 0 0 125 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 4.31 vpr 62.09 MiB 0.02 6948 -1 -1 1 0.02 -1 -1 30592 -1 -1 17 26 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63580 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 23.3 MiB 0.17 410 10345 3142 6004 1199 62.1 MiB 0.08 0.00 2.61938 -68.655 -2.61938 2.61938 0.96 0.000668998 0.000619413 0.0447796 0.0415019 30 1071 20 6.65987e+06 215526 526063. 1820.29 0.95 0.12721 0.114873 22546 126617 -1 892 17 477 715 39145 10340 1.85405 1.85405 -64.8879 -1.85405 0 0 666494. 2306.21 0.23 0.04 0.14 -1 -1 0.23 0.0192737 0.0173047 77 30 26 26 22 22 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 7.01 vpr 63.07 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30080 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 32 32 333 251 1 187 84 17 17 289 -1 unnamed_device 24.0 MiB 0.19 1115 13443 3576 8165 1702 63.1 MiB 0.18 0.00 4.2335 -135.193 -4.2335 4.2335 0.95 0.00112953 0.00105072 0.0861234 0.0801954 26 2832 39 6.65987e+06 253560 477104. 1650.88 3.40 0.403494 0.365288 21682 110474 -1 2458 22 1694 2858 259865 57234 4.07217 4.07217 -146.075 -4.07217 0 0 585099. 2024.56 0.19 0.13 0.17 -1 -1 0.19 0.0500664 0.045417 137 3 122 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 6.30 vpr 62.05 MiB 0.02 6796 -1 -1 1 0.03 -1 -1 30508 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63540 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 23.5 MiB 0.10 594 7901 1809 5857 235 62.1 MiB 0.08 0.00 2.22607 -81.2607 -2.22607 2.22607 0.95 0.000707707 0.000655615 0.0358856 0.0332398 32 1464 18 6.65987e+06 164814 554710. 1919.41 2.96 0.241233 0.21569 22834 132086 -1 1276 19 646 866 66033 15918 1.93025 1.93025 -79.3609 -1.93025 0 0 701300. 2426.64 0.22 0.06 0.19 -1 -1 0.22 0.0273511 0.0246455 81 3 53 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.90 vpr 63.02 MiB 0.04 7192 -1 -1 1 0.03 -1 -1 30556 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 376 288 1 195 97 17 17 289 -1 unnamed_device 24.2 MiB 0.14 1065 18079 5979 9630 2470 63.0 MiB 0.23 0.00 4.06247 -139.199 -4.06247 4.06247 0.95 0.000842528 0.000778748 0.101093 0.0939629 32 2590 19 6.65987e+06 418374 554710. 1919.41 1.21 0.251848 0.230076 22834 132086 -1 2217 22 1903 2899 225050 50155 3.64237 3.64237 -136.764 -3.64237 0 0 701300. 2426.64 0.25 0.15 0.20 -1 -1 0.25 0.0567482 0.0516135 152 34 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.67 vpr 63.11 MiB 0.04 7000 -1 -1 1 0.03 -1 -1 30200 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 337 253 1 196 99 17 17 289 -1 unnamed_device 24.2 MiB 0.24 1134 16059 4004 10217 1838 63.1 MiB 0.21 0.00 3.38184 -119.391 -3.38184 3.38184 0.95 0.0011436 0.00106334 0.0840983 0.0781929 30 2478 22 6.65987e+06 443730 526063. 1820.29 1.11 0.231009 0.21052 22546 126617 -1 2138 23 1418 2253 152856 33329 2.67931 2.67931 -115.639 -2.67931 0 0 666494. 2306.21 0.22 0.11 0.18 -1 -1 0.22 0.0521574 0.0472581 150 3 124 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 5.81 vpr 63.43 MiB 0.04 7292 -1 -1 1 0.03 -1 -1 30724 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 32 32 407 319 1 197 99 17 17 289 -1 unnamed_device 24.5 MiB 0.13 1118 17199 4898 10401 1900 63.4 MiB 0.22 0.00 3.91784 -137.067 -3.91784 3.91784 0.95 0.00127602 0.00118634 0.100075 0.0929436 28 2921 24 6.65987e+06 443730 500653. 1732.36 2.25 0.271173 0.247147 21970 115934 -1 2460 23 1850 3234 263638 58013 3.79765 3.79765 -141.968 -3.79765 0 0 612192. 2118.31 0.21 0.14 0.17 -1 -1 0.21 0.0577852 0.0524161 153 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.51 vpr 62.82 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30184 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 294 246 1 149 79 17 17 289 -1 unnamed_device 23.9 MiB 0.16 736 8191 2107 5347 737 62.8 MiB 0.11 0.00 2.8895 -100.047 -2.8895 2.8895 0.94 0.000981018 0.000911098 0.0503143 0.0467581 28 1969 21 6.65987e+06 190170 500653. 1732.36 1.11 0.173069 0.156621 21970 115934 -1 1804 19 1076 1727 139465 31479 2.73291 2.73291 -103.62 -2.73291 0 0 612192. 2118.31 0.20 0.09 0.17 -1 -1 0.20 0.0376908 0.0339963 106 34 54 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.58 vpr 62.87 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30240 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 23.9 MiB 0.13 832 12156 3666 7026 1464 62.9 MiB 0.14 0.00 3.4951 -115.55 -3.4951 3.4951 1.00 0.000981374 0.000912309 0.0710199 0.0659909 32 1942 22 6.65987e+06 240882 554710. 1919.41 1.10 0.19611 0.178129 22834 132086 -1 1715 20 1239 1808 138514 31534 2.95717 2.95717 -113.278 -2.95717 0 0 701300. 2426.64 0.25 0.05 0.19 -1 -1 0.25 0.0178324 0.0160692 115 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 6.59 vpr 62.73 MiB 0.04 7076 -1 -1 1 0.03 -1 -1 30336 -1 -1 20 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 23.8 MiB 0.13 593 11776 2929 8189 658 62.7 MiB 0.14 0.00 3.4309 -100.687 -3.4309 3.4309 0.97 0.000928045 0.000862886 0.0665923 0.0619322 30 1720 21 6.65987e+06 253560 526063. 1820.29 3.44 0.316316 0.284735 22546 126617 -1 1406 23 1009 1775 109227 27586 2.83191 2.83191 -101.024 -2.83191 0 0 666494. 2306.21 0.22 0.09 0.18 -1 -1 0.22 0.0437855 0.0395139 107 34 56 28 28 28 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.87 vpr 62.69 MiB 0.04 6956 -1 -1 1 0.03 -1 -1 30368 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 23.7 MiB 0.18 686 12008 2561 8162 1285 62.7 MiB 0.16 0.00 3.4859 -118.026 -3.4859 3.4859 0.95 0.000978969 0.000910219 0.0852187 0.079236 32 2327 29 6.65987e+06 228204 554710. 1919.41 1.25 0.222149 0.202022 22834 132086 -1 1731 24 1546 2385 171285 41928 2.97077 2.97077 -121.674 -2.97077 0 0 701300. 2426.64 0.22 0.11 0.19 -1 -1 0.22 0.0462301 0.0417735 125 3 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 6.50 vpr 62.97 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30348 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 24.0 MiB 0.16 735 8614 2125 5723 766 63.0 MiB 0.11 0.00 3.29178 -108.454 -3.29178 3.29178 0.95 0.000998778 0.000927907 0.0431064 0.0400193 28 2056 21 6.65987e+06 393018 500653. 1732.36 3.06 0.304253 0.273524 21970 115934 -1 1880 21 1280 2159 156359 36635 2.68845 2.68845 -107.684 -2.68845 0 0 612192. 2118.31 0.20 0.10 0.17 -1 -1 0.20 0.0418939 0.0378073 119 34 61 31 31 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.66 vpr 62.71 MiB 0.04 7160 -1 -1 1 0.04 -1 -1 30248 -1 -1 30 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 29 32 312 264 1 154 91 17 17 289 -1 unnamed_device 23.7 MiB 0.24 717 8047 1725 5786 536 62.7 MiB 0.10 0.00 2.76744 -86.2128 -2.76744 2.76744 0.95 0.00100286 0.00093103 0.0418262 0.0387378 32 1874 20 6.65987e+06 380340 554710. 1919.41 1.10 0.165404 0.149368 22834 132086 -1 1622 21 1088 1804 135921 31988 2.34691 2.34691 -88.1946 -2.34691 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0419085 0.0378079 109 61 29 29 57 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 8.42 vpr 63.09 MiB 0.04 7332 -1 -1 1 0.04 -1 -1 30424 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64600 32 32 423 310 1 229 103 17 17 289 -1 unnamed_device 24.5 MiB 0.32 1246 13117 3185 8526 1406 63.1 MiB 0.20 0.00 4.16036 -141.523 -4.16036 4.16036 0.95 0.00140348 0.00130821 0.0802594 0.0747763 26 4383 38 6.65987e+06 494442 477104. 1650.88 4.57 0.298361 0.271455 21682 110474 -1 3091 21 2109 3703 385240 81757 4.05202 4.05202 -155.828 -4.05202 0 0 585099. 2024.56 0.19 0.17 0.16 -1 -1 0.19 0.0590195 0.0536061 179 29 128 32 27 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.85 vpr 63.27 MiB 0.03 7236 -1 -1 1 0.03 -1 -1 30484 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 403 317 1 198 99 17 17 289 -1 unnamed_device 24.3 MiB 0.26 1041 9447 2232 6542 673 63.3 MiB 0.14 0.00 3.5061 -122.514 -3.5061 3.5061 0.95 0.00129624 0.00120444 0.0567228 0.0526073 32 2414 21 6.65987e+06 443730 554710. 1919.41 1.18 0.208899 0.189645 22834 132086 -1 2112 19 1744 2627 173897 40828 3.01337 3.01337 -119.464 -3.01337 0 0 701300. 2426.64 0.23 0.11 0.20 -1 -1 0.23 0.0499507 0.0454567 152 65 62 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 5.63 vpr 62.90 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 30444 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 31 32 353 302 1 156 91 17 17 289 -1 unnamed_device 24.0 MiB 0.29 709 5599 957 4403 239 62.9 MiB 0.08 0.00 3.18838 -103.883 -3.18838 3.18838 0.95 0.00109039 0.00101262 0.0327229 0.0303681 26 2293 44 6.65987e+06 354984 477104. 1650.88 2.10 0.210791 0.189662 21682 110474 -1 1925 20 1209 1926 139385 34041 3.12605 3.12605 -117.418 -3.12605 0 0 585099. 2024.56 0.19 0.10 0.16 -1 -1 0.19 0.0432505 0.0390143 113 90 0 0 89 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 5.00 vpr 63.14 MiB 0.04 7408 -1 -1 1 0.03 -1 -1 30388 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64652 31 32 391 309 1 194 84 17 17 289 -1 unnamed_device 24.3 MiB 0.25 950 14541 4604 7502 2435 63.1 MiB 0.21 0.00 3.4921 -115.341 -3.4921 3.4921 0.95 0.0012105 0.0011204 0.101397 0.0942564 32 2537 24 6.65987e+06 266238 554710. 1919.41 1.21 0.263036 0.239889 22834 132086 -1 2068 22 1694 2865 202556 47137 2.91877 2.91877 -112.32 -2.91877 0 0 701300. 2426.64 0.23 0.13 0.19 -1 -1 0.23 0.0556525 0.050523 148 64 60 30 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.86 vpr 63.22 MiB 0.03 7312 -1 -1 1 0.04 -1 -1 30480 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 31 32 455 371 1 193 84 17 17 289 -1 unnamed_device 24.2 MiB 0.32 1075 7953 1851 5455 647 63.2 MiB 0.13 0.00 4.84238 -140.996 -4.84238 4.84238 0.95 0.0013868 0.00129046 0.063257 0.0587881 30 2514 21 6.65987e+06 266238 526063. 1820.29 1.19 0.234812 0.212945 22546 126617 -1 2032 18 1004 1712 93766 22265 3.60671 3.60671 -132.535 -3.60671 0 0 666494. 2306.21 0.22 0.09 0.18 -1 -1 0.22 0.0504846 0.0457539 149 124 0 0 124 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 7.07 vpr 63.29 MiB 0.05 7332 -1 -1 1 0.03 -1 -1 30460 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 31 32 413 333 1 188 84 17 17 289 -1 unnamed_device 24.4 MiB 0.20 947 10332 2670 7099 563 63.3 MiB 0.16 0.00 4.78027 -132.754 -4.78027 4.78027 0.95 0.0012783 0.00118758 0.0757301 0.0704493 32 2473 22 6.65987e+06 266238 554710. 1919.41 3.39 0.417727 0.377617 22834 132086 -1 2124 22 1526 2505 187171 43178 3.87937 3.87937 -133.212 -3.87937 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0553295 0.0501556 143 90 31 31 89 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 7.27 vpr 63.16 MiB 0.05 7296 -1 -1 1 0.03 -1 -1 30348 -1 -1 33 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 31 32 391 309 1 193 96 17 17 289 -1 unnamed_device 24.2 MiB 0.26 995 11265 2756 7734 775 63.2 MiB 0.16 0.00 3.36361 -112.108 -3.36361 3.36361 0.96 0.00123686 0.00114894 0.0671594 0.062404 32 2554 24 6.65987e+06 418374 554710. 1919.41 3.73 0.464332 0.418887 22834 132086 -1 2262 20 1701 2860 202013 47915 3.15451 3.15451 -111.006 -3.15451 0 0 701300. 2426.64 0.23 0.12 0.19 -1 -1 0.23 0.0505758 0.0459703 146 64 60 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.91 vpr 63.22 MiB 0.04 7236 -1 -1 1 0.03 -1 -1 30928 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 407 319 1 198 99 17 17 289 -1 unnamed_device 24.3 MiB 0.20 1091 9903 2241 6952 710 63.2 MiB 0.14 0.00 3.91784 -134.792 -3.91784 3.91784 0.95 0.00127545 0.00118706 0.0589543 0.0548208 30 2537 27 6.65987e+06 443730 526063. 1820.29 1.27 0.228951 0.207921 22546 126617 -1 2201 22 1649 2612 165739 37609 3.29771 3.29771 -131.299 -3.29771 0 0 666494. 2306.21 0.22 0.12 0.18 -1 -1 0.22 0.0546815 0.0496347 154 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 7.99 vpr 63.52 MiB 0.05 7424 -1 -1 1 0.03 -1 -1 30632 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 496 380 1 232 104 17 17 289 -1 unnamed_device 24.8 MiB 0.26 1184 18648 4691 11584 2373 63.5 MiB 0.29 0.00 4.06547 -137.623 -4.06547 4.06547 0.95 0.0015312 0.00142401 0.121393 0.112889 36 2748 21 6.65987e+06 507120 612192. 2118.31 3.99 0.617725 0.558798 23410 145293 -1 2346 20 1800 2897 191516 43970 3.60757 3.60757 -134.176 -3.60757 0 0 782063. 2706.10 0.24 0.13 0.21 -1 -1 0.24 0.0620665 0.0564377 184 96 62 32 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.77 vpr 62.80 MiB 0.04 7184 -1 -1 1 0.03 -1 -1 30636 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 23.9 MiB 0.21 685 11806 2914 7153 1739 62.8 MiB 0.15 0.00 3.55518 -111.493 -3.55518 3.55518 0.98 0.00101409 0.000943164 0.0709779 0.0660446 32 2044 23 6.65987e+06 228204 554710. 1919.41 1.14 0.200319 0.18201 22834 132086 -1 1754 19 1367 2159 159394 38155 2.95191 2.95191 -111.826 -2.95191 0 0 701300. 2426.64 0.23 0.10 0.18 -1 -1 0.23 0.0390285 0.0353315 116 34 62 31 31 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 11.34 vpr 63.21 MiB 0.05 7284 -1 -1 1 0.03 -1 -1 30492 -1 -1 36 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64728 31 32 395 311 1 196 99 17 17 289 -1 unnamed_device 24.3 MiB 0.17 975 9675 2183 7040 452 63.2 MiB 0.14 0.00 4.0281 -131.106 -4.0281 4.0281 0.93 0.00125016 0.00116152 0.0567008 0.0526807 26 3282 39 6.65987e+06 456408 477104. 1650.88 7.77 0.425716 0.384176 21682 110474 -1 2585 23 2029 3273 279490 64487 4.03197 4.03197 -143.979 -4.03197 0 0 585099. 2024.56 0.19 0.15 0.16 -1 -1 0.19 0.0571672 0.0515788 150 64 62 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.02 vpr 62.75 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30580 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 397 313 1 196 97 17 17 289 -1 unnamed_device 24.1 MiB 0.26 1040 11641 3109 7665 867 62.8 MiB 0.16 0.00 3.62624 -117.445 -3.62624 3.62624 0.96 0.00125651 0.00116882 0.0695733 0.0646154 28 2853 21 6.65987e+06 418374 500653. 1732.36 1.35 0.227562 0.206887 21970 115934 -1 2461 21 1631 2882 213506 48851 2.69931 2.69931 -113.273 -2.69931 0 0 612192. 2118.31 0.20 0.13 0.17 -1 -1 0.20 0.0526883 0.0477948 148 63 62 32 62 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 8.12 vpr 63.17 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30472 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 32 32 345 257 1 194 84 17 17 289 -1 unnamed_device 24.3 MiB 0.19 853 8685 1897 5601 1187 63.2 MiB 0.13 0.00 4.14936 -138.467 -4.14936 4.14936 0.96 0.00116451 0.0010834 0.0634965 0.0591248 34 3057 37 6.65987e+06 253560 585099. 2024.56 4.39 0.434174 0.392333 23122 138558 -1 2163 24 1866 3348 230951 57960 4.18623 4.18623 -151.672 -4.18623 0 0 742403. 2568.87 0.23 0.16 0.20 -1 -1 0.23 0.0621329 0.0561043 150 3 128 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 5.10 vpr 63.09 MiB 0.03 7324 -1 -1 1 0.03 -1 -1 30468 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 424 343 1 190 98 17 17 289 -1 unnamed_device 24.5 MiB 0.32 1097 11798 3144 7589 1065 63.1 MiB 0.17 0.00 3.29555 -116.715 -3.29555 3.29555 1.01 0.000979997 0.000906636 0.070345 0.0653022 32 2624 24 6.65987e+06 431052 554710. 1919.41 1.26 0.246903 0.224597 22834 132086 -1 2234 22 1558 2197 160072 38251 2.92765 2.92765 -117.766 -2.92765 0 0 701300. 2426.64 0.23 0.11 0.19 -1 -1 0.23 0.0559119 0.0506685 145 96 25 25 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.99 vpr 63.43 MiB 0.04 7256 -1 -1 1 0.03 -1 -1 30288 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 32 32 395 311 1 194 99 17 17 289 -1 unnamed_device 24.5 MiB 0.30 1042 7623 1446 5778 399 63.4 MiB 0.12 0.00 3.5841 -121.365 -3.5841 3.5841 0.95 0.00127097 0.00118186 0.0460351 0.0428305 32 2763 22 6.65987e+06 443730 554710. 1919.41 1.23 0.20528 0.186325 22834 132086 -1 2355 25 1672 2661 181958 43693 3.18117 3.18117 -123.448 -3.18117 0 0 701300. 2426.64 0.23 0.13 0.19 -1 -1 0.23 0.0608202 0.05513 146 61 64 32 60 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.93 vpr 63.36 MiB 0.02 7328 -1 -1 1 0.05 -1 -1 30504 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 405 318 1 200 101 17 17 289 -1 unnamed_device 24.4 MiB 0.25 1118 19136 5296 11671 2169 63.4 MiB 0.25 0.00 3.42984 -118.83 -3.42984 3.42984 0.95 0.00128397 0.00119353 0.107521 0.0997725 32 2576 21 6.65987e+06 469086 554710. 1919.41 1.19 0.269791 0.245963 22834 132086 -1 2260 24 1778 2855 196032 46978 2.78351 2.78351 -113.395 -2.78351 0 0 701300. 2426.64 0.22 0.13 0.19 -1 -1 0.22 0.0601423 0.0545003 155 65 63 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.88 vpr 62.86 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 30552 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 24.3 MiB 0.19 1050 17883 5724 9105 3054 62.9 MiB 0.22 0.00 4.02327 -139.218 -4.02327 4.02327 0.95 0.00121667 0.00113146 0.0984354 0.0913808 32 2649 24 6.65987e+06 443730 554710. 1919.41 1.22 0.257609 0.234803 22834 132086 -1 2244 23 2082 3456 262013 58525 3.52217 3.52217 -136.099 -3.52217 0 0 701300. 2426.64 0.23 0.14 0.19 -1 -1 0.23 0.0553601 0.0502072 150 34 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.72 vpr 63.39 MiB 0.05 7072 -1 -1 1 0.04 -1 -1 30664 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 24.5 MiB 0.18 1025 18901 5265 11118 2518 63.4 MiB 0.23 0.00 3.95704 -138.682 -3.95704 3.95704 0.96 0.00128048 0.00119025 0.106144 0.0985508 32 2602 24 6.65987e+06 469086 554710. 1919.41 1.23 0.27223 0.248221 22834 132086 -1 2225 20 1855 2813 208628 47207 3.53811 3.53811 -140.043 -3.53811 0 0 701300. 2426.64 0.23 0.12 0.19 -1 -1 0.23 0.0518141 0.0471018 153 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 5.08 vpr 63.36 MiB 0.05 7432 -1 -1 1 0.04 -1 -1 30428 -1 -1 34 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 31 32 449 367 1 193 97 17 17 289 -1 unnamed_device 24.4 MiB 0.32 1075 12529 3319 7633 1577 63.4 MiB 0.17 0.00 3.98298 -125.763 -3.98298 3.98298 0.95 0.00136097 0.00126374 0.0803788 0.0746806 28 2969 24 6.65987e+06 431052 500653. 1732.36 1.25 0.258506 0.234857 21970 115934 -1 2508 23 1678 2821 210617 47704 3.27465 3.27465 -125.599 -3.27465 0 0 612192. 2118.31 0.21 0.13 0.17 -1 -1 0.21 0.0603696 0.0545597 145 122 0 0 122 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.91 vpr 63.27 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 30452 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64788 32 32 432 346 1 195 84 17 17 289 -1 unnamed_device 24.4 MiB 0.27 1088 15822 4733 9518 1571 63.3 MiB 0.19 0.00 4.01118 -127.976 -4.01118 4.01118 0.91 0.000491382 0.000451957 0.0938502 0.0871245 32 2569 23 6.65987e+06 253560 554710. 1919.41 1.16 0.265308 0.241429 22834 132086 -1 2334 23 1947 3557 280084 61869 3.35685 3.35685 -128.969 -3.35685 0 0 701300. 2426.64 0.23 0.15 0.19 -1 -1 0.23 0.0608011 0.0551163 149 94 32 32 94 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 8.15 vpr 62.73 MiB 0.04 7000 -1 -1 1 0.03 -1 -1 30664 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 312 255 1 166 94 17 17 289 -1 unnamed_device 23.8 MiB 0.16 771 8827 2156 6189 482 62.7 MiB 0.12 0.00 3.35364 -111.63 -3.35364 3.35364 0.97 0.00103653 0.000953258 0.0455311 0.0422363 28 2137 22 6.65987e+06 380340 500653. 1732.36 4.56 0.302204 0.271598 21970 115934 -1 1997 22 1424 2203 166100 38997 2.90265 2.90265 -116.7 -2.90265 0 0 612192. 2118.31 0.20 0.11 0.17 -1 -1 0.20 0.0442693 0.0399768 124 34 63 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.76 vpr 62.80 MiB 0.04 7160 -1 -1 1 0.03 -1 -1 30548 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 23.8 MiB 0.25 775 7914 1954 5542 418 62.8 MiB 0.12 0.00 3.38184 -115.147 -3.38184 3.38184 0.95 0.00114524 0.00105879 0.0538628 0.0500012 32 2138 20 6.65987e+06 228204 554710. 1919.41 1.13 0.194582 0.17617 22834 132086 -1 1854 18 1278 2018 153184 33985 2.95691 2.95691 -116.144 -2.95691 0 0 701300. 2426.64 0.23 0.10 0.19 -1 -1 0.23 0.0419794 0.0379959 121 94 0 0 94 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 5.18 vpr 63.29 MiB 0.03 7376 -1 -1 1 0.03 -1 -1 30920 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 469 351 1 233 104 17 17 289 -1 unnamed_device 24.7 MiB 0.16 1358 14500 3674 9480 1346 63.3 MiB 0.21 0.00 4.6627 -160.408 -4.6627 4.6627 0.95 0.00148948 0.00138746 0.0924313 0.0859809 32 3498 25 6.65987e+06 507120 554710. 1919.41 1.40 0.290007 0.264119 22834 132086 -1 2900 23 2635 4208 298113 69822 4.50217 4.50217 -165.284 -4.50217 0 0 701300. 2426.64 0.23 0.17 0.19 -1 -1 0.23 0.0674296 0.0612662 187 65 96 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 5.03 vpr 63.16 MiB 0.04 7184 -1 -1 1 0.03 -1 -1 30480 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 368 284 1 194 95 17 17 289 -1 unnamed_device 24.3 MiB 0.27 954 14567 4735 7432 2400 63.2 MiB 0.19 0.00 3.51422 -121.562 -3.51422 3.51422 0.95 0.0012093 0.00112439 0.0844072 0.0784709 32 2527 26 6.65987e+06 393018 554710. 1919.41 1.20 0.245906 0.223921 22834 132086 -1 2120 22 1589 2413 181576 41910 3.12437 3.12437 -122.201 -3.12437 0 0 701300. 2426.64 0.26 0.12 0.19 -1 -1 0.26 0.0555503 0.050601 146 34 92 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.83 vpr 62.79 MiB 0.04 7064 -1 -1 1 0.03 -1 -1 30316 -1 -1 30 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 30 32 296 244 1 158 92 17 17 289 -1 unnamed_device 23.8 MiB 0.17 839 17066 5534 9253 2279 62.8 MiB 0.19 0.00 3.49012 -114.14 -3.49012 3.49012 0.98 0.000971242 0.000902354 0.0844115 0.0783972 32 1799 33 6.65987e+06 380340 554710. 1919.41 1.19 0.237962 0.216305 22834 132086 -1 1710 18 1180 1737 123370 28223 2.79197 2.79197 -109.426 -2.79197 0 0 701300. 2426.64 0.22 0.08 0.19 -1 -1 0.22 0.036591 0.0331011 115 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 5.52 vpr 63.35 MiB 0.05 7476 -1 -1 1 0.03 -1 -1 30964 -1 -1 43 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 531 413 1 232 107 17 17 289 -1 unnamed_device 24.6 MiB 0.48 1333 18829 5161 11634 2034 63.4 MiB 0.27 0.00 4.64147 -157.361 -4.64147 4.64147 0.95 0.00159454 0.00148091 0.122626 0.113724 30 2844 21 6.65987e+06 545154 526063. 1820.29 1.37 0.323105 0.294498 22546 126617 -1 2398 23 2018 3072 157660 37757 4.17037 4.17037 -158 -4.17037 0 0 666494. 2306.21 0.22 0.14 0.18 -1 -1 0.22 0.0733471 0.0667367 186 127 32 32 128 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.95 vpr 62.76 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30468 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 376 288 1 194 100 17 17 289 -1 unnamed_device 24.2 MiB 0.18 1044 16340 4500 10034 1806 62.8 MiB 0.20 0.00 4.15932 -143.209 -4.15932 4.15932 0.95 0.00122364 0.00113681 0.0912522 0.0848306 28 2400 22 6.65987e+06 456408 500653. 1732.36 1.32 0.248667 0.226802 21970 115934 -1 2199 23 1728 2622 176548 40048 3.54023 3.54023 -139.736 -3.54023 0 0 612192. 2118.31 0.20 0.12 0.17 -1 -1 0.20 0.0558443 0.050651 151 34 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.75 vpr 62.84 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30416 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 283 225 1 164 95 17 17 289 -1 unnamed_device 23.8 MiB 0.17 722 13055 3473 8103 1479 62.8 MiB 0.15 0.00 3.50687 -117.927 -3.50687 3.50687 0.95 0.000981611 0.000912412 0.0621533 0.0577022 28 2297 22 6.65987e+06 393018 500653. 1732.36 1.23 0.188056 0.170593 21970 115934 -1 1934 21 1371 2262 173203 41631 2.93097 2.93097 -118.23 -2.93097 0 0 612192. 2118.31 0.20 0.11 0.17 -1 -1 0.20 0.041132 0.0371648 123 3 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 5.08 vpr 63.30 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30816 -1 -1 41 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 438 320 1 235 105 17 17 289 -1 unnamed_device 24.6 MiB 0.22 1337 12702 3419 8223 1060 63.3 MiB 0.19 0.00 4.90437 -166.477 -4.90437 4.90437 0.90 0.0014274 0.00133028 0.0775014 0.0721647 30 3005 22 6.65987e+06 519798 526063. 1820.29 1.38 0.260926 0.237695 22546 126617 -1 2536 23 1897 3418 212452 47742 4.54303 4.54303 -164.492 -4.54303 0 0 666494. 2306.21 0.22 0.14 0.18 -1 -1 0.22 0.0648914 0.0589313 188 34 128 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.70 vpr 62.71 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30336 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 283 225 1 162 80 17 17 289 -1 unnamed_device 23.7 MiB 0.14 852 11260 3935 5447 1878 62.7 MiB 0.14 0.00 3.4749 -119.679 -3.4749 3.4749 0.95 0.000996949 0.000927259 0.0674665 0.0627726 32 2154 20 6.65987e+06 202848 554710. 1919.41 1.13 0.190577 0.173311 22834 132086 -1 1840 20 1518 2424 193396 44903 2.86277 2.86277 -117.186 -2.86277 0 0 701300. 2426.64 0.22 0.11 0.19 -1 -1 0.22 0.0396575 0.0358903 121 3 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.53 vpr 63.12 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30160 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 30 32 296 244 1 157 93 17 17 289 -1 unnamed_device 24.2 MiB 0.19 707 8073 1842 5622 609 63.1 MiB 0.10 0.00 3.47387 -110.471 -3.47387 3.47387 0.95 0.000991573 0.000921957 0.0392467 0.0364246 28 1978 23 6.65987e+06 393018 500653. 1732.36 1.08 0.164279 0.148312 21970 115934 -1 1775 19 1139 1798 113620 27836 3.13057 3.13057 -113.96 -3.13057 0 0 612192. 2118.31 0.21 0.09 0.17 -1 -1 0.21 0.0381045 0.0344833 113 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.77 vpr 63.27 MiB 0.05 7364 -1 -1 1 0.03 -1 -1 30488 -1 -1 33 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 29 32 393 319 1 182 94 17 17 289 -1 unnamed_device 24.4 MiB 0.34 964 15856 4549 8713 2594 63.3 MiB 0.20 0.00 3.50895 -109.722 -3.50895 3.50895 0.95 0.00121724 0.00113108 0.0941121 0.0873837 30 1987 21 6.65987e+06 418374 526063. 1820.29 1.12 0.246818 0.224813 22546 126617 -1 1675 18 1050 1751 89648 21297 2.54417 2.54417 -99.3535 -2.54417 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0447225 0.040574 133 88 29 29 85 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.86 vpr 63.19 MiB 0.05 7188 -1 -1 1 0.04 -1 -1 30612 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 407 319 1 194 84 17 17 289 -1 unnamed_device 24.3 MiB 0.20 969 7587 1560 5690 337 63.2 MiB 0.13 0.00 4.0593 -135.974 -4.0593 4.0593 0.95 0.00127467 0.00118469 0.0564471 0.0525004 32 2443 25 6.65987e+06 253560 554710. 1919.41 1.26 0.225132 0.204578 22834 132086 -1 2088 25 2314 3477 244935 57584 3.68457 3.68457 -142.02 -3.68457 0 0 701300. 2426.64 0.22 0.15 0.19 -1 -1 0.22 0.0623811 0.0566403 151 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 5.26 vpr 63.07 MiB 0.05 7260 -1 -1 1 0.03 -1 -1 30684 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 407 319 1 195 98 17 17 289 -1 unnamed_device 24.1 MiB 0.34 1039 19223 6359 10018 2846 63.1 MiB 0.25 0.00 4.06007 -140.169 -4.06007 4.06007 0.96 0.00129044 0.00119999 0.113322 0.105256 28 2622 21 6.65987e+06 431052 500653. 1732.36 1.37 0.275609 0.251505 21970 115934 -1 2332 23 1955 3393 244955 54328 3.58117 3.58117 -141.311 -3.58117 0 0 612192. 2118.31 0.20 0.14 0.19 -1 -1 0.20 0.0580463 0.0526454 152 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.73 vpr 62.95 MiB 0.04 7064 -1 -1 1 0.03 -1 -1 30644 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64460 32 32 345 287 1 161 94 17 17 289 -1 unnamed_device 24.0 MiB 0.19 697 8614 1900 5780 934 62.9 MiB 0.11 0.00 3.41884 -113.998 -3.41884 3.41884 0.94 0.00109755 0.00101817 0.0471631 0.0437565 32 2032 20 6.65987e+06 380340 554710. 1919.41 1.19 0.181575 0.164369 22834 132086 -1 1625 21 1310 2082 150460 35851 2.85371 2.85371 -112.44 -2.85371 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0455135 0.0411291 120 65 32 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.92 vpr 62.93 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30456 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 24.1 MiB 0.29 800 12464 4445 5613 2406 62.9 MiB 0.17 0.00 3.46898 -107.215 -3.46898 3.46898 0.97 0.00108452 0.00100607 0.0820083 0.0761229 32 2030 22 6.65987e+06 215526 554710. 1919.41 1.15 0.219552 0.199323 22834 132086 -1 1743 19 1077 1906 135704 32062 2.78045 2.78045 -105.171 -2.78045 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0420224 0.0379371 109 90 0 0 89 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 5.35 vpr 63.22 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30364 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 30 32 374 297 1 186 95 17 17 289 -1 unnamed_device 24.4 MiB 0.26 998 10463 2754 7099 610 63.2 MiB 0.14 0.00 3.41496 -111.837 -3.41496 3.41496 0.95 0.00118943 0.00110713 0.0612134 0.0568647 26 2623 34 6.65987e+06 418374 477104. 1650.88 1.72 0.237651 0.215626 21682 110474 -1 2174 18 1304 2116 159402 37127 3.20751 3.20751 -117.507 -3.20751 0 0 585099. 2024.56 0.20 0.10 0.16 -1 -1 0.20 0.0442996 0.0402518 137 60 60 30 57 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.76 vpr 63.05 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 30432 -1 -1 31 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 28 32 332 260 1 180 91 17 17 289 -1 unnamed_device 24.0 MiB 0.18 995 16207 5283 8775 2149 63.1 MiB 0.20 0.00 4.24344 -123.397 -4.24344 4.24344 0.96 0.00108059 0.00100504 0.0882965 0.0820928 28 2437 23 6.65987e+06 393018 500653. 1732.36 1.19 0.227876 0.207587 21970 115934 -1 2185 19 1477 2458 188770 42711 3.80971 3.80971 -127.471 -3.80971 0 0 612192. 2118.31 0.20 0.11 0.17 -1 -1 0.20 0.0425831 0.0386631 133 34 84 28 28 28 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 6.85 vpr 62.82 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30272 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64332 30 32 325 273 1 157 80 17 17 289 -1 unnamed_device 23.8 MiB 0.19 833 13152 4911 6590 1651 62.8 MiB 0.17 0.00 3.5343 -116.066 -3.5343 3.5343 0.96 0.00104015 0.000965656 0.0821041 0.0762817 32 1931 26 6.65987e+06 228204 554710. 1919.41 3.31 0.362406 0.326796 22834 132086 -1 1735 22 1408 2254 166635 38790 2.92677 2.92677 -114.444 -2.92677 0 0 701300. 2426.64 0.23 0.10 0.19 -1 -1 0.23 0.0448213 0.0404409 114 63 30 30 60 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.70 vpr 62.96 MiB 0.04 7148 -1 -1 1 0.03 -1 -1 30324 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 361 308 1 158 80 17 17 289 -1 unnamed_device 24.1 MiB 0.28 910 8164 2057 5403 704 63.0 MiB 0.12 0.00 3.44398 -109.924 -3.44398 3.44398 0.98 0.00111922 0.00103907 0.0560323 0.0520076 30 1877 20 6.65987e+06 202848 526063. 1820.29 1.07 0.194819 0.176576 22546 126617 -1 1665 19 860 1405 84533 19191 2.47605 2.47605 -102.562 -2.47605 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0429343 0.0388597 113 91 0 0 91 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 7.47 vpr 63.13 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 30516 -1 -1 35 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 31 32 335 251 1 196 98 17 17 289 -1 unnamed_device 24.3 MiB 0.18 1111 13823 3486 9077 1260 63.1 MiB 0.18 0.00 4.13353 -137.36 -4.13353 4.13353 0.96 0.00115322 0.00106377 0.0718751 0.0668465 32 2797 36 6.65987e+06 443730 554710. 1919.41 3.87 0.467966 0.423151 22834 132086 -1 2514 20 1824 2994 234014 54422 4.01723 4.01723 -145.916 -4.01723 0 0 701300. 2426.64 0.23 0.12 0.19 -1 -1 0.23 0.0467379 0.0424887 150 4 124 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 9.14 vpr 62.95 MiB 0.04 7124 -1 -1 1 0.03 -1 -1 30764 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 407 319 1 197 98 17 17 289 -1 unnamed_device 24.3 MiB 0.20 1037 13598 4125 8601 872 63.0 MiB 0.19 0.00 4.1263 -141.609 -4.1263 4.1263 0.96 0.0012809 0.00118998 0.081079 0.0752945 26 3131 43 6.65987e+06 431052 477104. 1650.88 5.51 0.46169 0.417097 21682 110474 -1 2513 19 1747 2947 214233 50063 3.83557 3.83557 -144.059 -3.83557 0 0 585099. 2024.56 0.19 0.12 0.16 -1 -1 0.19 0.0496462 0.0451212 153 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 5.73 vpr 63.28 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30484 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 407 319 1 194 98 17 17 289 -1 unnamed_device 24.3 MiB 0.19 1033 10448 2380 7653 415 63.3 MiB 0.15 0.00 4.16458 -142.258 -4.16458 4.16458 0.95 0.00130054 0.00121003 0.0642568 0.0596337 28 3069 27 6.65987e+06 431052 500653. 1732.36 2.06 0.23622 0.214561 21970 115934 -1 2480 20 1679 2836 243334 54734 3.82263 3.82263 -147.428 -3.82263 0 0 612192. 2118.31 0.20 0.13 0.17 -1 -1 0.20 0.0520024 0.0472508 151 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 4.88 vpr 63.00 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 30484 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 32 32 399 315 1 196 101 17 17 289 -1 unnamed_device 24.4 MiB 0.29 982 9031 1878 6401 752 63.0 MiB 0.13 0.00 3.86706 -126.941 -3.86706 3.86706 0.95 0.00126471 0.00117504 0.0520859 0.0483661 30 2516 24 6.65987e+06 469086 526063. 1820.29 1.25 0.218402 0.197971 22546 126617 -1 2125 20 1264 2174 119793 28949 3.29571 3.29571 -124.191 -3.29571 0 0 666494. 2306.21 0.25 0.05 0.17 -1 -1 0.25 0.0224625 0.0203544 148 65 60 30 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 6.73 vpr 63.10 MiB 0.04 7096 -1 -1 1 0.03 -1 -1 30404 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 30 32 296 244 1 156 80 17 17 289 -1 unnamed_device 24.2 MiB 0.21 698 7992 1870 5622 500 63.1 MiB 0.11 0.00 3.50927 -110.859 -3.50927 3.50927 0.95 0.000942568 0.000872357 0.0482859 0.0449161 32 1997 19 6.65987e+06 228204 554710. 1919.41 3.26 0.3444 0.309496 22834 132086 -1 1670 20 1191 1898 143164 35971 3.01117 3.01117 -112.49 -3.01117 0 0 701300. 2426.64 0.22 0.09 0.16 -1 -1 0.22 0.0397536 0.0359272 112 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.88 vpr 63.30 MiB 0.04 7240 -1 -1 1 0.04 -1 -1 30380 -1 -1 22 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 30 32 383 303 1 191 84 17 17 289 -1 unnamed_device 24.5 MiB 0.25 985 11796 3468 7405 923 63.3 MiB 0.18 0.00 4.19776 -134.529 -4.19776 4.19776 0.95 0.00121411 0.00112837 0.0817823 0.0760392 32 2293 22 6.65987e+06 278916 554710. 1919.41 1.17 0.237271 0.216123 22834 132086 -1 1909 21 1833 2802 179869 43256 3.55543 3.55543 -130.82 -3.55543 0 0 701300. 2426.64 0.22 0.11 0.19 -1 -1 0.22 0.050868 0.0461212 145 63 60 30 60 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 5.08 vpr 63.23 MiB 0.05 7496 -1 -1 1 0.04 -1 -1 31044 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 469 381 1 198 103 17 17 289 -1 unnamed_device 24.7 MiB 0.22 1052 13117 2855 8842 1420 63.2 MiB 0.17 0.00 3.91498 -132.986 -3.91498 3.91498 0.95 0.00141447 0.00131491 0.0803616 0.074673 32 2978 27 6.65987e+06 494442 554710. 1919.41 1.34 0.270608 0.245628 22834 132086 -1 2307 23 2119 3423 259437 61816 3.65425 3.65425 -136.642 -3.65425 0 0 701300. 2426.64 0.23 0.15 0.19 -1 -1 0.23 0.0630205 0.0569605 154 127 0 0 128 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 8.52 vpr 63.18 MiB 0.03 7312 -1 -1 1 0.03 -1 -1 30672 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 31 32 425 341 1 189 94 17 17 289 -1 unnamed_device 24.2 MiB 0.16 1050 9679 2438 6769 472 63.2 MiB 0.15 0.00 3.91106 -131.382 -3.91106 3.91106 0.96 0.00129658 0.0012046 0.0625374 0.0580733 26 3054 32 6.65987e+06 393018 477104. 1650.88 4.96 0.422079 0.381466 21682 110474 -1 2358 21 1754 2871 218422 49743 3.67651 3.67651 -137.032 -3.67651 0 0 585099. 2024.56 0.19 0.13 0.16 -1 -1 0.19 0.0544295 0.0493603 146 94 31 31 93 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 6.73 vpr 63.18 MiB 0.04 7360 -1 -1 1 0.04 -1 -1 30652 -1 -1 30 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 30 32 404 328 1 182 92 17 17 289 -1 unnamed_device 24.3 MiB 0.25 992 11063 2679 7283 1101 63.2 MiB 0.16 0.00 3.74723 -113.498 -3.74723 3.74723 0.95 0.00124215 0.0011535 0.0698387 0.0648899 28 2306 25 6.65987e+06 380340 500653. 1732.36 3.12 0.376524 0.340152 21970 115934 -1 2083 20 1067 1931 124993 29803 2.99711 2.99711 -113.207 -2.99711 0 0 612192. 2118.31 0.20 0.10 0.17 -1 -1 0.20 0.0501396 0.0454664 136 92 26 26 90 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 5.04 vpr 63.15 MiB 0.03 7256 -1 -1 1 0.03 -1 -1 30552 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64668 32 32 407 319 1 198 85 17 17 289 -1 unnamed_device 24.3 MiB 0.31 1074 13477 4127 7567 1783 63.2 MiB 0.20 0.00 4.06547 -141.302 -4.06547 4.06547 0.95 0.001282 0.00119081 0.0960835 0.0892745 32 2848 23 6.65987e+06 266238 554710. 1919.41 1.26 0.262487 0.239427 22834 132086 -1 2602 21 2083 3632 279096 63259 3.71237 3.71237 -144.392 -3.71237 0 0 701300. 2426.64 0.22 0.14 0.19 -1 -1 0.22 0.0537155 0.0488387 154 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.83 vpr 63.12 MiB 0.03 7380 -1 -1 1 0.03 -1 -1 30348 -1 -1 34 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64636 29 32 387 316 1 179 95 17 17 289 -1 unnamed_device 24.3 MiB 0.24 874 10895 2930 7022 943 63.1 MiB 0.15 0.00 3.36406 -101.988 -3.36406 3.36406 0.95 0.00120503 0.00111961 0.0636926 0.0591621 32 2122 24 6.65987e+06 431052 554710. 1919.41 1.15 0.219658 0.199344 22834 132086 -1 1864 21 1429 2297 156376 37592 2.76891 2.76891 -100.466 -2.76891 0 0 701300. 2426.64 0.23 0.10 0.19 -1 -1 0.23 0.0483679 0.043703 134 88 26 26 85 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.74 vpr 62.65 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30352 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 283 225 1 158 80 17 17 289 -1 unnamed_device 23.8 MiB 0.16 799 10056 2635 6899 522 62.6 MiB 0.13 0.00 3.5031 -122.874 -3.5031 3.5031 0.98 0.000983901 0.000915127 0.0602371 0.0560669 32 2149 20 6.65987e+06 202848 554710. 1919.41 1.14 0.181935 0.165379 22834 132086 -1 1893 23 1457 2232 191798 44166 2.94997 2.94997 -121.754 -2.94997 0 0 701300. 2426.64 0.25 0.11 0.19 -1 -1 0.25 0.0452063 0.0409205 117 3 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 5.17 vpr 63.01 MiB 0.06 7072 -1 -1 1 0.03 -1 -1 30432 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 407 319 1 194 97 17 17 289 -1 unnamed_device 24.4 MiB 0.33 1015 16525 5345 8784 2396 63.0 MiB 0.22 0.00 4.18856 -142.192 -4.18856 4.18856 0.96 0.00128514 0.0011947 0.0996367 0.0925564 32 2828 26 6.65987e+06 418374 554710. 1919.41 1.31 0.272564 0.248477 22834 132086 -1 2148 20 1723 2575 198999 44834 3.92903 3.92903 -142.048 -3.92903 0 0 701300. 2426.64 0.23 0.12 0.19 -1 -1 0.23 0.0514837 0.0467403 150 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.99 vpr 63.39 MiB 0.05 7248 -1 -1 1 0.03 -1 -1 30628 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 32 32 407 319 1 201 85 17 17 289 -1 unnamed_device 24.5 MiB 0.27 1026 16081 4881 8736 2464 63.4 MiB 0.23 0.00 4.23393 -146.239 -4.23393 4.23393 0.93 0.00129103 0.00120031 0.1147 0.106617 32 2587 21 6.65987e+06 266238 554710. 1919.41 1.20 0.276972 0.252983 22834 132086 -1 2281 21 2112 3230 249406 57054 3.85563 3.85563 -148.603 -3.85563 0 0 701300. 2426.64 0.22 0.14 0.19 -1 -1 0.22 0.0545408 0.0495367 157 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 7.25 vpr 62.96 MiB 0.04 7036 -1 -1 1 0.03 -1 -1 30504 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 315 267 1 158 93 17 17 289 -1 unnamed_device 24.1 MiB 0.22 688 16683 5557 7719 3407 63.0 MiB 0.17 0.00 3.44878 -105.048 -3.44878 3.44878 0.95 0.00101464 0.000939127 0.0834786 0.0772596 32 2318 45 6.65987e+06 367662 554710. 1919.41 3.63 0.393981 0.354342 22834 132086 -1 1774 23 1316 1986 170360 42279 2.89585 2.89585 -106.778 -2.89585 0 0 701300. 2426.64 0.22 0.11 0.19 -1 -1 0.22 0.0456296 0.0411311 111 55 32 32 54 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.59 vpr 62.80 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30536 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 23.9 MiB 0.17 720 9356 2387 5915 1054 62.8 MiB 0.12 0.00 3.4529 -113.153 -3.4529 3.4529 0.95 0.000952803 0.000885991 0.0536606 0.0499048 30 1921 19 6.65987e+06 228204 526063. 1820.29 1.11 0.172164 0.156129 22546 126617 -1 1653 19 1135 1847 109681 25398 2.89017 2.89017 -110.427 -2.89017 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0373176 0.0337545 118 4 93 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 7.37 vpr 62.96 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30304 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 381 303 1 188 96 17 17 289 -1 unnamed_device 24.1 MiB 0.31 913 5790 1032 4561 197 63.0 MiB 0.09 0.00 3.91316 -128.563 -3.91316 3.91316 0.97 0.00122186 0.00113589 0.0348853 0.0324609 28 2492 21 6.65987e+06 405696 500653. 1732.36 3.69 0.392805 0.353788 21970 115934 -1 2127 22 1708 2618 169708 40876 3.51131 3.51131 -129.06 -3.51131 0 0 612192. 2118.31 0.20 0.12 0.17 -1 -1 0.20 0.0532529 0.0483154 138 59 60 32 58 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.78 vpr 63.12 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30356 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 406 330 1 190 94 17 17 289 -1 unnamed_device 24.2 MiB 0.13 879 9892 2434 7009 449 63.1 MiB 0.14 0.00 4.11224 -123.302 -4.11224 4.11224 0.95 0.00125262 0.00116326 0.0616485 0.0572247 28 2748 30 6.65987e+06 380340 500653. 1732.36 2.21 0.242627 0.219972 21970 115934 -1 2268 21 1525 2482 189194 45302 3.75965 3.75965 -132.217 -3.75965 0 0 612192. 2118.31 0.20 0.12 0.17 -1 -1 0.20 0.052148 0.0472065 134 88 28 28 88 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 5.59 vpr 63.25 MiB 0.03 7284 -1 -1 1 0.04 -1 -1 30528 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64768 32 32 399 285 1 228 99 17 17 289 -1 unnamed_device 24.8 MiB 0.18 1247 19251 5678 10972 2601 63.2 MiB 0.27 0.00 4.78976 -159.687 -4.78976 4.78976 0.95 0.00132979 0.00123783 0.116392 0.108337 32 3193 25 6.65987e+06 443730 554710. 1919.41 1.85 0.346108 0.315693 22834 132086 -1 2747 21 2279 3705 310725 67301 4.59123 4.59123 -160.978 -4.59123 0 0 701300. 2426.64 0.22 0.15 0.21 -1 -1 0.22 0.0568211 0.0517884 177 3 156 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.72 vpr 63.07 MiB 0.03 7180 -1 -1 1 0.03 -1 -1 30492 -1 -1 32 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 30 32 371 295 1 184 94 17 17 289 -1 unnamed_device 24.0 MiB 0.28 1003 9892 2469 6555 868 63.1 MiB 0.14 0.00 3.59821 -110.073 -3.59821 3.59821 0.95 0.00117651 0.00109391 0.057868 0.0537332 32 2467 27 6.65987e+06 405696 554710. 1919.41 1.11 0.185837 0.168503 22834 132086 -1 2090 17 1389 2141 143743 34003 3.09831 3.09831 -115.322 -3.09831 0 0 701300. 2426.64 0.23 0.10 0.20 -1 -1 0.23 0.0422105 0.0383377 136 59 60 30 56 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.56 vpr 62.75 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30664 -1 -1 20 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 27 32 269 226 1 143 79 17 17 289 -1 unnamed_device 23.9 MiB 0.13 768 12754 4322 6521 1911 62.7 MiB 0.14 0.00 3.3979 -99.6122 -3.3979 3.3979 0.95 0.000899956 0.000836254 0.0709546 0.0659647 32 1622 20 6.65987e+06 253560 554710. 1919.41 1.07 0.182761 0.166008 22834 132086 -1 1433 19 1101 1607 114150 26684 2.65457 2.65457 -96.0417 -2.65457 0 0 701300. 2426.64 0.23 0.08 0.19 -1 -1 0.23 0.0349219 0.0314854 107 34 54 27 27 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 5.27 vpr 63.29 MiB 0.05 7460 -1 -1 1 0.05 -1 -1 30608 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64804 32 32 493 378 1 232 104 17 17 289 -1 unnamed_device 24.5 MiB 0.25 1366 15232 4128 9656 1448 63.3 MiB 0.22 0.00 4.15924 -136.806 -4.15924 4.15924 0.95 0.00154613 0.001439 0.0997176 0.0927061 32 3532 23 6.65987e+06 507120 554710. 1919.41 1.35 0.29955 0.273152 22834 132086 -1 3116 25 2452 4454 369344 81847 3.70451 3.70451 -139.486 -3.70451 0 0 701300. 2426.64 0.23 0.19 0.19 -1 -1 0.23 0.0731615 0.0662648 184 95 62 31 95 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.95 vpr 63.37 MiB 0.03 7456 -1 -1 1 0.03 -1 -1 30560 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 31 32 455 371 1 189 84 17 17 289 -1 unnamed_device 24.5 MiB 0.23 989 7038 1632 4931 475 63.4 MiB 0.12 0.00 4.3087 -132.62 -4.3087 4.3087 0.95 0.00136711 0.00127135 0.0557207 0.0518004 32 2571 26 6.65987e+06 266238 554710. 1919.41 1.24 0.237627 0.215236 22834 132086 -1 2282 21 1694 2657 218061 49810 4.03291 4.03291 -147.001 -4.03291 0 0 701300. 2426.64 0.22 0.13 0.19 -1 -1 0.22 0.0568859 0.0515205 145 124 0 0 124 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 6.77 vpr 62.77 MiB 0.07 7044 -1 -1 1 0.04 -1 -1 30408 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 355 304 1 151 80 17 17 289 -1 unnamed_device 23.9 MiB 0.21 741 9196 2428 5976 792 62.8 MiB 0.13 0.00 3.81463 -109.262 -3.81463 3.81463 0.95 0.00109801 0.00101824 0.0614955 0.0570376 32 1970 20 6.65987e+06 202848 554710. 1919.41 3.14 0.364942 0.328129 22834 132086 -1 1716 16 778 1248 99102 23351 2.76971 2.76971 -108.047 -2.76971 0 0 701300. 2426.64 0.23 0.08 0.19 -1 -1 0.23 0.0370658 0.033611 109 89 0 0 89 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 6.84 vpr 63.17 MiB 0.04 7260 -1 -1 1 0.03 -1 -1 30436 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 32 32 364 282 1 196 96 17 17 289 -1 unnamed_device 24.3 MiB 0.12 1123 15645 4083 9696 1866 63.2 MiB 0.20 0.00 4.2837 -136.384 -4.2837 4.2837 0.98 0.00119314 0.00110809 0.0876397 0.0814315 26 2928 26 6.65987e+06 405696 477104. 1650.88 3.26 0.391585 0.354579 21682 110474 -1 2479 21 1641 2482 206525 46385 4.06417 4.06417 -142.835 -4.06417 0 0 585099. 2024.56 0.19 0.12 0.16 -1 -1 0.19 0.0516405 0.0467703 146 34 90 30 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 5.10 vpr 63.11 MiB 0.03 7360 -1 -1 1 0.03 -1 -1 30712 -1 -1 36 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 31 32 443 336 1 220 99 17 17 289 -1 unnamed_device 24.6 MiB 0.27 1167 13551 3218 9177 1156 63.1 MiB 0.21 0.00 4.22766 -133.836 -4.22766 4.22766 0.98 0.00139399 0.00129597 0.0874291 0.0815112 32 2736 25 6.65987e+06 456408 554710. 1919.41 1.21 0.272666 0.24807 22834 132086 -1 2359 22 1949 3007 210190 49032 3.53431 3.53431 -136.186 -3.53431 0 0 701300. 2426.64 0.23 0.13 0.19 -1 -1 0.23 0.0612542 0.0555583 171 64 87 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 5.64 vpr 63.17 MiB 0.05 7292 -1 -1 1 0.03 -1 -1 30420 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 30 32 373 297 1 186 95 17 17 289 -1 unnamed_device 24.3 MiB 0.25 1070 11111 2802 7426 883 63.2 MiB 0.15 0.00 3.62941 -110.797 -3.62941 3.62941 1.01 0.0011806 0.00109647 0.0636942 0.0591634 26 2822 41 6.65987e+06 418374 477104. 1650.88 1.92 0.248411 0.225025 21682 110474 -1 2338 22 1446 2525 192118 43505 2.92491 2.92491 -112.813 -2.92491 0 0 585099. 2024.56 0.19 0.12 0.17 -1 -1 0.19 0.0512901 0.046459 134 61 58 30 58 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.95 vpr 63.04 MiB 0.04 7244 -1 -1 1 0.04 -1 -1 30484 -1 -1 42 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 407 319 1 201 106 17 17 289 -1 unnamed_device 24.4 MiB 0.23 1074 12606 3053 8336 1217 63.0 MiB 0.19 0.00 4.0783 -140.694 -4.0783 4.0783 0.95 0.0012865 0.00119547 0.0782326 0.0727231 30 2478 23 6.65987e+06 532476 526063. 1820.29 1.24 0.245644 0.223743 22546 126617 -1 2051 21 1402 2299 137271 31767 3.45817 3.45817 -133.145 -3.45817 0 0 666494. 2306.21 0.22 0.11 0.18 -1 -1 0.22 0.0538002 0.0488539 157 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 7.67 vpr 63.39 MiB 0.04 7192 -1 -1 1 0.03 -1 -1 30536 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64908 32 32 405 318 1 200 102 17 17 289 -1 unnamed_device 24.4 MiB 0.28 984 6766 1232 5172 362 63.4 MiB 0.11 0.00 3.41884 -115.761 -3.41884 3.41884 0.95 0.00130323 0.00121272 0.0419013 0.0389466 26 2850 33 6.65987e+06 481764 477104. 1650.88 3.99 0.397193 0.358114 21682 110474 -1 2423 27 1696 2761 248201 56812 3.08311 3.08311 -119.664 -3.08311 0 0 585099. 2024.56 0.19 0.15 0.16 -1 -1 0.19 0.0663665 0.0600844 155 65 63 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.51 vpr 63.05 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30516 -1 -1 16 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 29 32 287 238 1 135 77 17 17 289 -1 unnamed_device 24.2 MiB 0.08 508 12791 3386 7672 1733 63.1 MiB 0.13 0.00 3.7595 -104.085 -3.7595 3.7595 0.95 0.0009539 0.000886381 0.0777033 0.0722644 32 1575 24 6.65987e+06 202848 554710. 1919.41 1.10 0.209069 0.189937 22834 132086 -1 1424 18 959 1325 113804 28264 2.77157 2.77157 -102.97 -2.77157 0 0 701300. 2426.64 0.23 0.08 0.18 -1 -1 0.23 0.0355952 0.0321729 93 34 58 29 29 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.43 vpr 62.73 MiB 0.04 7140 -1 -1 1 0.03 -1 -1 30116 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 334 290 1 154 81 17 17 289 -1 unnamed_device 23.9 MiB 0.17 872 14431 4553 8297 1581 62.7 MiB 0.17 0.00 3.69338 -109.525 -3.69338 3.69338 0.95 0.00104112 0.000965108 0.0889883 0.0825528 32 1993 22 6.65987e+06 215526 554710. 1919.41 0.89 0.168745 0.153492 22834 132086 -1 1836 20 1048 1483 131354 29319 2.84891 2.84891 -106.583 -2.84891 0 0 701300. 2426.64 0.23 0.09 0.19 -1 -1 0.23 0.0421948 0.0381306 111 82 0 0 82 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 11.59 vpr 63.12 MiB 0.04 7104 -1 -1 1 0.03 -1 -1 30444 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64636 31 32 365 281 1 196 100 17 17 289 -1 unnamed_device 24.3 MiB 0.20 964 13556 3768 8523 1265 63.1 MiB 0.19 0.00 4.3897 -133.197 -4.3897 4.3897 0.95 0.00119481 0.00111046 0.0730673 0.0679267 28 3178 29 6.65987e+06 469086 500653. 1732.36 7.85 0.495992 0.448177 21970 115934 -1 2327 35 2674 4462 506472 162293 3.75231 3.75231 -143.177 -3.75231 0 0 612192. 2118.31 0.20 0.24 0.17 -1 -1 0.20 0.0784837 0.0711003 150 34 93 31 31 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 5.16 vpr 62.69 MiB 0.04 7248 -1 -1 1 0.03 -1 -1 30588 -1 -1 31 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 23.8 MiB 0.23 621 11063 2736 7707 620 62.7 MiB 0.13 0.00 3.58224 -95.8028 -3.58224 3.58224 0.95 0.000958803 0.000889756 0.0539217 0.0500131 26 2040 31 6.65987e+06 393018 477104. 1650.88 1.67 0.195235 0.175922 21682 110474 -1 1694 19 1081 1737 132637 32602 2.84271 2.84271 -100.138 -2.84271 0 0 585099. 2024.56 0.19 0.09 0.16 -1 -1 0.19 0.036823 0.0332144 108 56 29 29 52 26 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 5.41 vpr 62.90 MiB 0.07 7016 -1 -1 1 0.03 -1 -1 30316 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 314 256 1 160 80 17 17 289 -1 unnamed_device 24.0 MiB 0.19 823 7992 1920 5681 391 62.9 MiB 0.12 0.00 3.5141 -118.56 -3.5141 3.5141 0.95 0.00105879 0.000985645 0.0518533 0.0482103 32 2205 47 6.65987e+06 202848 554710. 1919.41 1.84 0.240771 0.217225 22834 132086 -1 1819 21 1485 2437 179693 42818 2.85871 2.85871 -118.643 -2.85871 0 0 701300. 2426.64 0.22 0.11 0.19 -1 -1 0.22 0.0450662 0.0408699 119 34 64 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.81 vpr 63.09 MiB 0.05 7296 -1 -1 1 0.04 -1 -1 30404 -1 -1 36 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 31 32 387 307 1 189 99 17 17 289 -1 unnamed_device 24.2 MiB 0.24 997 12411 3191 8197 1023 63.1 MiB 0.16 0.00 3.50507 -117.588 -3.50507 3.50507 0.99 0.00123245 0.00114488 0.0707327 0.0655971 26 2369 23 6.65987e+06 456408 477104. 1650.88 1.12 0.229361 0.208545 21682 110474 -1 2041 23 1569 2245 149784 34631 2.75897 2.75897 -113.813 -2.75897 0 0 585099. 2024.56 0.19 0.11 0.16 -1 -1 0.19 0.0556726 0.0504542 142 64 58 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.78 vpr 62.93 MiB 0.05 7040 -1 -1 1 0.03 -1 -1 30332 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64436 31 32 308 262 1 147 79 17 17 289 -1 unnamed_device 24.0 MiB 0.27 889 12754 3806 7303 1645 62.9 MiB 0.15 0.00 3.11304 -101.246 -3.11304 3.11304 0.95 0.000998542 0.00092662 0.0776268 0.0720638 32 1949 21 6.65987e+06 202848 554710. 1919.41 1.08 0.201779 0.183171 22834 132086 -1 1778 21 983 1720 127315 29941 2.70845 2.70845 -103.537 -2.70845 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0418341 0.0377005 105 55 31 31 53 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 6.76 vpr 63.39 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30460 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64908 32 32 383 307 1 184 96 17 17 289 -1 unnamed_device 24.6 MiB 0.29 929 17616 5738 7949 3929 63.4 MiB 0.19 0.00 3.3979 -111.1 -3.3979 3.3979 0.95 0.00120515 0.00111911 0.100629 0.0934646 34 2379 29 6.65987e+06 405696 585099. 2024.56 2.99 0.369772 0.33479 23122 138558 -1 1964 21 1334 2362 191621 46307 2.77677 2.77677 -110.937 -2.77677 0 0 742403. 2568.87 0.24 0.12 0.20 -1 -1 0.24 0.0510307 0.0462564 136 65 52 26 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 5.17 vpr 63.38 MiB 0.07 7504 -1 -1 1 0.03 -1 -1 30416 -1 -1 36 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64904 31 32 422 339 1 195 99 17 17 289 -1 unnamed_device 24.4 MiB 0.63 966 17427 4771 10069 2587 63.4 MiB 0.22 0.00 3.7525 -119.295 -3.7525 3.7525 0.95 0.00130513 0.00121269 0.103256 0.0958756 28 2392 21 6.65987e+06 456408 500653. 1732.36 1.15 0.268982 0.245266 21970 115934 -1 2023 18 1369 2091 134725 32086 3.00737 3.00737 -116.081 -3.00737 0 0 612192. 2118.31 0.20 0.10 0.09 -1 -1 0.20 0.0482834 0.0438547 148 93 31 31 92 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.88 vpr 62.87 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30504 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 24.0 MiB 0.24 861 11652 3522 6006 2124 62.9 MiB 0.15 0.00 2.81844 -100.349 -2.81844 2.81844 0.95 0.00107252 0.000996598 0.074208 0.0689139 32 2012 26 6.65987e+06 228204 554710. 1919.41 1.22 0.216282 0.196266 22834 132086 -1 1748 18 1202 1879 134366 30914 2.75265 2.75265 -104.499 -2.75265 0 0 701300. 2426.64 0.23 0.09 0.19 -1 -1 0.23 0.0392083 0.0354843 115 61 32 32 60 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 5.03 vpr 62.86 MiB 0.04 7104 -1 -1 1 0.03 -1 -1 30156 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 23.9 MiB 0.29 667 7380 1595 4913 872 62.9 MiB 0.10 0.00 3.38184 -112.707 -3.38184 3.38184 0.95 0.00108445 0.00100668 0.0477304 0.0443396 32 2254 30 6.65987e+06 228204 554710. 1919.41 1.39 0.199135 0.180101 22834 132086 -1 1764 23 1426 2249 178263 43985 3.04711 3.04711 -116.657 -3.04711 0 0 701300. 2426.64 0.22 0.11 0.19 -1 -1 0.22 0.0470947 0.0425317 121 63 32 32 62 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.89 vpr 62.87 MiB 0.04 7116 -1 -1 1 0.03 -1 -1 30872 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 407 319 1 198 100 17 17 289 -1 unnamed_device 24.3 MiB 0.23 1042 12164 2979 8000 1185 62.9 MiB 0.16 0.00 4.02524 -139.262 -4.02524 4.02524 0.95 0.00129079 0.00120104 0.0706451 0.0655896 28 2654 24 6.65987e+06 456408 500653. 1732.36 1.22 0.236677 0.215138 21970 115934 -1 2331 24 2050 3166 219876 50788 3.57211 3.57211 -136.993 -3.57211 0 0 612192. 2118.31 0.20 0.14 0.17 -1 -1 0.20 0.0594675 0.0539132 154 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.78 vpr 63.06 MiB 0.05 7188 -1 -1 1 0.03 -1 -1 30624 -1 -1 32 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 29 32 367 293 1 183 93 17 17 289 -1 unnamed_device 24.0 MiB 0.24 974 17313 5216 9261 2836 63.1 MiB 0.21 0.00 3.57304 -105.909 -3.57304 3.57304 0.94 0.00116955 0.0010868 0.0988546 0.0917273 32 2200 18 6.65987e+06 405696 554710. 1919.41 1.10 0.239972 0.218787 22834 132086 -1 1975 20 1120 1672 108204 26909 3.09631 3.09631 -107.166 -3.09631 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0471736 0.0427536 133 62 56 29 58 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 5.14 vpr 63.16 MiB 0.05 7392 -1 -1 1 0.03 -1 -1 30688 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 469 381 1 200 101 17 17 289 -1 unnamed_device 24.7 MiB 0.30 1004 11616 2968 7911 737 63.2 MiB 0.18 0.00 3.97241 -135.454 -3.97241 3.97241 0.94 0.00140613 0.00130537 0.0759891 0.0706926 32 2771 26 6.65987e+06 469086 554710. 1919.41 1.25 0.265295 0.240712 22834 132086 -1 2330 20 1871 2901 224939 53177 3.64131 3.64131 -139.907 -3.64131 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0571011 0.0517556 156 127 0 0 128 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 6.93 vpr 62.71 MiB 0.02 7032 -1 -1 1 0.03 -1 -1 30344 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 31 32 259 212 1 146 79 17 17 289 -1 unnamed_device 23.9 MiB 0.15 635 8698 2288 5521 889 62.7 MiB 0.11 0.00 2.9397 -95.8867 -2.9397 2.9397 0.95 0.000904413 0.000840711 0.0490678 0.0456393 36 1613 26 6.65987e+06 202848 612192. 2118.31 3.47 0.329485 0.295772 23410 145293 -1 1387 17 872 1355 79389 20803 2.76785 2.76785 -97.5417 -2.76785 0 0 782063. 2706.10 0.25 0.07 0.21 -1 -1 0.25 0.0326515 0.0295637 105 4 85 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.95 vpr 63.27 MiB 0.03 7316 -1 -1 1 0.03 -1 -1 30476 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64788 32 32 418 338 1 190 97 17 17 289 -1 unnamed_device 24.3 MiB 0.24 948 20077 6167 11074 2836 63.3 MiB 0.25 0.00 4.10497 -133.778 -4.10497 4.10497 0.95 0.00128879 0.00119755 0.120771 0.112102 32 2362 23 6.65987e+06 418374 554710. 1919.41 1.20 0.28552 0.2605 22834 132086 -1 2006 24 1776 2562 193123 43922 3.62937 3.62937 -129.345 -3.62937 0 0 701300. 2426.64 0.23 0.13 0.19 -1 -1 0.23 0.0601181 0.0544966 142 92 28 28 92 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 5.32 vpr 62.91 MiB 0.05 7252 -1 -1 1 0.03 -1 -1 30300 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 23.9 MiB 0.24 805 9196 3450 4876 870 62.9 MiB 0.12 0.00 3.54047 -120.422 -3.54047 3.54047 0.95 0.00117195 0.00108726 0.0651845 0.0605578 30 2166 35 6.65987e+06 202848 526063. 1820.29 1.78 0.236144 0.213839 22546 126617 -1 1721 17 1153 1677 119370 27737 2.75177 2.75177 -114.486 -2.75177 0 0 666494. 2306.21 0.22 0.11 0.18 -1 -1 0.22 0.0474787 0.0432253 115 96 0 0 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.98 vpr 63.14 MiB 0.05 7240 -1 -1 1 0.03 -1 -1 30436 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 401 316 1 196 99 17 17 289 -1 unnamed_device 24.1 MiB 0.24 1002 18111 5520 9663 2928 63.1 MiB 0.22 0.00 3.45184 -118.995 -3.45184 3.45184 0.97 0.00127575 0.00118395 0.102242 0.0949185 32 2475 22 6.65987e+06 443730 554710. 1919.41 1.17 0.264638 0.24122 22834 132086 -1 2110 24 1603 2310 191686 43849 2.92871 2.92871 -116.803 -2.92871 0 0 701300. 2426.64 0.22 0.13 0.19 -1 -1 0.22 0.059411 0.053855 149 65 61 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 7.86 vpr 63.42 MiB 0.05 7436 -1 -1 1 0.03 -1 -1 30764 -1 -1 43 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64944 32 32 500 382 1 232 107 17 17 289 -1 unnamed_device 24.6 MiB 0.25 1201 15034 3694 9653 1687 63.4 MiB 0.21 0.00 4.6905 -158.567 -4.6905 4.6905 0.95 0.00126044 0.00117581 0.0951348 0.0884878 26 3629 44 6.65987e+06 545154 477104. 1650.88 3.98 0.356868 0.324346 21682 110474 -1 2941 25 2630 4312 357206 77040 4.51197 4.51197 -165.002 -4.51197 0 0 585099. 2024.56 0.20 0.19 0.16 -1 -1 0.20 0.0752754 0.0683484 186 96 64 32 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.71 vpr 62.29 MiB 0.04 6960 -1 -1 1 0.03 -1 -1 30244 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63784 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 23.5 MiB 0.16 532 10509 2640 7460 409 62.3 MiB 0.11 0.00 2.61752 -80.0454 -2.61752 2.61752 0.95 0.000811716 0.000753365 0.0545533 0.0506115 26 1474 18 6.65987e+06 190170 477104. 1650.88 1.30 0.151043 0.136308 21682 110474 -1 1177 17 710 991 71978 18027 2.06225 2.06225 -79.2493 -2.06225 0 0 585099. 2024.56 0.19 0.06 0.16 -1 -1 0.19 0.0281495 0.0252757 83 56 0 0 53 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.69 vpr 62.95 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30396 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64460 30 32 296 244 1 137 78 17 17 289 -1 unnamed_device 24.1 MiB 0.13 762 10536 3371 5501 1664 62.9 MiB 0.12 0.00 3.53704 -109.534 -3.53704 3.53704 0.97 0.00067651 0.000623377 0.0553483 0.0513396 32 1694 20 6.65987e+06 202848 554710. 1919.41 1.18 0.183871 0.166685 22834 132086 -1 1514 20 984 1440 123528 26252 2.74851 2.74851 -105.013 -2.74851 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0397651 0.0359295 96 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.77 vpr 62.70 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30044 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 23.7 MiB 0.17 856 9872 2316 7018 538 62.7 MiB 0.14 0.00 3.4859 -122.574 -3.4859 3.4859 0.95 0.00124268 0.00115354 0.0595301 0.0553235 32 2399 22 6.65987e+06 228204 554710. 1919.41 1.17 0.188002 0.17045 22834 132086 -1 2075 22 1709 3070 245393 55927 2.92677 2.92677 -123.113 -2.92677 0 0 701300. 2426.64 0.23 0.13 0.19 -1 -1 0.23 0.0452973 0.0409509 126 34 64 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 4.47 vpr 62.46 MiB 0.04 7164 -1 -1 1 0.03 -1 -1 30488 -1 -1 34 25 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63964 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 23.3 MiB 0.15 702 13351 3659 7846 1846 62.5 MiB 0.13 0.00 3.31884 -88.9455 -3.31884 3.31884 0.95 0.000830431 0.000780858 0.0574396 0.0534067 26 1679 22 6.65987e+06 431052 477104. 1650.88 0.99 0.163674 0.148063 21682 110474 -1 1550 22 1130 1841 128093 30227 2.85971 2.85971 -93.3795 -2.85971 0 0 585099. 2024.56 0.19 0.09 0.16 -1 -1 0.19 0.0365651 0.0328583 103 34 50 25 25 25 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 5.08 vpr 63.26 MiB 0.02 7192 -1 -1 1 0.04 -1 -1 30504 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 32 32 432 346 1 193 84 17 17 289 -1 unnamed_device 24.4 MiB 0.25 877 14541 4608 7775 2158 63.3 MiB 0.22 0.00 4.02035 -125.217 -4.02035 4.02035 0.95 0.00133734 0.00124286 0.109604 0.101862 32 2690 24 6.65987e+06 253560 554710. 1919.41 1.27 0.282671 0.257755 22834 132086 -1 2213 23 1834 3322 247453 59151 3.53405 3.53405 -127.601 -3.53405 0 0 701300. 2426.64 0.22 0.14 0.19 -1 -1 0.22 0.0599683 0.054333 147 94 32 32 94 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.06 vpr 63.01 MiB 0.05 7240 -1 -1 1 0.03 -1 -1 30492 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 31 32 421 339 1 193 100 17 17 289 -1 unnamed_device 24.4 MiB 0.24 939 18660 5305 10506 2849 63.0 MiB 0.23 0.00 3.4903 -116.281 -3.4903 3.4903 0.95 0.00129357 0.00120006 0.107574 0.0997263 32 2339 23 6.65987e+06 469086 554710. 1919.41 1.22 0.273235 0.248715 22834 132086 -1 2089 19 1673 2647 181583 42973 2.98731 2.98731 -113.056 -2.98731 0 0 701300. 2426.64 0.26 0.11 0.19 -1 -1 0.26 0.0502079 0.0456329 146 94 29 29 93 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 12.47 vpr 63.95 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30860 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65480 32 32 438 350 1 187 90 17 17 289 -1 unnamed_device 25.1 MiB 0.84 781 14160 4399 7086 2675 63.9 MiB 0.17 0.00 3.72605 -134.976 -3.72605 3.72605 0.98 0.00135471 0.00125943 0.0982383 0.0912653 60 2221 23 6.95648e+06 376368 1.01997e+06 3529.29 7.62 0.586002 0.52899 30658 258169 -1 1774 26 1823 2820 268427 58047 4.45496 4.45496 -148.468 -4.45496 0 0 1.27783e+06 4421.56 0.37 0.16 0.40 -1 -1 0.37 0.0676835 0.0612849 85 96 32 32 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 19.00 vpr 64.00 MiB 0.05 7376 -1 -1 1 0.03 -1 -1 30800 -1 -1 14 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65536 30 32 409 330 1 179 76 17 17 289 -1 unnamed_device 25.2 MiB 1.95 824 12716 4465 6411 1840 64.0 MiB 0.17 0.00 3.9478 -132.405 -3.9478 3.9478 0.98 0.00125654 0.00116792 0.102711 0.0954971 40 2404 22 6.95648e+06 202660 706193. 2443.58 13.32 0.568047 0.512944 26914 176310 -1 2102 24 1868 2838 284088 59176 4.38096 4.38096 -147.901 -4.38096 0 0 926341. 3205.33 0.27 0.15 0.26 -1 -1 0.27 0.0586768 0.0530987 76 91 30 30 89 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 8.05 vpr 63.79 MiB 0.05 7260 -1 -1 1 0.03 -1 -1 30400 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65320 32 32 387 309 1 179 83 17 17 289 -1 unnamed_device 24.9 MiB 0.80 1022 7103 1835 4569 699 63.8 MiB 0.10 0.00 3.60914 -132.635 -3.60914 3.60914 0.99 0.00121823 0.00113198 0.0518217 0.0482186 38 2797 27 6.95648e+06 275038 678818. 2348.85 3.67 0.284371 0.257245 26626 170182 -1 2454 20 1574 2379 217825 43205 3.86296 3.86296 -144.54 -3.86296 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0487312 0.0441986 77 65 54 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 17.01 vpr 63.75 MiB 0.03 7216 -1 -1 1 0.03 -1 -1 30604 -1 -1 16 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65284 29 32 343 267 1 176 77 17 17 289 -1 unnamed_device 24.8 MiB 0.43 752 10672 3799 5216 1657 63.8 MiB 0.14 0.00 4.001 -128.21 -4.001 4.001 0.99 0.00111201 0.00103347 0.0762491 0.070928 40 2598 38 6.95648e+06 231611 706193. 2443.58 12.87 0.609883 0.549345 26914 176310 -1 2283 26 1933 2905 419587 112941 4.32786 4.32786 -154.258 -4.32786 0 0 926341. 3205.33 0.27 0.19 0.26 -1 -1 0.27 0.0561917 0.0508163 75 34 87 29 29 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 12.11 vpr 63.86 MiB 0.04 7176 -1 -1 1 0.03 -1 -1 30348 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65396 32 32 376 288 1 187 77 17 17 289 -1 unnamed_device 24.9 MiB 0.80 812 8879 3631 4902 346 63.9 MiB 0.12 0.00 3.71619 -136.578 -3.71619 3.71619 0.98 0.00122613 0.0011394 0.0684728 0.0637094 58 2919 30 6.95648e+06 188184 997811. 3452.63 7.40 0.476128 0.430361 30370 251734 -1 2270 23 2063 3622 353356 74608 4.28266 4.28266 -153.603 -4.28266 0 0 1.25153e+06 4330.55 0.37 0.16 0.40 -1 -1 0.37 0.0558534 0.0507176 78 34 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 6.81 vpr 63.78 MiB 0.05 7368 -1 -1 1 0.03 -1 -1 30460 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65308 32 32 402 316 1 191 93 17 17 289 -1 unnamed_device 24.8 MiB 0.43 804 15213 5066 7689 2458 63.8 MiB 0.18 0.00 3.0985 -115.525 -3.0985 3.0985 0.98 0.00127654 0.00118663 0.0961939 0.0894403 46 2137 23 6.95648e+06 419795 828058. 2865.25 2.64 0.364122 0.330411 28066 200906 -1 1773 18 1520 2080 152278 34489 2.97757 2.97757 -116.487 -2.97757 0 0 1.01997e+06 3529.29 0.30 0.11 0.30 -1 -1 0.30 0.0489545 0.0445643 89 64 63 32 63 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 11.11 vpr 63.18 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30788 -1 -1 14 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 27 32 269 226 1 131 73 17 17 289 -1 unnamed_device 24.5 MiB 4.59 466 7825 3200 4121 504 63.2 MiB 0.08 0.00 3.26916 -94.6801 -3.26916 3.26916 0.98 0.000850575 0.000786806 0.0485928 0.0451812 40 1615 50 6.95648e+06 202660 706193. 2443.58 3.08 0.286547 0.257241 26914 176310 -1 1268 20 1011 1477 115326 28536 3.28763 3.28763 -104.05 -3.28763 0 0 926341. 3205.33 0.27 0.08 0.26 -1 -1 0.27 0.0369976 0.0334041 55 34 54 27 27 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 9.43 vpr 63.64 MiB 0.04 7308 -1 -1 1 0.03 -1 -1 30300 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65164 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 24.7 MiB 0.56 720 11088 4590 6028 470 63.6 MiB 0.13 0.00 3.0082 -105.111 -3.0082 3.0082 0.98 0.00107712 0.00100164 0.0721843 0.0672012 52 2284 26 6.95648e+06 246087 926341. 3205.33 5.16 0.423846 0.382401 29218 227130 -1 1700 20 1282 1881 146794 34210 3.17127 3.17127 -108.757 -3.17127 0 0 1.14541e+06 3963.36 0.33 0.10 0.34 -1 -1 0.33 0.0439778 0.0399194 77 4 115 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 10.63 vpr 63.61 MiB 0.04 7236 -1 -1 1 0.03 -1 -1 30344 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65132 31 32 338 292 1 143 74 17 17 289 -1 unnamed_device 24.8 MiB 1.56 523 9839 2724 5527 1588 63.6 MiB 0.12 0.00 3.10275 -98.6883 -3.10275 3.10275 0.98 0.0010504 0.000974377 0.0694952 0.0645102 44 1703 25 6.95648e+06 159232 787024. 2723.27 5.49 0.48754 0.437301 27778 195446 -1 1186 21 892 1354 90404 21695 3.21232 3.21232 -111.124 -3.21232 0 0 997811. 3452.63 0.30 0.08 0.29 -1 -1 0.30 0.0439627 0.0396919 57 85 0 0 84 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 8.10 vpr 63.41 MiB 0.03 7028 -1 -1 1 0.03 -1 -1 30304 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 314 256 1 156 74 17 17 289 -1 unnamed_device 24.6 MiB 0.99 638 10614 4216 4843 1555 63.4 MiB 0.13 0.00 2.95005 -114.898 -2.95005 2.95005 0.99 0.00103824 0.000964668 0.0739674 0.0687657 38 2107 25 6.95648e+06 144757 678818. 2348.85 3.54 0.298931 0.270094 26626 170182 -1 1682 21 1536 2200 204120 42048 3.20292 3.20292 -127.541 -3.20292 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0436629 0.0395086 62 34 64 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 7.28 vpr 63.46 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30248 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64988 30 32 325 273 1 148 74 17 17 289 -1 unnamed_device 24.6 MiB 1.68 652 11079 4648 6085 346 63.5 MiB 0.13 0.00 3.1095 -111.937 -3.1095 3.1095 0.98 0.00103868 0.000964784 0.077195 0.0717433 36 1829 23 6.95648e+06 173708 648988. 2245.63 2.12 0.249485 0.225789 26050 158493 -1 1491 15 1124 1491 106920 24066 3.11387 3.11387 -118.497 -3.11387 0 0 828058. 2865.25 0.25 0.08 0.23 -1 -1 0.25 0.0332933 0.0301887 60 63 30 30 60 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 10.85 vpr 63.95 MiB 0.04 7216 -1 -1 1 0.03 -1 -1 30516 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65484 32 32 331 280 1 150 76 17 17 289 -1 unnamed_device 25.1 MiB 0.85 538 10476 4359 5709 408 63.9 MiB 0.12 0.00 2.9793 -106.415 -2.9793 2.9793 1.00 0.00105509 0.000978824 0.0713783 0.0662287 56 1546 16 6.95648e+06 173708 973134. 3367.25 6.25 0.433463 0.389853 29794 239141 -1 1309 20 1028 1482 122482 30907 3.00287 3.00287 -111.661 -3.00287 0 0 1.19926e+06 4149.71 0.34 0.09 0.38 -1 -1 0.34 0.0420412 0.0379786 60 65 25 25 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 23.85 vpr 63.83 MiB 0.05 7224 -1 -1 1 0.03 -1 -1 30332 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 386 305 1 180 85 17 17 289 -1 unnamed_device 24.9 MiB 1.43 751 11803 3276 6505 2022 63.8 MiB 0.15 0.00 3.1024 -116.607 -3.1024 3.1024 0.99 0.00122952 0.00113888 0.0815805 0.0758484 40 3036 49 6.95648e+06 303989 706193. 2443.58 18.70 0.69938 0.629603 26914 176310 -1 2276 24 1763 2680 369442 91945 4.73617 4.73617 -157.034 -4.73617 0 0 926341. 3205.33 0.27 0.17 0.26 -1 -1 0.27 0.0579242 0.052504 79 58 64 32 57 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 9.70 vpr 64.06 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30576 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65600 32 32 407 319 1 192 90 17 17 289 -1 unnamed_device 25.3 MiB 1.07 814 16371 6936 9066 369 64.1 MiB 0.19 0.00 3.79319 -140.457 -3.79319 3.79319 0.99 0.00128322 0.00119208 0.10838 0.100748 40 2624 30 6.95648e+06 376368 706193. 2443.58 4.85 0.402092 0.364931 26914 176310 -1 2338 23 2364 3428 434385 97460 3.98496 3.98496 -156.34 -3.98496 0 0 926341. 3205.33 0.27 0.18 0.26 -1 -1 0.27 0.0581799 0.0527797 87 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 7.19 vpr 63.05 MiB 0.04 7180 -1 -1 1 0.03 -1 -1 30620 -1 -1 13 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 29 32 272 228 1 141 74 17 17 289 -1 unnamed_device 24.5 MiB 1.01 465 11234 4544 5569 1121 63.1 MiB 0.12 0.00 3.14676 -95.8879 -3.14676 3.14676 0.98 0.000918938 0.000854024 0.067953 0.0631934 44 1682 46 6.95648e+06 188184 787024. 2723.27 2.54 0.272493 0.245511 27778 195446 -1 1228 28 1164 1719 140916 33293 2.89257 2.89257 -97.9883 -2.89257 0 0 997811. 3452.63 0.30 0.10 0.29 -1 -1 0.30 0.0486584 0.0437615 58 29 58 29 24 24 -fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 13.97 vpr 63.80 MiB 0.04 7164 -1 -1 1 0.03 -1 -1 30424 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65332 32 32 401 315 1 186 77 17 17 289 -1 unnamed_device 24.8 MiB 1.65 727 13443 5705 7147 591 63.8 MiB 0.18 0.00 3.1505 -117.517 -3.1505 3.1505 0.98 0.00164387 0.00155119 0.108567 0.10089 54 2344 40 6.95648e+06 188184 949917. 3286.91 8.44 0.650847 0.587703 29506 232905 -1 1686 26 2073 3337 281207 64375 3.58982 3.58982 -131.551 -3.58982 0 0 1.17392e+06 4061.99 0.34 0.16 0.36 -1 -1 0.34 0.0637192 0.0576912 77 63 64 32 62 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 9.04 vpr 63.78 MiB 0.05 7228 -1 -1 1 0.04 -1 -1 30260 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65308 32 32 383 303 1 179 84 17 17 289 -1 unnamed_device 24.8 MiB 1.53 707 11064 3431 5769 1864 63.8 MiB 0.13 0.00 3.0804 -113.798 -3.0804 3.0804 0.98 0.00122605 0.00113952 0.077458 0.0719712 46 2347 47 6.95648e+06 289514 828058. 2865.25 3.74 0.383221 0.346573 28066 200906 -1 1732 25 1625 2120 272273 97944 3.26132 3.26132 -124.624 -3.26132 0 0 1.01997e+06 3529.29 0.30 0.16 0.29 -1 -1 0.30 0.0593039 0.0537474 78 57 64 32 56 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 7.06 vpr 63.52 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30156 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65044 32 32 339 284 1 156 84 17 17 289 -1 unnamed_device 24.7 MiB 0.87 574 10698 2981 5511 2206 63.5 MiB 0.12 0.00 2.43656 -93.1005 -2.43656 2.43656 0.99 0.00108511 0.00100772 0.0661537 0.0614604 46 1621 28 6.95648e+06 289514 828058. 2865.25 2.51 0.255453 0.230811 28066 200906 -1 1288 21 1166 1606 125868 31593 2.33483 2.33483 -97.298 -2.33483 0 0 1.01997e+06 3529.29 0.30 0.10 0.30 -1 -1 0.30 0.0450944 0.0407611 67 65 29 29 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 6.21 vpr 62.66 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30164 -1 -1 10 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 30 32 226 208 1 118 72 17 17 289 -1 unnamed_device 24.1 MiB 0.35 450 11098 4782 5950 366 62.7 MiB 0.11 0.00 2.21746 -80.5091 -2.21746 2.21746 0.99 0.000880251 0.000824776 0.0604414 0.0560679 36 1502 25 6.95648e+06 144757 648988. 2245.63 2.34 0.223527 0.200521 26050 158493 -1 1192 16 679 864 91906 20450 2.43528 2.43528 -90.2087 -2.43528 0 0 828058. 2865.25 0.28 0.06 0.22 -1 -1 0.28 0.0258094 0.0232289 45 34 24 24 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 18.00 vpr 63.68 MiB 0.04 7160 -1 -1 1 0.03 -1 -1 30428 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65212 31 32 335 280 1 152 74 17 17 289 -1 unnamed_device 24.9 MiB 1.14 541 9374 3783 5060 531 63.7 MiB 0.12 0.00 3.8646 -129.431 -3.8646 3.8646 0.99 0.00105875 0.000982749 0.0670515 0.0622906 42 2150 36 6.95648e+06 159232 744469. 2576.02 13.25 0.539975 0.484499 27202 183097 -1 1528 21 1028 1418 144015 33202 3.80812 3.80812 -133.284 -3.80812 0 0 949917. 3286.91 0.28 0.10 0.27 -1 -1 0.28 0.0445176 0.0402513 61 64 31 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 10.23 vpr 63.79 MiB 0.05 7272 -1 -1 1 0.03 -1 -1 30268 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65316 32 32 366 283 1 184 85 17 17 289 -1 unnamed_device 24.8 MiB 0.47 668 13663 3947 7828 1888 63.8 MiB 0.16 0.00 3.70334 -128.05 -3.70334 3.70334 0.98 0.00120454 0.00112008 0.0902086 0.0839485 48 2111 25 6.95648e+06 303989 865456. 2994.66 6.04 0.529673 0.478764 28354 207349 -1 1581 19 1606 2143 172213 39730 3.82796 3.82796 -136.28 -3.82796 0 0 1.05005e+06 3633.38 0.31 0.11 0.31 -1 -1 0.31 0.0470027 0.0427347 81 34 91 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 11.43 vpr 64.22 MiB 0.05 7484 -1 -1 1 0.04 -1 -1 30568 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65760 32 32 460 375 1 188 91 17 17 289 -1 unnamed_device 25.4 MiB 1.20 791 14779 5223 7361 2195 64.2 MiB 0.18 0.00 3.66119 -126.81 -3.66119 3.66119 0.99 0.00138623 0.00128754 0.104176 0.0967741 56 2049 23 6.95648e+06 390843 973134. 3367.25 6.29 0.605809 0.546007 29794 239141 -1 1779 25 1583 2432 213076 46201 3.93326 3.93326 -132.339 -3.93326 0 0 1.19926e+06 4149.71 0.35 0.14 0.37 -1 -1 0.35 0.0666125 0.0601534 85 124 0 0 125 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 7.41 vpr 62.76 MiB 0.03 6836 -1 -1 1 0.02 -1 -1 30580 -1 -1 13 26 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 26 32 198 186 1 108 71 17 17 289 -1 unnamed_device 24.3 MiB 1.37 352 7809 2730 3957 1122 62.8 MiB 0.07 0.00 2.19726 -66.7151 -2.19726 2.19726 0.99 0.000667052 0.000618151 0.0376557 0.0349216 46 935 44 6.95648e+06 188184 828058. 2865.25 2.55 0.200871 0.179751 28066 200906 -1 604 17 553 688 32667 9718 2.22483 2.22483 -65.3089 -2.22483 0 0 1.01997e+06 3529.29 0.30 0.05 0.30 -1 -1 0.30 0.0239531 0.0215629 44 30 26 26 22 22 -fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 21.84 vpr 63.85 MiB 0.03 7252 -1 -1 1 0.03 -1 -1 30204 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65380 32 32 333 251 1 180 76 17 17 289 -1 unnamed_device 24.9 MiB 0.93 755 9836 4062 5477 297 63.8 MiB 0.13 0.00 4.01986 -136.639 -4.01986 4.01986 0.99 0.00113376 0.00105438 0.0726147 0.0675848 44 2862 26 6.95648e+06 173708 787024. 2723.27 17.19 0.573793 0.517586 27778 195446 -1 2058 22 1781 2692 253008 56109 4.24177 4.24177 -149.972 -4.24177 0 0 997811. 3452.63 0.30 0.13 0.29 -1 -1 0.30 0.0496505 0.0450813 74 3 122 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 5.93 vpr 62.91 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30320 -1 -1 8 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 24.2 MiB 0.26 731 9906 3689 5081 1136 62.9 MiB 0.09 0.00 2.15326 -87.6492 -2.15326 2.15326 0.99 0.000749662 0.000690392 0.0494597 0.0458165 34 1771 48 6.95648e+06 115805 618332. 2139.56 2.27 0.208706 0.186967 25762 151098 -1 1539 17 721 909 103019 20871 1.92908 1.92908 -90.4103 -1.92908 0 0 787024. 2723.27 0.24 0.06 0.22 -1 -1 0.24 0.0251495 0.0226815 44 3 53 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 13.53 vpr 63.84 MiB 0.06 7180 -1 -1 1 0.03 -1 -1 30576 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65372 32 32 376 288 1 187 90 17 17 289 -1 unnamed_device 24.9 MiB 0.55 780 14763 5307 7672 1784 63.8 MiB 0.17 0.00 3.76019 -137.184 -3.76019 3.76019 0.98 0.00122082 0.00113492 0.0923293 0.0856684 44 2883 40 6.95648e+06 376368 787024. 2723.27 9.14 0.58793 0.530894 27778 195446 -1 1969 26 2138 3287 326762 74580 3.99116 3.99116 -147.797 -3.99116 0 0 997811. 3452.63 0.30 0.16 0.29 -1 -1 0.30 0.0605192 0.0548572 85 34 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 9.45 vpr 63.84 MiB 0.04 7140 -1 -1 1 0.03 -1 -1 30120 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65372 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 24.8 MiB 0.33 983 14168 4026 8379 1763 63.8 MiB 0.16 0.00 3.0955 -119.792 -3.0955 3.0955 0.96 0.00114862 0.00106823 0.0815453 0.0758515 40 2319 19 6.95648e+06 405319 706193. 2443.58 5.52 0.508102 0.458829 26914 176310 -1 2189 19 1512 2232 212676 43695 3.16997 3.16997 -125.697 -3.16997 0 0 926341. 3205.33 0.27 0.11 0.26 -1 -1 0.27 0.0444626 0.0404022 87 3 124 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 8.08 vpr 64.30 MiB 0.05 7256 -1 -1 1 0.03 -1 -1 30492 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65848 32 32 407 319 1 189 92 17 17 289 -1 unnamed_device 25.5 MiB 0.41 796 18308 6118 9933 2257 64.3 MiB 0.22 0.00 3.79319 -137.71 -3.79319 3.79319 0.98 0.00129343 0.00120223 0.116915 0.108584 46 2581 34 6.95648e+06 405319 828058. 2865.25 3.85 0.405632 0.367949 28066 200906 -1 2033 22 1948 3146 248953 53320 4.10836 4.10836 -149.388 -4.10836 0 0 1.01997e+06 3529.29 0.30 0.14 0.29 -1 -1 0.30 0.0553668 0.0501996 87 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 9.25 vpr 63.15 MiB 0.04 7144 -1 -1 1 0.04 -1 -1 30180 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 294 246 1 146 74 17 17 289 -1 unnamed_device 24.6 MiB 0.88 513 12009 5130 6527 352 63.1 MiB 0.06 0.00 2.8982 -102.347 -2.8982 2.8982 0.96 0.000366703 0.000337467 0.030607 0.0282146 44 2043 34 6.95648e+06 144757 787024. 2723.27 4.95 0.356587 0.318606 27778 195446 -1 1507 19 1123 1696 126769 31535 3.34062 3.34062 -116.575 -3.34062 0 0 997811. 3452.63 0.29 0.09 0.29 -1 -1 0.29 0.037906 0.0342688 57 34 54 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 9.17 vpr 63.20 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30172 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 30 32 296 244 1 148 74 17 17 289 -1 unnamed_device 24.6 MiB 0.60 522 8134 3289 4515 330 63.2 MiB 0.10 0.00 3.1175 -109.73 -3.1175 3.1175 0.99 0.000983798 0.00091375 0.0543613 0.0505355 42 2178 41 6.95648e+06 173708 744469. 2576.02 4.99 0.385413 0.346011 27202 183097 -1 1317 22 1276 1636 139031 31782 2.89447 2.89447 -112.088 -2.89447 0 0 949917. 3286.91 0.28 0.10 0.27 -1 -1 0.28 0.0428376 0.0386859 60 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 9.53 vpr 63.23 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30352 -1 -1 13 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64752 28 32 278 232 1 144 73 17 17 289 -1 unnamed_device 24.4 MiB 0.62 506 10257 3642 4936 1679 63.2 MiB 0.11 0.00 3.0435 -98.1657 -3.0435 3.0435 0.98 0.000813104 0.000746581 0.0640545 0.0595279 46 1657 24 6.95648e+06 188184 828058. 2865.25 5.28 0.348945 0.313514 28066 200906 -1 1150 20 1019 1564 108656 27191 2.74227 2.74227 -95.5294 -2.74227 0 0 1.01997e+06 3529.29 0.30 0.08 0.30 -1 -1 0.30 0.0377071 0.0340483 61 34 56 28 28 28 -fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 6.67 vpr 63.19 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30328 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 24.5 MiB 0.29 692 9374 3935 5270 169 63.2 MiB 0.12 0.00 2.93285 -115.319 -2.93285 2.93285 0.99 0.000977949 0.000909434 0.0632609 0.058941 42 2234 49 6.95648e+06 144757 744469. 2576.02 2.78 0.271698 0.245623 27202 183097 -1 1708 22 1556 2237 206395 42647 3.08382 3.08382 -122.855 -3.08382 0 0 949917. 3286.91 0.28 0.11 0.27 -1 -1 0.28 0.0428951 0.0387736 64 3 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 16.44 vpr 63.55 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30344 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 31 32 303 249 1 156 84 17 17 289 -1 unnamed_device 24.6 MiB 0.29 589 13443 5223 6848 1372 63.5 MiB 0.15 0.00 3.0875 -112.189 -3.0875 3.0875 0.99 0.00100042 0.000928862 0.0769717 0.0715024 40 2277 40 6.95648e+06 303989 706193. 2443.58 12.52 0.555527 0.498537 26914 176310 -1 1745 19 1304 2027 186414 43424 3.91072 3.91072 -131.055 -3.91072 0 0 926341. 3205.33 0.27 0.12 0.26 -1 -1 0.27 0.0425903 0.0387339 68 34 61 31 31 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 9.98 vpr 63.43 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30244 -1 -1 18 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 29 32 312 264 1 148 79 17 17 289 -1 unnamed_device 24.6 MiB 0.79 508 10219 3550 4648 2021 63.4 MiB 0.11 0.00 2.43392 -85.0275 -2.43392 2.43392 1.01 0.000998902 0.00092723 0.0635293 0.0590102 48 1406 22 6.95648e+06 260562 865456. 2994.66 5.48 0.381922 0.343029 28354 207349 -1 1341 27 1416 2051 204617 61634 2.31283 2.31283 -91.5228 -2.31283 0 0 1.05005e+06 3633.38 0.31 0.13 0.31 -1 -1 0.31 0.0512219 0.0460836 64 61 29 29 57 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 27.04 vpr 64.18 MiB 0.04 7300 -1 -1 1 0.03 -1 -1 30640 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65716 32 32 423 310 1 219 92 17 17 289 -1 unnamed_device 25.1 MiB 0.83 1016 13340 4236 7350 1754 64.2 MiB 0.16 0.00 3.83055 -140.164 -3.83055 3.83055 0.99 0.000508336 0.000468147 0.0880767 0.0819449 44 3310 50 6.95648e+06 405319 787024. 2723.27 22.24 0.707388 0.63904 27778 195446 -1 2421 24 2374 3685 291341 60782 4.19802 4.19802 -149.222 -4.19802 0 0 997811. 3452.63 0.30 0.16 0.29 -1 -1 0.30 0.0653393 0.0593576 100 29 128 32 27 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 7.62 vpr 63.98 MiB 0.04 7260 -1 -1 1 0.03 -1 -1 30656 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65520 32 32 403 317 1 190 91 17 17 289 -1 unnamed_device 24.9 MiB 0.99 765 12739 4335 6808 1596 64.0 MiB 0.16 0.00 3.0804 -114.704 -3.0804 3.0804 0.98 0.00127855 0.00118713 0.083841 0.0778592 40 2322 24 6.95648e+06 390843 706193. 2443.58 2.97 0.358676 0.324923 26914 176310 -1 2000 19 1839 2664 246271 54021 3.41462 3.41462 -131.742 -3.41462 0 0 926341. 3205.33 0.27 0.13 0.26 -1 -1 0.27 0.0493424 0.0448524 87 65 62 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 7.41 vpr 63.66 MiB 0.05 7140 -1 -1 1 0.04 -1 -1 30568 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65192 31 32 353 302 1 150 78 17 17 289 -1 unnamed_device 24.8 MiB 1.12 526 12362 5185 6683 494 63.7 MiB 0.14 0.00 3.26916 -109.86 -3.26916 3.26916 1.01 0.00108087 0.00100196 0.0835485 0.0775421 48 1814 35 6.95648e+06 217135 865456. 2994.66 2.56 0.318212 0.287427 28354 207349 -1 1538 20 1117 1600 147932 40488 3.14017 3.14017 -116.847 -3.14017 0 0 1.05005e+06 3633.38 0.31 0.10 0.31 -1 -1 0.31 0.0450726 0.0408353 62 90 0 0 89 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 8.25 vpr 63.85 MiB 0.05 7276 -1 -1 1 0.03 -1 -1 30364 -1 -1 14 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65380 31 32 391 309 1 186 77 17 17 289 -1 unnamed_device 24.8 MiB 0.67 824 12954 4665 6336 1953 63.8 MiB 0.17 0.00 3.0625 -110.593 -3.0625 3.0625 0.98 0.00123818 0.00115 0.102199 0.0950479 36 3159 40 6.95648e+06 202660 648988. 2245.63 3.84 0.359816 0.326796 26050 158493 -1 2432 28 2065 3159 450209 127089 3.67442 3.67442 -132.021 -3.67442 0 0 828058. 2865.25 0.25 0.21 0.23 -1 -1 0.25 0.0659864 0.0597338 79 64 60 30 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 10.70 vpr 63.83 MiB 0.03 7448 -1 -1 1 0.04 -1 -1 30680 -1 -1 14 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65364 31 32 455 371 1 185 77 17 17 289 -1 unnamed_device 24.9 MiB 2.31 778 10998 4559 6059 380 63.8 MiB 0.16 0.00 4.63397 -149.774 -4.63397 4.63397 1.05 0.00137851 0.00128104 0.0962698 0.0894653 44 3099 44 6.95648e+06 202660 787024. 2723.27 4.64 0.438389 0.396119 27778 195446 -1 1992 20 1511 2265 207568 44955 4.44411 4.44411 -151.741 -4.44411 0 0 997811. 3452.63 0.30 0.12 0.29 -1 -1 0.30 0.055053 0.0497945 78 124 0 0 124 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 12.01 vpr 63.81 MiB 0.03 7348 -1 -1 1 0.03 -1 -1 30328 -1 -1 13 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65344 31 32 413 333 1 180 76 17 17 289 -1 unnamed_device 24.8 MiB 1.44 719 13676 5548 6572 1556 63.8 MiB 0.18 0.00 4.52934 -135.424 -4.52934 4.52934 0.98 0.00128241 0.00119122 0.112709 0.104762 56 2131 22 6.95648e+06 188184 973134. 3367.25 6.68 0.578471 0.522915 29794 239141 -1 1887 21 1253 1978 210500 47033 4.14196 4.14196 -142.349 -4.14196 0 0 1.19926e+06 4149.71 0.34 0.12 0.38 -1 -1 0.34 0.053757 0.0487501 75 90 31 31 89 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 11.36 vpr 63.90 MiB 0.05 7308 -1 -1 1 0.03 -1 -1 30512 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65432 31 32 391 309 1 185 88 17 17 289 -1 unnamed_device 24.9 MiB 0.89 804 14128 5884 7757 487 63.9 MiB 0.17 0.00 3.1856 -115.963 -3.1856 3.1856 0.98 0.0012345 0.00114638 0.0930489 0.086428 46 2514 25 6.95648e+06 361892 828058. 2865.25 6.67 0.498786 0.45055 28066 200906 -1 1860 22 1647 2448 203706 42981 3.11687 3.11687 -120.842 -3.11687 0 0 1.01997e+06 3529.29 0.30 0.12 0.30 -1 -1 0.30 0.0538106 0.0488347 85 64 60 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 27.86 vpr 63.86 MiB 0.04 7080 -1 -1 1 0.04 -1 -1 30644 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65396 32 32 407 319 1 190 90 17 17 289 -1 unnamed_device 24.9 MiB 0.54 956 10743 3793 5013 1937 63.9 MiB 0.14 0.00 3.77119 -139.239 -3.77119 3.77119 0.98 0.00126265 0.0011728 0.0706901 0.0656558 40 2758 24 6.95648e+06 376368 706193. 2443.58 23.63 0.630749 0.568681 26914 176310 -1 2378 23 2144 3292 360196 72622 4.34496 4.34496 -158.274 -4.34496 0 0 926341. 3205.33 0.27 0.16 0.26 -1 -1 0.27 0.056777 0.0514519 86 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 10.06 vpr 64.35 MiB 0.05 7444 -1 -1 1 0.03 -1 -1 30740 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65892 32 32 496 380 1 222 95 17 17 289 -1 unnamed_device 25.3 MiB 1.08 1006 8087 1735 5255 1097 64.3 MiB 0.12 0.00 3.89228 -139.02 -3.89228 3.89228 0.98 0.0015396 0.00143156 0.0619362 0.0576413 48 2761 21 6.95648e+06 448746 865456. 2994.66 5.20 0.558665 0.504074 28354 207349 -1 2427 19 2048 3132 276948 58643 4.31212 4.31212 -147.251 -4.31212 0 0 1.05005e+06 3633.38 0.31 0.14 0.31 -1 -1 0.31 0.059277 0.0538824 104 96 62 32 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 9.42 vpr 63.47 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 30756 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64996 31 32 305 250 1 152 74 17 17 289 -1 unnamed_device 24.5 MiB 0.64 589 10304 4334 5652 318 63.5 MiB 0.12 0.00 3.38836 -119.14 -3.38836 3.38836 0.98 0.00100208 0.000930741 0.0691333 0.0642821 36 2347 36 6.95648e+06 159232 648988. 2245.63 5.34 0.307649 0.27735 26050 158493 -1 1719 22 1495 2076 186996 42578 3.41477 3.41477 -128.733 -3.41477 0 0 828058. 2865.25 0.25 0.11 0.23 -1 -1 0.25 0.0439596 0.0397129 62 34 62 31 31 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 24.95 vpr 64.02 MiB 0.05 7288 -1 -1 1 0.05 -1 -1 30396 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65552 31 32 395 311 1 188 90 17 17 289 -1 unnamed_device 25.0 MiB 0.74 807 13959 3748 8318 1893 64.0 MiB 0.17 0.00 3.90275 -135.486 -3.90275 3.90275 0.99 0.00126168 0.00117348 0.0907499 0.0844479 42 2973 38 6.95648e+06 390843 744469. 2576.02 20.48 0.642875 0.579813 27202 183097 -1 2159 22 1977 3093 304046 68420 3.97722 3.97722 -145.933 -3.97722 0 0 949917. 3286.91 0.31 0.15 0.27 -1 -1 0.31 0.0542974 0.0492679 86 64 62 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 9.04 vpr 64.28 MiB 0.05 7260 -1 -1 1 0.03 -1 -1 30596 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65820 32 32 397 313 1 188 90 17 17 289 -1 unnamed_device 25.3 MiB 0.86 803 11145 4511 6144 490 64.3 MiB 0.14 0.00 3.29596 -117.163 -3.29596 3.29596 0.99 0.00125833 0.00116827 0.0727556 0.067591 48 2705 38 6.95648e+06 376368 865456. 2994.66 4.42 0.370277 0.334709 28354 207349 -1 2124 21 1725 2856 273945 64596 3.03367 3.03367 -122.511 -3.03367 0 0 1.05005e+06 3633.38 0.31 0.14 0.31 -1 -1 0.31 0.0523659 0.0475053 85 63 62 32 62 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 11.50 vpr 63.71 MiB 0.03 7080 -1 -1 1 0.03 -1 -1 30460 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65236 32 32 345 257 1 187 77 17 17 289 -1 unnamed_device 24.8 MiB 0.84 760 7738 3134 4374 230 63.7 MiB 0.05 0.00 3.65689 -135.736 -3.65689 3.65689 1.00 0.000426044 0.000391576 0.0226105 0.0209014 48 2641 41 6.95648e+06 188184 865456. 2994.66 7.04 0.514833 0.463855 28354 207349 -1 2296 21 1882 3139 348413 73584 4.31386 4.31386 -153.986 -4.31386 0 0 1.05005e+06 3633.38 0.31 0.15 0.27 -1 -1 0.31 0.0491496 0.0446974 78 3 128 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 10.53 vpr 64.14 MiB 0.04 7344 -1 -1 1 0.03 -1 -1 30480 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65676 32 32 424 343 1 182 87 17 17 289 -1 unnamed_device 25.1 MiB 1.54 808 11991 3810 6067 2114 64.1 MiB 0.15 0.00 3.1768 -117.392 -3.1768 3.1768 0.98 0.00129765 0.00120534 0.0841847 0.0782236 48 1969 30 6.95648e+06 332941 865456. 2994.66 5.26 0.462978 0.417323 28354 207349 -1 1580 21 1420 2292 139850 37221 3.91697 3.91697 -124.337 -3.91697 0 0 1.05005e+06 3633.38 0.31 0.11 0.31 -1 -1 0.31 0.0537923 0.0487806 81 96 25 25 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 11.50 vpr 63.92 MiB 0.07 7264 -1 -1 1 0.03 -1 -1 30416 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65452 32 32 395 311 1 186 92 17 17 289 -1 unnamed_device 24.9 MiB 0.93 754 13547 4133 6686 2728 63.9 MiB 0.15 0.00 3.20182 -116.76 -3.20182 3.20182 0.98 0.00125772 0.0011686 0.0856013 0.0795655 52 2419 44 6.95648e+06 405319 926341. 3205.33 6.72 0.535134 0.482773 29218 227130 -1 1703 26 1559 2317 183233 43957 3.32347 3.32347 -122.232 -3.32347 0 0 1.14541e+06 3963.36 0.33 0.13 0.34 -1 -1 0.33 0.0695458 0.0632644 85 61 64 32 60 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 9.26 vpr 64.07 MiB 0.04 7136 -1 -1 1 0.03 -1 -1 30476 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65612 32 32 405 318 1 192 92 17 17 289 -1 unnamed_device 25.1 MiB 0.61 757 10649 2685 6746 1218 64.1 MiB 0.14 0.00 3.0976 -113.249 -3.0976 3.0976 0.99 0.00129491 0.00120175 0.0700403 0.0651406 46 2339 36 6.95648e+06 405319 828058. 2865.25 4.91 0.375402 0.339653 28066 200906 -1 1586 24 1814 2753 205756 46457 3.70132 3.70132 -124.198 -3.70132 0 0 1.01997e+06 3529.29 0.30 0.13 0.29 -1 -1 0.30 0.0598513 0.0542383 88 65 63 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 22.77 vpr 63.91 MiB 0.04 7176 -1 -1 1 0.03 -1 -1 30548 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65448 32 32 376 288 1 186 92 17 17 289 -1 unnamed_device 24.9 MiB 0.58 928 15410 5078 8249 2083 63.9 MiB 0.18 0.00 3.79319 -139.701 -3.79319 3.79319 0.99 0.00122044 0.0011355 0.0939675 0.0874273 38 2834 46 6.95648e+06 405319 678818. 2348.85 18.48 0.659735 0.595572 26626 170182 -1 2183 22 1991 3160 279975 56007 4.28086 4.28086 -153.838 -4.28086 0 0 902133. 3121.57 0.26 0.16 0.24 -1 -1 0.26 0.0552503 0.0498601 85 34 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 20.41 vpr 64.23 MiB 0.02 7252 -1 -1 1 0.04 -1 -1 30656 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65768 32 32 407 319 1 189 94 17 17 289 -1 unnamed_device 25.5 MiB 0.92 943 13300 4128 7027 2145 64.2 MiB 0.15 0.00 3.71121 -138.47 -3.71121 3.71121 0.99 0.00127866 0.0011877 0.0820563 0.0761593 40 2488 24 6.95648e+06 434271 706193. 2443.58 15.80 0.632543 0.570388 26914 176310 -1 2276 23 2178 3158 331073 66128 4.28866 4.28866 -156.587 -4.28866 0 0 926341. 3205.33 0.31 0.16 0.26 -1 -1 0.31 0.0575256 0.0521392 88 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 11.14 vpr 64.01 MiB 0.03 7416 -1 -1 1 0.04 -1 -1 30508 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65544 31 32 449 367 1 185 88 17 17 289 -1 unnamed_device 25.2 MiB 1.32 822 11983 4768 6508 707 64.0 MiB 0.15 0.00 4.19045 -134.89 -4.19045 4.19045 0.98 0.00130376 0.00120647 0.0849412 0.0788099 46 2816 38 6.95648e+06 361892 828058. 2865.25 6.14 0.576651 0.518593 28066 200906 -1 2033 19 1439 2327 179053 39508 3.66557 3.66557 -134.349 -3.66557 0 0 1.01997e+06 3529.29 0.30 0.11 0.30 -1 -1 0.30 0.0521114 0.0471591 84 122 0 0 122 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 9.92 vpr 64.09 MiB 0.03 7304 -1 -1 1 0.03 -1 -1 30616 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65624 32 32 432 346 1 187 77 17 17 289 -1 unnamed_device 25.3 MiB 1.13 916 10346 4298 5834 214 64.1 MiB 0.15 0.00 3.78635 -132.849 -3.78635 3.78635 0.98 0.00133472 0.00123996 0.0875417 0.0813136 40 2838 43 6.95648e+06 188184 706193. 2443.58 5.11 0.420033 0.379864 26914 176310 -1 2445 22 1907 3260 314992 63860 4.14976 4.14976 -147.909 -4.14976 0 0 926341. 3205.33 0.29 0.15 0.26 -1 -1 0.29 0.0578962 0.0524889 78 94 32 32 94 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 8.03 vpr 63.49 MiB 0.03 7148 -1 -1 1 0.03 -1 -1 30724 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65012 32 32 312 255 1 160 87 17 17 289 -1 unnamed_device 24.7 MiB 0.18 593 10839 4452 5958 429 63.5 MiB 0.11 0.00 3.1395 -116.22 -3.1395 3.1395 0.98 0.000937589 0.000877211 0.0604024 0.0561135 54 1788 32 6.95648e+06 332941 949917. 3286.91 4.08 0.350346 0.315332 29506 232905 -1 1382 25 1398 2160 179924 41587 2.96337 2.96337 -115.305 -2.96337 0 0 1.17392e+06 4061.99 0.34 0.11 0.36 -1 -1 0.34 0.0490939 0.0442826 71 34 63 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 9.01 vpr 63.71 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30500 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 370 314 1 158 74 17 17 289 -1 unnamed_device 24.7 MiB 1.11 610 8444 3495 4676 273 63.7 MiB 0.11 0.00 3.0405 -112.422 -3.0405 3.0405 0.98 0.00113678 0.00105346 0.0651207 0.0604356 48 2004 48 6.95648e+06 144757 865456. 2994.66 4.19 0.354845 0.319893 28354 207349 -1 1612 19 1382 2072 185876 44236 3.09662 3.09662 -124.151 -3.09662 0 0 1.05005e+06 3633.38 0.31 0.11 0.31 -1 -1 0.31 0.0439044 0.0397565 63 94 0 0 94 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 11.95 vpr 63.95 MiB 0.05 7484 -1 -1 1 0.03 -1 -1 30784 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65480 32 32 469 351 1 223 94 17 17 289 -1 unnamed_device 25.5 MiB 0.68 1002 14152 3897 8059 2196 63.9 MiB 0.19 0.00 4.44024 -157.04 -4.44024 4.44024 0.98 0.00148225 0.0013786 0.103044 0.095906 52 3564 30 6.95648e+06 434271 926341. 3205.33 7.26 0.691151 0.625069 29218 227130 -1 2302 24 2667 4260 364530 75264 4.96581 4.96581 -170.001 -4.96581 0 0 1.14541e+06 3963.36 0.34 0.18 0.34 -1 -1 0.34 0.0695259 0.063121 103 65 96 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 10.55 vpr 64.00 MiB 0.05 7292 -1 -1 1 0.03 -1 -1 30400 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65532 32 32 368 284 1 186 88 17 17 289 -1 unnamed_device 25.0 MiB 0.93 717 11983 4638 6220 1125 64.0 MiB 0.14 0.00 3.1457 -117.079 -3.1457 3.1457 0.98 0.00121012 0.00112477 0.0772189 0.0718037 48 1937 29 6.95648e+06 347416 865456. 2994.66 5.84 0.467802 0.422679 28354 207349 -1 1662 31 1891 2479 284780 87372 3.04172 3.04172 -122.203 -3.04172 0 0 1.05005e+06 3633.38 0.31 0.17 0.31 -1 -1 0.31 0.0699174 0.0632636 83 34 92 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 10.33 vpr 63.38 MiB 0.07 7088 -1 -1 1 0.03 -1 -1 30240 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64904 30 32 296 244 1 152 81 17 17 289 -1 unnamed_device 24.5 MiB 0.38 530 10406 4243 5603 560 63.4 MiB 0.11 0.00 3.0735 -106.794 -3.0735 3.0735 0.98 0.000980291 0.000910437 0.06127 0.0569564 56 1527 23 6.95648e+06 275038 973134. 3367.25 6.20 0.422991 0.379681 29794 239141 -1 1354 24 1281 1926 155804 37474 3.10097 3.10097 -112.855 -3.10097 0 0 1.19926e+06 4149.71 0.35 0.10 0.37 -1 -1 0.35 0.0460151 0.0414564 65 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 22.52 vpr 64.38 MiB 0.04 7528 -1 -1 1 0.04 -1 -1 30968 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65928 32 32 531 413 1 225 95 17 17 289 -1 unnamed_device 25.4 MiB 2.00 1126 15215 3732 10105 1378 64.4 MiB 0.21 0.00 4.49524 -160.999 -4.49524 4.49524 0.99 0.00159731 0.00148492 0.117542 0.109205 56 2766 31 6.95648e+06 448746 973134. 3367.25 16.46 0.884087 0.798218 29794 239141 -1 2466 24 2517 3781 345311 68395 4.77311 4.77311 -173.824 -4.77311 0 0 1.19926e+06 4149.71 0.34 0.18 0.37 -1 -1 0.34 0.074397 0.0675008 103 127 32 32 128 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 8.54 vpr 63.81 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 30492 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65340 32 32 376 288 1 187 92 17 17 289 -1 unnamed_device 25.1 MiB 1.09 804 14375 4842 7223 2310 63.8 MiB 0.16 0.00 3.73321 -136.441 -3.73321 3.73321 0.99 0.00123147 0.00114419 0.089162 0.0827205 40 2453 35 6.95648e+06 405319 706193. 2443.58 3.84 0.373437 0.337874 26914 176310 -1 2073 22 2026 2741 250056 52971 3.89396 3.89396 -150.363 -3.89396 0 0 926341. 3205.33 0.27 0.13 0.26 -1 -1 0.27 0.0537469 0.0487919 86 34 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 8.56 vpr 63.44 MiB 0.04 7008 -1 -1 1 0.03 -1 -1 30340 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 24.6 MiB 0.31 657 12763 5246 7178 339 63.4 MiB 0.14 0.00 3.05815 -115.564 -3.05815 3.05815 0.99 0.000989539 0.000920402 0.0679111 0.0632117 44 2241 49 6.95648e+06 347416 787024. 2723.27 4.57 0.323935 0.292647 27778 195446 -1 1698 23 1579 2531 241111 51330 3.22012 3.22012 -121.91 -3.22012 0 0 997811. 3452.63 0.30 0.13 0.29 -1 -1 0.30 0.0442191 0.0399352 70 3 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 12.60 vpr 64.25 MiB 0.03 7308 -1 -1 1 0.03 -1 -1 30868 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65788 32 32 438 320 1 225 95 17 17 289 -1 unnamed_device 25.1 MiB 0.52 924 14567 5117 6799 2651 64.2 MiB 0.18 0.00 4.52824 -160.177 -4.52824 4.52824 0.97 0.00143003 0.00133141 0.100172 0.0931837 58 2558 31 6.95648e+06 448746 997811. 3452.63 8.10 0.66961 0.604262 30370 251734 -1 2144 25 2580 4437 383974 80348 4.89221 4.89221 -168.37 -4.89221 0 0 1.25153e+06 4330.55 0.37 0.18 0.40 -1 -1 0.37 0.0696476 0.0633166 105 34 128 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 19.35 vpr 63.48 MiB 0.04 6932 -1 -1 1 0.03 -1 -1 30324 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65004 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 24.7 MiB 0.45 618 10614 4475 5915 224 63.5 MiB 0.12 0.00 2.92185 -113.699 -2.92185 2.92185 0.99 0.000982624 0.000907992 0.0696309 0.0647511 42 2204 34 6.95648e+06 144757 744469. 2576.02 15.29 0.497851 0.447471 27202 183097 -1 1606 20 1435 2043 183357 41408 3.26222 3.26222 -126.682 -3.26222 0 0 949917. 3286.91 0.28 0.10 0.27 -1 -1 0.28 0.0397538 0.0359691 62 3 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 20.25 vpr 63.52 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30480 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65044 30 32 296 244 1 151 83 17 17 289 -1 unnamed_device 24.7 MiB 0.81 581 11423 4387 5607 1429 63.5 MiB 0.12 0.00 3.09676 -109.06 -3.09676 3.09676 0.99 0.000986455 0.000916858 0.0651026 0.0605192 38 2220 28 6.95648e+06 303989 678818. 2348.85 15.89 0.44603 0.400521 26626 170182 -1 1705 19 1262 1896 159278 35800 3.29047 3.29047 -118.286 -3.29047 0 0 902133. 3121.57 0.26 0.09 0.24 -1 -1 0.26 0.0380324 0.0343787 65 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 9.26 vpr 64.02 MiB 0.05 7272 -1 -1 1 0.03 -1 -1 30328 -1 -1 20 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65560 29 32 393 319 1 174 81 17 17 289 -1 unnamed_device 25.0 MiB 1.37 706 12856 4700 6071 2085 64.0 MiB 0.16 0.00 3.39446 -107.663 -3.39446 3.39446 0.98 0.00123345 0.00114655 0.094448 0.0878423 48 2636 29 6.95648e+06 289514 865456. 2994.66 4.05 0.364952 0.330678 28354 207349 -1 1955 25 1755 2812 271882 58905 3.32357 3.32357 -116.839 -3.32357 0 0 1.05005e+06 3633.38 0.31 0.14 0.31 -1 -1 0.31 0.0588754 0.0532892 77 88 29 29 85 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 7.55 vpr 63.91 MiB 0.03 7224 -1 -1 1 0.03 -1 -1 30652 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65448 32 32 407 319 1 187 77 17 17 289 -1 unnamed_device 24.9 MiB 0.86 916 13443 5641 5955 1847 63.9 MiB 0.19 0.00 3.65689 -139.305 -3.65689 3.65689 0.99 0.00127479 0.00118363 0.112309 0.104392 38 2521 28 6.95648e+06 188184 678818. 2348.85 3.02 0.352538 0.320618 26626 170182 -1 2038 23 2099 2802 225317 45977 4.20396 4.20396 -156.519 -4.20396 0 0 902133. 3121.57 0.26 0.14 0.24 -1 -1 0.26 0.0580746 0.0527116 78 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 8.92 vpr 63.98 MiB 0.03 7208 -1 -1 1 0.03 -1 -1 30680 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65520 32 32 407 319 1 190 89 17 17 289 -1 unnamed_device 25.0 MiB 1.70 890 14345 5510 6931 1904 64.0 MiB 0.16 0.00 3.74419 -138.408 -3.74419 3.74419 1.00 0.00128405 0.00119342 0.0830781 0.0771367 48 2583 38 6.95648e+06 361892 865456. 2994.66 3.44 0.388199 0.351601 28354 207349 -1 2283 22 2043 3265 366876 71922 4.09626 4.09626 -147.38 -4.09626 0 0 1.05005e+06 3633.38 0.31 0.16 0.31 -1 -1 0.31 0.055277 0.0501172 85 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 17.86 vpr 63.73 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30464 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 345 287 1 155 88 17 17 289 -1 unnamed_device 24.9 MiB 1.13 685 10813 4185 5763 865 63.7 MiB 0.12 0.00 3.05815 -117.015 -3.05815 3.05815 0.98 0.00109008 0.00101154 0.0638342 0.0592808 38 2543 44 6.95648e+06 347416 678818. 2348.85 13.11 0.5337 0.47933 26626 170182 -1 1775 24 1664 2547 243914 50177 3.66012 3.66012 -130.469 -3.66012 0 0 902133. 3121.57 0.26 0.13 0.24 -1 -1 0.26 0.0504829 0.0455943 69 65 32 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 9.39 vpr 63.55 MiB 0.02 7216 -1 -1 1 0.03 -1 -1 30452 -1 -1 10 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 31 32 353 302 1 147 73 17 17 289 -1 unnamed_device 24.9 MiB 1.41 614 10105 3298 5142 1665 63.5 MiB 0.13 0.00 3.30215 -110.502 -3.30215 3.30215 0.98 0.00108678 0.00100782 0.0752186 0.0698234 36 2327 28 6.95648e+06 144757 648988. 2245.63 4.52 0.318864 0.28767 26050 158493 -1 1751 21 1238 2000 187568 39025 3.20132 3.20132 -121.25 -3.20132 0 0 828058. 2865.25 0.25 0.11 0.23 -1 -1 0.25 0.0453424 0.0409098 59 90 0 0 89 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 6.70 vpr 63.73 MiB 0.03 7084 -1 -1 1 0.03 -1 -1 30460 -1 -1 22 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65264 30 32 374 297 1 178 84 17 17 289 -1 unnamed_device 24.7 MiB 0.93 894 12345 3722 6620 2003 63.7 MiB 0.15 0.00 3.13882 -115.049 -3.13882 3.13882 0.99 0.00119102 0.00110764 0.083223 0.0773249 38 2443 25 6.95648e+06 318465 678818. 2348.85 2.26 0.290951 0.263805 26626 170182 -1 2079 20 1592 2318 183339 38278 3.05087 3.05087 -119.658 -3.05087 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0481188 0.0436101 79 60 60 30 57 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 10.71 vpr 63.69 MiB 0.05 7232 -1 -1 1 0.03 -1 -1 30440 -1 -1 16 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65220 28 32 332 260 1 172 76 17 17 289 -1 unnamed_device 24.8 MiB 0.86 684 10156 4202 5354 600 63.7 MiB 0.13 0.00 4.24545 -126.653 -4.24545 4.24545 0.84 0.00108127 0.00100556 0.0731126 0.0681531 38 2689 26 6.95648e+06 231611 678818. 2348.85 6.36 0.313377 0.283064 26626 170182 -1 1926 20 1595 2394 207734 45081 4.31207 4.31207 -140.039 -4.31207 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0455779 0.0415185 74 34 84 28 28 28 -fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 10.58 vpr 63.49 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30180 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 30 32 325 273 1 151 74 17 17 289 -1 unnamed_device 24.6 MiB 0.81 566 9839 4104 5334 401 63.5 MiB 0.12 0.00 3.1757 -110.199 -3.1757 3.1757 0.99 0.00103546 0.000960583 0.068704 0.0638296 46 1917 34 6.95648e+06 173708 828058. 2865.25 6.11 0.416023 0.374172 28066 200906 -1 1343 21 1256 1704 117033 30642 2.90357 2.90357 -112.072 -2.90357 0 0 1.01997e+06 3529.29 0.30 0.10 0.29 -1 -1 0.30 0.0446135 0.0404036 62 63 30 30 60 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 8.72 vpr 63.76 MiB 0.04 7168 -1 -1 1 0.03 -1 -1 30448 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65288 32 32 361 308 1 152 74 17 17 289 -1 unnamed_device 24.8 MiB 1.25 777 7669 3175 4304 190 63.8 MiB 0.10 0.00 3.0765 -113.072 -3.0765 3.0765 0.99 0.00111408 0.00103385 0.0582152 0.0540414 36 2383 22 6.95648e+06 144757 648988. 2245.63 3.95 0.294821 0.265923 26050 158493 -1 2008 23 1331 2166 203798 40405 3.01787 3.01787 -119.832 -3.01787 0 0 828058. 2865.25 0.25 0.12 0.23 -1 -1 0.25 0.0503118 0.0455113 60 91 0 0 91 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 7.21 vpr 63.72 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30320 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65248 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 24.7 MiB 0.24 795 9448 3406 4746 1296 63.7 MiB 0.11 0.00 3.89245 -136.133 -3.89245 3.89245 0.98 0.00113302 0.00105355 0.0581389 0.0540957 50 2526 26 6.95648e+06 361892 902133. 3121.57 3.20 0.307364 0.27819 28642 213929 -1 2071 24 2031 3069 307106 65451 3.94102 3.94102 -144.509 -3.94102 0 0 1.08113e+06 3740.92 0.31 0.15 0.32 -1 -1 0.31 0.0535218 0.0485272 86 4 124 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 11.93 vpr 64.18 MiB 0.04 7228 -1 -1 1 0.03 -1 -1 30684 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65716 32 32 407 319 1 189 91 17 17 289 -1 unnamed_device 25.4 MiB 1.29 901 16819 7044 9402 373 64.2 MiB 0.20 0.00 3.78219 -139.905 -3.78219 3.78219 0.99 0.00127867 0.0011881 0.109295 0.101507 48 2877 25 6.95648e+06 390843 865456. 2994.66 6.85 0.547469 0.495042 28354 207349 -1 2295 22 2014 3379 332711 66575 4.31066 4.31066 -152.488 -4.31066 0 0 1.05005e+06 3633.38 0.31 0.16 0.31 -1 -1 0.31 0.0556686 0.0504927 86 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 12.09 vpr 63.88 MiB 0.03 7276 -1 -1 1 0.03 -1 -1 30392 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65408 32 32 407 319 1 187 90 17 17 289 -1 unnamed_device 24.8 MiB 1.65 831 9336 3198 4890 1248 63.9 MiB 0.12 0.00 3.70819 -135.715 -3.70819 3.70819 0.99 0.00130003 0.00120908 0.0647797 0.0602269 48 2687 35 6.95648e+06 376368 865456. 2994.66 6.68 0.550109 0.496496 28354 207349 -1 2370 21 1886 2993 347936 74143 4.28896 4.28896 -154.004 -4.28896 0 0 1.05005e+06 3633.38 0.31 0.16 0.31 -1 -1 0.31 0.054154 0.0491653 85 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 10.37 vpr 63.75 MiB 0.03 7140 -1 -1 1 0.03 -1 -1 30396 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65280 32 32 399 315 1 188 91 17 17 289 -1 unnamed_device 24.6 MiB 1.02 826 13351 4666 6922 1763 63.8 MiB 0.16 0.00 3.75545 -130.629 -3.75545 3.75545 0.98 0.00126293 0.00117236 0.0848991 0.0789506 48 2859 29 6.95648e+06 390843 865456. 2994.66 5.60 0.355775 0.322576 28354 207349 -1 2297 22 1832 3033 314980 70002 4.13191 4.13191 -145.639 -4.13191 0 0 1.05005e+06 3633.38 0.31 0.15 0.31 -1 -1 0.31 0.0547482 0.0497089 86 65 60 30 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 9.52 vpr 63.47 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 30380 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64996 30 32 296 244 1 150 74 17 17 289 -1 unnamed_device 24.9 MiB 0.55 555 9684 4044 5292 348 63.5 MiB 0.11 0.00 3.0515 -108.878 -3.0515 3.0515 0.98 0.000980537 0.00091053 0.0640846 0.0595858 44 1956 21 6.95648e+06 173708 787024. 2723.27 5.41 0.427264 0.3838 27778 195446 -1 1457 17 1121 1630 133543 30105 3.11197 3.11197 -110.998 -3.11197 0 0 997811. 3452.63 0.29 0.08 0.29 -1 -1 0.29 0.0351261 0.0317822 62 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 10.84 vpr 63.93 MiB 0.05 7328 -1 -1 1 0.03 -1 -1 30392 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65460 30 32 383 303 1 183 77 17 17 289 -1 unnamed_device 25.0 MiB 0.85 676 11487 4792 6044 651 63.9 MiB 0.14 0.00 3.81154 -129.829 -3.81154 3.81154 0.98 0.00121282 0.00112669 0.0891296 0.0828708 52 2219 23 6.95648e+06 217135 926341. 3205.33 6.18 0.567965 0.512628 29218 227130 -1 1627 20 1595 2142 160674 38157 4.14282 4.14282 -138.761 -4.14282 0 0 1.14541e+06 3963.36 0.33 0.11 0.34 -1 -1 0.33 0.0487961 0.0442821 78 63 60 30 60 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 10.32 vpr 64.26 MiB 0.05 7408 -1 -1 1 0.03 -1 -1 31020 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65804 32 32 469 381 1 190 95 17 17 289 -1 unnamed_device 25.4 MiB 1.45 807 14351 4061 7900 2390 64.3 MiB 0.18 0.00 3.71619 -135.355 -3.71619 3.71619 0.99 0.00139842 0.00129846 0.0970771 0.0901428 44 3100 43 6.95648e+06 448746 787024. 2723.27 5.07 0.417622 0.377463 27778 195446 -1 1985 23 2075 3174 235264 52354 3.89886 3.89886 -145.897 -3.89886 0 0 997811. 3452.63 0.29 0.14 0.29 -1 -1 0.29 0.0623078 0.0562868 88 127 0 0 128 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 7.66 vpr 63.87 MiB 0.05 7372 -1 -1 1 0.03 -1 -1 30708 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65400 31 32 425 341 1 182 86 17 17 289 -1 unnamed_device 24.9 MiB 0.87 755 11426 4664 6319 443 63.9 MiB 0.16 0.00 3.965 -138.995 -3.965 3.965 0.99 0.00138711 0.00129383 0.0882689 0.0824771 44 2748 30 6.95648e+06 332941 787024. 2723.27 2.99 0.347514 0.316679 27778 195446 -1 1925 21 1733 2588 195843 42951 4.24182 4.24182 -151.091 -4.24182 0 0 997811. 3452.63 0.30 0.13 0.29 -1 -1 0.30 0.0550166 0.0498719 82 94 31 31 93 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 7.39 vpr 63.93 MiB 0.05 7356 -1 -1 1 0.03 -1 -1 30444 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65468 30 32 404 328 1 173 80 17 17 289 -1 unnamed_device 24.9 MiB 1.34 784 14872 4881 8007 1984 63.9 MiB 0.19 0.00 3.30586 -112.006 -3.30586 3.30586 0.98 0.0012422 0.00115523 0.106838 0.0992673 44 2211 22 6.95648e+06 260562 787024. 2723.27 2.31 0.307546 0.279579 27778 195446 -1 1808 23 1635 2397 174263 37732 3.11687 3.11687 -117.869 -3.11687 0 0 997811. 3452.63 0.30 0.12 0.29 -1 -1 0.30 0.0564368 0.0511544 75 92 26 26 90 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 11.21 vpr 63.80 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30716 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65328 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 24.8 MiB 1.64 774 12628 4296 6544 1788 63.8 MiB 0.18 0.00 3.65989 -133.7 -3.65989 3.65989 1.00 0.00128297 0.00119253 0.103161 0.0959781 48 2724 47 6.95648e+06 188184 865456. 2994.66 5.59 0.434184 0.393861 28354 207349 -1 2381 31 2464 4180 640489 169401 4.45816 4.45816 -159.631 -4.45816 0 0 1.05005e+06 3633.38 0.31 0.26 0.31 -1 -1 0.31 0.0748404 0.0677389 81 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 11.15 vpr 63.63 MiB 0.05 7396 -1 -1 1 0.03 -1 -1 30348 -1 -1 22 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65156 29 32 387 316 1 171 83 17 17 289 -1 unnamed_device 24.6 MiB 1.03 660 10343 3670 4948 1725 63.6 MiB 0.13 0.00 3.14182 -102.041 -3.14182 3.14182 0.99 0.00119773 0.0011134 0.0728799 0.0677653 50 1900 27 6.95648e+06 318465 902133. 3121.57 6.36 0.548488 0.493597 28642 213929 -1 1557 23 1676 2498 188790 47233 3.21347 3.21347 -109.188 -3.21347 0 0 1.08113e+06 3740.92 0.36 0.12 0.32 -1 -1 0.36 0.0540348 0.0488612 77 88 26 26 85 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 15.18 vpr 63.48 MiB 0.04 6824 -1 -1 1 0.03 -1 -1 30404 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65000 32 32 283 225 1 154 74 17 17 289 -1 unnamed_device 24.7 MiB 0.80 627 9219 3869 5158 192 63.5 MiB 0.11 0.00 2.93285 -114.246 -2.93285 2.93285 0.99 0.000984465 0.00091528 0.0607947 0.0565716 44 2157 46 6.95648e+06 144757 787024. 2723.27 10.66 0.463511 0.416383 27778 195446 -1 1491 21 1375 2102 189121 40846 3.16702 3.16702 -119.21 -3.16702 0 0 997811. 3452.63 0.42 0.11 0.28 -1 -1 0.42 0.041941 0.0380045 61 3 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 10.99 vpr 64.04 MiB 0.04 7208 -1 -1 1 0.04 -1 -1 30444 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65576 32 32 407 319 1 187 88 17 17 289 -1 unnamed_device 25.2 MiB 3.27 762 15688 5820 7154 2714 64.0 MiB 0.18 0.00 3.77419 -136.123 -3.77419 3.77419 0.99 0.00130022 0.00120879 0.107971 0.100385 54 2277 44 6.95648e+06 347416 949917. 3286.91 3.71 0.428911 0.389227 29506 232905 -1 1772 20 1692 2537 205604 48355 3.85666 3.85666 -139.117 -3.85666 0 0 1.17392e+06 4061.99 0.41 0.13 0.36 -1 -1 0.41 0.0505952 0.0454105 84 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 7.36 vpr 63.82 MiB 0.05 7252 -1 -1 1 0.03 -1 -1 30548 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65348 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 25.1 MiB 0.64 800 13117 5732 6986 399 63.8 MiB 0.17 0.00 3.79019 -142.199 -3.79019 3.79019 0.99 0.0013049 0.00121308 0.107089 0.0996069 44 2781 26 6.95648e+06 188184 787024. 2723.27 2.98 0.391799 0.355299 27778 195446 -1 1932 22 2042 2779 218381 48516 3.99106 3.99106 -150.815 -3.99106 0 0 997811. 3452.63 0.33 0.13 0.29 -1 -1 0.33 0.0556459 0.0505661 81 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 7.60 vpr 63.59 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30548 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65116 32 32 315 267 1 152 75 17 17 289 -1 unnamed_device 24.8 MiB 1.10 588 11767 4876 6592 299 63.6 MiB 0.14 0.00 3.25495 -109.546 -3.25495 3.25495 0.99 0.00101206 0.000939289 0.0778226 0.0722179 40 2328 35 6.95648e+06 159232 706193. 2443.58 2.90 0.313581 0.282666 26914 176310 -1 1738 24 1245 1749 164930 38740 3.29047 3.29047 -120.877 -3.29047 0 0 926341. 3205.33 0.27 0.11 0.26 -1 -1 0.27 0.0472744 0.0426035 60 55 32 32 54 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 9.20 vpr 63.47 MiB 0.05 6884 -1 -1 1 0.03 -1 -1 30408 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64996 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 24.7 MiB 0.31 663 10304 4294 5762 248 63.5 MiB 0.12 0.00 3.1207 -115.753 -3.1207 3.1207 1.00 0.00095002 0.000882904 0.0659851 0.0614163 40 1926 23 6.95648e+06 159232 706193. 2443.58 5.17 0.397701 0.357747 26914 176310 -1 1713 22 1542 2194 208269 43469 3.03987 3.03987 -123.94 -3.03987 0 0 926341. 3205.33 0.28 0.11 0.26 -1 -1 0.28 0.0419118 0.0378143 63 4 93 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 9.53 vpr 63.86 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30256 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65388 32 32 381 303 1 180 83 17 17 289 -1 unnamed_device 24.9 MiB 1.24 777 14303 6009 7962 332 63.9 MiB 0.18 0.00 3.70334 -127.778 -3.70334 3.70334 0.99 0.00122004 0.00113346 0.100384 0.0932959 38 2547 42 6.95648e+06 275038 678818. 2348.85 4.63 0.400629 0.362803 26626 170182 -1 2002 22 1714 2362 193236 41883 3.74206 3.74206 -136.331 -3.74206 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0534031 0.0485189 78 59 60 32 58 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 10.45 vpr 63.77 MiB 0.02 7344 -1 -1 1 0.04 -1 -1 30520 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65300 32 32 406 330 1 182 82 17 17 289 -1 unnamed_device 24.8 MiB 0.78 731 8626 3469 4889 268 63.8 MiB 0.11 0.00 3.81155 -129.752 -3.81155 3.81155 0.98 0.00125622 0.00116699 0.0641123 0.0595613 46 2314 33 6.95648e+06 260562 828058. 2865.25 5.99 0.530489 0.478038 28066 200906 -1 1730 30 1930 2714 262162 79606 3.93322 3.93322 -134.85 -3.93322 0 0 1.01997e+06 3529.29 0.30 0.16 0.29 -1 -1 0.30 0.0706918 0.06389 78 88 28 28 88 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 11.34 vpr 64.01 MiB 0.03 7284 -1 -1 1 0.04 -1 -1 30512 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65544 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 25.1 MiB 0.43 1044 8863 1910 6662 291 64.0 MiB 0.14 0.00 4.51819 -157.939 -4.51819 4.51819 0.98 0.00133063 0.00123833 0.0618026 0.0575727 64 2642 25 6.95648e+06 390843 1.08113e+06 3740.92 6.91 0.570439 0.516363 31522 276338 -1 2228 22 1909 3038 245874 50790 4.52571 4.52571 -160.837 -4.52571 0 0 1.36325e+06 4717.13 0.39 0.14 0.47 -1 -1 0.39 0.0589079 0.0536315 100 3 156 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 8.12 vpr 63.77 MiB 0.03 7264 -1 -1 1 0.04 -1 -1 30680 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65304 30 32 371 295 1 176 80 17 17 289 -1 unnamed_device 24.9 MiB 0.93 700 12980 4665 6454 1861 63.8 MiB 0.16 0.00 3.39626 -111.442 -3.39626 3.39626 0.98 0.00117439 0.00109134 0.0900672 0.0837455 44 2392 43 6.95648e+06 260562 787024. 2723.27 3.52 0.377164 0.341472 27778 195446 -1 1647 21 1700 2475 193814 43488 3.42857 3.42857 -119.787 -3.42857 0 0 997811. 3452.63 0.29 0.12 0.28 -1 -1 0.29 0.049344 0.044663 77 59 60 30 56 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 6.57 vpr 63.18 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30708 -1 -1 15 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 27 32 269 226 1 137 74 17 17 289 -1 unnamed_device 24.5 MiB 0.57 465 10459 4157 5359 943 63.2 MiB 0.11 0.00 3.15776 -95.8334 -3.15776 3.15776 0.98 0.000896934 0.000833416 0.063055 0.0586038 38 1515 38 6.95648e+06 217135 678818. 2348.85 2.49 0.274652 0.247176 26626 170182 -1 1145 24 1083 1361 116797 26385 2.95232 2.95232 -103.134 -2.95232 0 0 902133. 3121.57 0.26 0.09 0.24 -1 -1 0.26 0.0425432 0.038326 57 34 54 27 27 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 10.19 vpr 64.28 MiB 0.03 7420 -1 -1 1 0.03 -1 -1 30728 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65820 32 32 493 378 1 222 94 17 17 289 -1 unnamed_device 25.2 MiB 0.78 967 13513 4601 6349 2563 64.3 MiB 0.18 0.00 4.037 -140.402 -4.037 4.037 0.99 0.00152201 0.00141462 0.100771 0.0937118 54 3187 41 6.95648e+06 434271 949917. 3286.91 5.41 0.480708 0.435974 29506 232905 -1 2348 22 2355 4119 340687 74270 4.19956 4.19956 -151.003 -4.19956 0 0 1.17392e+06 4061.99 0.34 0.17 0.35 -1 -1 0.34 0.0653125 0.0593001 103 95 62 31 95 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 13.79 vpr 64.05 MiB 0.05 7356 -1 -1 1 0.04 -1 -1 30520 -1 -1 14 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65592 31 32 455 371 1 187 77 17 17 289 -1 unnamed_device 25.3 MiB 3.78 725 8716 3580 4721 415 64.1 MiB 0.13 0.00 4.38345 -145.342 -4.38345 4.38345 0.98 0.00134874 0.00125177 0.0768721 0.0715048 46 2754 28 6.95648e+06 202660 828058. 2865.25 6.21 0.544248 0.489842 28066 200906 -1 1934 24 1857 2800 250055 55568 4.44086 4.44086 -154.451 -4.44086 0 0 1.01997e+06 3529.29 0.30 0.15 0.30 -1 -1 0.30 0.0638779 0.0577303 79 124 0 0 124 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 11.81 vpr 63.84 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30412 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65372 32 32 355 304 1 147 74 17 17 289 -1 unnamed_device 25.0 MiB 2.84 511 11389 4311 5427 1651 63.8 MiB 0.14 0.00 3.0346 -106.082 -3.0346 3.0346 0.98 0.00111212 0.00103284 0.0841368 0.0780867 46 1797 28 6.95648e+06 144757 828058. 2865.25 5.27 0.426002 0.382435 28066 200906 -1 1328 36 1450 2182 167845 40190 3.00397 3.00397 -112.926 -3.00397 0 0 1.01997e+06 3529.29 0.30 0.14 0.30 -1 -1 0.30 0.07195 0.0646776 58 89 0 0 89 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 9.97 vpr 63.66 MiB 0.03 7012 -1 -1 1 0.03 -1 -1 30356 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65184 32 32 364 282 1 188 86 17 17 289 -1 unnamed_device 24.6 MiB 0.44 783 13316 4555 6721 2040 63.7 MiB 0.16 0.00 4.13126 -136.078 -4.13126 4.13126 0.98 0.00120715 0.00110403 0.0871881 0.0810523 46 2787 43 6.95648e+06 318465 828058. 2865.25 5.78 0.383 0.346828 28066 200906 -1 1887 22 1715 2503 190576 42171 4.05132 4.05132 -145.11 -4.05132 0 0 1.01997e+06 3529.29 0.30 0.12 0.29 -1 -1 0.30 0.0520298 0.047194 83 34 90 30 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 19.91 vpr 64.12 MiB 0.05 7400 -1 -1 1 0.03 -1 -1 30628 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65660 31 32 443 336 1 210 86 17 17 289 -1 unnamed_device 25.2 MiB 0.85 989 12560 4640 6662 1258 64.1 MiB 0.19 0.00 4.078 -143.913 -4.078 4.078 0.99 0.00139743 0.00129953 0.107379 0.10003 40 2814 22 6.95648e+06 332941 706193. 2443.58 15.23 0.70808 0.639713 26914 176310 -1 2446 27 2455 3398 345474 78731 4.30102 4.30102 -154.417 -4.30102 0 0 926341. 3205.33 0.28 0.18 0.24 -1 -1 0.28 0.0726099 0.0657429 95 64 87 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 7.39 vpr 63.80 MiB 0.04 7296 -1 -1 1 0.03 -1 -1 30464 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65336 30 32 373 297 1 178 82 17 17 289 -1 unnamed_device 24.9 MiB 0.94 739 10762 4429 5782 551 63.8 MiB 0.13 0.00 3.27396 -108.751 -3.27396 3.27396 0.98 0.0011808 0.00109724 0.0748045 0.0695445 48 2392 30 6.95648e+06 289514 865456. 2994.66 2.63 0.2913 0.263927 28354 207349 -1 1882 28 1789 2837 382958 147629 3.05562 3.05562 -115.473 -3.05562 0 0 1.05005e+06 3633.38 0.31 0.19 0.31 -1 -1 0.31 0.0627348 0.0566988 78 61 58 30 58 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 9.29 vpr 64.20 MiB 0.05 7276 -1 -1 1 0.03 -1 -1 30436 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65740 32 32 407 319 1 193 98 17 17 289 -1 unnamed_device 25.4 MiB 0.54 907 15848 6161 8045 1642 64.2 MiB 0.17 0.00 3.79319 -139.401 -3.79319 3.79319 0.99 0.00128987 0.00119806 0.0944404 0.0877188 46 2620 45 6.95648e+06 492173 828058. 2865.25 4.95 0.418147 0.378803 28066 200906 -1 2066 26 2073 3027 300623 72024 3.92526 3.92526 -142.784 -3.92526 0 0 1.01997e+06 3529.29 0.30 0.16 0.30 -1 -1 0.30 0.0642153 0.0581189 91 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 9.40 vpr 63.99 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 30508 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65524 32 32 405 318 1 192 95 17 17 289 -1 unnamed_device 25.3 MiB 0.58 796 15215 5678 7656 1881 64.0 MiB 0.17 0.00 3.0797 -116.569 -3.0797 3.0797 0.98 0.00127543 0.00118318 0.0935454 0.0868204 44 2325 45 6.95648e+06 448746 787024. 2723.27 5.08 0.545813 0.493033 27778 195446 -1 1899 20 1572 2121 188125 40063 3.16217 3.16217 -122.186 -3.16217 0 0 997811. 3452.63 0.29 0.11 0.29 -1 -1 0.29 0.0512327 0.0464509 90 65 63 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 12.02 vpr 63.34 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 30592 -1 -1 13 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 29 32 287 238 1 136 74 17 17 289 -1 unnamed_device 24.8 MiB 3.11 413 8444 3429 4545 470 63.3 MiB 0.09 0.00 3.17976 -99.6274 -3.17976 3.17976 0.99 0.000906787 0.000838132 0.0544207 0.0506085 46 1350 28 6.95648e+06 188184 828058. 2865.25 5.35 0.386954 0.347132 28066 200906 -1 1058 51 1681 2103 141589 34372 2.75327 2.75327 -102.474 -2.75327 0 0 1.01997e+06 3529.29 0.30 0.15 0.30 -1 -1 0.30 0.0861729 0.0773019 56 34 58 29 29 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 9.85 vpr 63.55 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 30132 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65076 32 32 334 290 1 148 74 17 17 289 -1 unnamed_device 24.8 MiB 0.73 584 9839 4132 5456 251 63.6 MiB 0.11 0.00 2.9814 -102.92 -2.9814 2.9814 0.98 0.00103922 0.000963619 0.0687487 0.063757 44 1680 46 6.95648e+06 144757 787024. 2723.27 5.57 0.428006 0.384349 27778 195446 -1 1305 25 1210 1538 148217 37689 3.04362 3.04362 -107.851 -3.04362 0 0 997811. 3452.63 0.29 0.11 0.29 -1 -1 0.29 0.0503784 0.0454324 58 82 0 0 82 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 11.16 vpr 63.79 MiB 0.02 7236 -1 -1 1 0.03 -1 -1 30452 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65316 31 32 365 281 1 188 91 17 17 289 -1 unnamed_device 24.8 MiB 0.32 740 12331 4240 6152 1939 63.8 MiB 0.13 0.00 4.034 -137.168 -4.034 4.034 0.98 0.00119096 0.00110734 0.0754872 0.0701967 56 1995 22 6.95648e+06 405319 973134. 3367.25 7.05 0.522653 0.471905 29794 239141 -1 1686 22 1903 2766 243764 53644 3.99752 3.99752 -141.908 -3.99752 0 0 1.19926e+06 4149.71 0.34 0.13 0.37 -1 -1 0.34 0.0521886 0.0473426 86 34 93 31 31 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 6.88 vpr 63.20 MiB 0.04 7104 -1 -1 1 0.03 -1 -1 30428 -1 -1 14 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 29 32 297 254 1 144 75 17 17 289 -1 unnamed_device 24.7 MiB 1.11 591 12399 5279 6566 554 63.2 MiB 0.13 0.00 3.26295 -102.061 -3.26295 3.26295 0.98 0.000958634 0.000889978 0.0777246 0.0722251 38 2038 50 6.95648e+06 202660 678818. 2348.85 2.21 0.30943 0.278822 26626 170182 -1 1391 21 1127 1608 103397 24225 2.92072 2.92072 -103.904 -2.92072 0 0 902133. 3121.57 0.26 0.08 0.24 -1 -1 0.26 0.0400718 0.0361158 59 56 29 29 52 26 -fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 9.34 vpr 63.54 MiB 0.03 7004 -1 -1 1 0.03 -1 -1 30312 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 314 256 1 154 74 17 17 289 -1 unnamed_device 24.7 MiB 1.13 698 10149 3910 5225 1014 63.5 MiB 0.12 0.00 3.05815 -118.306 -3.05815 3.05815 0.99 0.000972961 0.0008985 0.070124 0.0651436 38 2198 44 6.95648e+06 144757 678818. 2348.85 4.58 0.329704 0.297473 26626 170182 -1 1736 25 1666 2364 269456 53392 3.29042 3.29042 -129.622 -3.29042 0 0 902133. 3121.57 0.27 0.14 0.25 -1 -1 0.27 0.0501349 0.0452902 61 34 64 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 7.13 vpr 63.86 MiB 0.05 7268 -1 -1 1 0.03 -1 -1 30468 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65396 31 32 387 307 1 181 87 17 17 289 -1 unnamed_device 24.8 MiB 1.04 746 14103 5624 7146 1333 63.9 MiB 0.17 0.00 3.238 -117.486 -3.238 3.238 0.99 0.00122862 0.00114067 0.0950152 0.0882898 38 2458 29 6.95648e+06 347416 678818. 2348.85 2.43 0.317112 0.287897 26626 170182 -1 1917 21 1773 2363 186711 42621 3.53007 3.53007 -129.026 -3.53007 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0526446 0.0478513 82 64 58 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 8.62 vpr 63.19 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 30280 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 31 32 308 262 1 142 74 17 17 289 -1 unnamed_device 24.6 MiB 1.79 686 12474 3876 7111 1487 63.2 MiB 0.14 0.00 3.13575 -103.399 -3.13575 3.13575 1.03 0.000991846 0.000920527 0.0839069 0.0779885 36 2094 39 6.95648e+06 159232 648988. 2245.63 3.29 0.322055 0.290588 26050 158493 -1 1776 22 1072 1632 157038 32453 3.23922 3.23922 -118.24 -3.23922 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0432168 0.0389651 56 55 31 31 53 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 10.59 vpr 63.82 MiB 0.05 7276 -1 -1 1 0.03 -1 -1 30572 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65352 32 32 383 307 1 176 83 17 17 289 -1 unnamed_device 24.9 MiB 1.19 722 12503 5194 6872 437 63.8 MiB 0.15 0.00 3.23686 -109.678 -3.23686 3.23686 0.98 0.00120313 0.00111717 0.0871316 0.0809329 50 2157 24 6.95648e+06 275038 902133. 3121.57 5.75 0.459291 0.414596 28642 213929 -1 1715 19 1201 1787 137913 31159 2.95673 2.95673 -112.43 -2.95673 0 0 1.08113e+06 3740.92 0.32 0.10 0.32 -1 -1 0.32 0.0472861 0.0428917 76 65 52 26 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 7.76 vpr 63.98 MiB 0.04 7396 -1 -1 1 0.03 -1 -1 30368 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65516 31 32 422 339 1 187 88 17 17 289 -1 unnamed_device 25.2 MiB 1.37 718 15298 5475 7567 2256 64.0 MiB 0.18 0.00 3.37721 -115.369 -3.37721 3.37721 0.98 0.00130277 0.00120916 0.105665 0.0981773 42 2552 40 6.95648e+06 361892 744469. 2576.02 2.67 0.363013 0.329525 27202 183097 -1 1912 21 1848 2504 206069 45661 3.35647 3.35647 -129.009 -3.35647 0 0 949917. 3286.91 0.28 0.12 0.27 -1 -1 0.28 0.0538155 0.0488026 85 93 31 31 92 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 7.09 vpr 63.70 MiB 0.06 7104 -1 -1 1 0.03 -1 -1 30380 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65228 32 32 333 279 1 154 74 17 17 289 -1 unnamed_device 24.9 MiB 0.82 564 10149 3066 5426 1657 63.7 MiB 0.13 0.00 2.9023 -103.177 -2.9023 2.9023 0.98 0.00105976 0.000983803 0.072149 0.0669994 42 2288 43 6.95648e+06 144757 744469. 2576.02 2.62 0.307771 0.277663 27202 183097 -1 1679 19 1210 1785 179714 40006 3.25942 3.25942 -118.141 -3.25942 0 0 949917. 3286.91 0.28 0.10 0.27 -1 -1 0.28 0.0408927 0.036994 61 61 32 32 60 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 7.38 vpr 63.79 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 30156 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65320 32 32 339 283 1 158 74 17 17 289 -1 unnamed_device 24.9 MiB 1.08 612 8289 3415 4647 227 63.8 MiB 0.10 0.00 3.0515 -113.508 -3.0515 3.0515 0.99 0.00107955 0.00100211 0.0608219 0.0564991 50 1756 29 6.95648e+06 144757 902133. 3121.57 2.66 0.253031 0.228545 28642 213929 -1 1514 23 1423 2215 175089 44572 3.54107 3.54107 -123.046 -3.54107 0 0 1.08113e+06 3740.92 0.31 0.11 0.32 -1 -1 0.31 0.050189 0.0454417 63 63 32 32 62 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 8.93 vpr 63.99 MiB 0.05 7364 -1 -1 1 0.03 -1 -1 30684 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65524 32 32 407 319 1 190 93 17 17 289 -1 unnamed_device 25.2 MiB 0.86 953 11433 2671 7909 853 64.0 MiB 0.14 0.00 3.79939 -142.687 -3.79939 3.79939 0.99 0.00127828 0.00117825 0.0728641 0.0675778 40 2518 29 6.95648e+06 419795 706193. 2443.58 4.36 0.360941 0.326832 26914 176310 -1 2407 22 2053 3002 299015 60483 4.57846 4.57846 -163.416 -4.57846 0 0 926341. 3205.33 0.27 0.15 0.26 -1 -1 0.27 0.0550405 0.0499179 88 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 8.86 vpr 63.84 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30520 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65368 29 32 367 293 1 175 80 17 17 289 -1 unnamed_device 24.9 MiB 0.90 751 8336 2486 4818 1032 63.8 MiB 0.11 0.00 3.1658 -105.551 -3.1658 3.1658 0.99 0.00116565 0.00108274 0.0598007 0.0556265 38 2387 34 6.95648e+06 275038 678818. 2348.85 4.43 0.330948 0.298925 26626 170182 -1 1724 24 1515 2148 170944 40482 3.28747 3.28747 -116.09 -3.28747 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0547513 0.0495864 77 62 56 29 58 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 12.32 vpr 64.26 MiB 0.05 7400 -1 -1 1 0.03 -1 -1 30728 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65804 32 32 469 381 1 192 93 17 17 289 -1 unnamed_device 25.4 MiB 1.48 819 16473 6066 7302 3105 64.3 MiB 0.19 0.00 3.81039 -138.347 -3.81039 3.81039 0.99 0.00141173 0.001311 0.114907 0.106679 54 2443 42 6.95648e+06 419795 949917. 3286.91 6.88 0.632377 0.570057 29506 232905 -1 1872 24 2067 3118 252516 61667 4.04136 4.04136 -149.256 -4.04136 0 0 1.17392e+06 4061.99 0.34 0.15 0.35 -1 -1 0.34 0.0616935 0.055686 89 127 0 0 128 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 9.71 vpr 63.14 MiB 0.04 6880 -1 -1 1 0.04 -1 -1 30392 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 31 32 259 212 1 143 74 17 17 289 -1 unnamed_device 24.4 MiB 1.01 577 9219 3376 4280 1563 63.1 MiB 0.10 0.00 3.0073 -101.365 -3.0073 3.0073 0.98 0.000905461 0.000841445 0.0564339 0.0525057 44 2107 45 6.95648e+06 159232 787024. 2723.27 5.00 0.378775 0.340033 27778 195446 -1 1470 21 1195 1845 140744 32906 3.42992 3.42992 -117.504 -3.42992 0 0 997811. 3452.63 0.30 0.09 0.29 -1 -1 0.30 0.0382511 0.0345384 57 4 85 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 11.25 vpr 63.89 MiB 0.05 7320 -1 -1 1 0.03 -1 -1 30428 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65428 32 32 418 338 1 182 87 17 17 289 -1 unnamed_device 24.9 MiB 0.94 751 13335 4844 6817 1674 63.9 MiB 0.16 0.00 3.74945 -128.098 -3.74945 3.74945 0.98 0.00127349 0.00117982 0.0927286 0.0859349 56 1863 21 6.95648e+06 332941 973134. 3367.25 6.46 0.545297 0.492143 29794 239141 -1 1668 21 1711 2250 226926 53089 3.78446 3.78446 -134.91 -3.78446 0 0 1.19926e+06 4149.71 0.34 0.13 0.37 -1 -1 0.34 0.0539891 0.0489305 81 92 28 28 92 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 10.88 vpr 63.55 MiB 0.04 7128 -1 -1 1 0.03 -1 -1 30100 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65076 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 24.7 MiB 2.66 732 10149 4260 5733 156 63.6 MiB 0.13 0.00 2.97895 -115.858 -2.97895 2.97895 0.98 0.00115377 0.00107019 0.0789797 0.073402 46 1921 23 6.95648e+06 144757 828058. 2865.25 4.54 0.441982 0.398494 28066 200906 -1 1596 18 1270 1776 139794 29457 2.99182 2.99182 -121.64 -2.99182 0 0 1.01997e+06 3529.29 0.30 0.10 0.30 -1 -1 0.30 0.0425205 0.0385019 61 96 0 0 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 7.45 vpr 63.86 MiB 0.05 7256 -1 -1 1 0.03 -1 -1 30432 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65392 32 32 401 316 1 188 88 17 17 289 -1 unnamed_device 24.8 MiB 1.10 784 11983 4223 5778 1982 63.9 MiB 0.15 0.00 3.13882 -116.487 -3.13882 3.13882 0.98 0.00126214 0.00117136 0.0816476 0.0758239 46 2236 27 6.95648e+06 347416 828058. 2865.25 2.58 0.300398 0.272812 28066 200906 -1 1880 22 1464 2219 178040 39658 3.62417 3.62417 -128.367 -3.62417 0 0 1.01997e+06 3529.29 0.30 0.12 0.30 -1 -1 0.30 0.0550286 0.0499844 84 65 61 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 10.97 vpr 64.34 MiB 0.05 7424 -1 -1 1 0.03 -1 -1 30816 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65880 32 32 500 382 1 222 97 17 17 289 -1 unnamed_device 25.4 MiB 1.31 961 18301 6218 9454 2629 64.3 MiB 0.22 0.00 4.52824 -160.34 -4.52824 4.52824 0.98 0.0010593 0.000981642 0.128775 0.119763 44 3684 29 6.95648e+06 477698 787024. 2723.27 5.73 0.421214 0.383488 27778 195446 -1 2550 28 2934 4398 437280 99963 5.01891 5.01891 -177.238 -5.01891 0 0 997811. 3452.63 0.30 0.22 0.29 -1 -1 0.30 0.081982 0.0742553 104 96 64 32 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 6.99 vpr 63.02 MiB 0.04 7024 -1 -1 1 0.03 -1 -1 30104 -1 -1 10 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 30 32 246 229 1 117 72 17 17 289 -1 unnamed_device 24.4 MiB 0.60 399 8267 2578 4387 1302 63.0 MiB 0.08 0.00 2.20646 -75.9306 -2.20646 2.20646 1.00 0.000802188 0.000743908 0.0467472 0.0433615 38 1006 19 6.95648e+06 144757 678818. 2348.85 2.94 0.210454 0.188204 26626 170182 -1 863 19 636 793 63794 16426 2.30318 2.30318 -81.2983 -2.30318 0 0 902133. 3121.57 0.26 0.06 0.24 -1 -1 0.26 0.0310504 0.0278265 45 56 0 0 53 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 11.82 vpr 63.41 MiB 0.05 7040 -1 -1 1 0.03 -1 -1 30400 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 30 32 296 244 1 141 74 17 17 289 -1 unnamed_device 24.5 MiB 2.19 478 9684 3860 5006 818 63.4 MiB 0.11 0.00 3.27575 -100.35 -3.27575 3.27575 0.99 0.000984388 0.000913798 0.0641409 0.0596092 62 1315 23 6.95648e+06 173708 1.05005e+06 3633.38 5.91 0.403846 0.36263 30946 263737 -1 1049 16 765 1119 81635 19720 3.04462 3.04462 -100.76 -3.04462 0 0 1.30136e+06 4502.97 0.37 0.07 0.42 -1 -1 0.37 0.0333288 0.0302052 58 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 20.14 vpr 63.51 MiB 0.04 7000 -1 -1 1 0.03 -1 -1 30136 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 314 256 1 161 74 17 17 289 -1 unnamed_device 24.7 MiB 0.30 594 9219 3126 4706 1387 63.5 MiB 0.12 0.00 2.93285 -111.664 -2.93285 2.93285 0.98 0.00103369 0.000960214 0.0644324 0.0599043 48 1953 26 6.95648e+06 144757 865456. 2994.66 16.08 0.527528 0.473997 28354 207349 -1 1506 26 1707 2844 330885 75209 2.89432 2.89432 -112.144 -2.89432 0 0 1.05005e+06 3633.38 0.31 0.16 0.31 -1 -1 0.31 0.0522602 0.047166 65 34 64 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 8.71 vpr 63.30 MiB 0.03 7208 -1 -1 1 0.03 -1 -1 30424 -1 -1 15 25 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 25 32 251 214 1 132 72 17 17 289 -1 unnamed_device 24.4 MiB 0.56 415 9310 3978 4599 733 63.3 MiB 0.10 0.00 3.24096 -89.5658 -3.24096 3.24096 0.99 0.000845844 0.000786652 0.0552327 0.0514071 42 1605 36 6.95648e+06 217135 744469. 2576.02 4.69 0.33768 0.302524 27202 183097 -1 1169 21 1062 1427 108134 27506 3.18237 3.18237 -94.9949 -3.18237 0 0 949917. 3286.91 0.28 0.08 0.27 -1 -1 0.28 0.0351365 0.0315733 56 34 50 25 25 25 -fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 8.45 vpr 64.00 MiB 0.04 7276 -1 -1 1 0.03 -1 -1 30608 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65536 32 32 432 346 1 185 77 17 17 289 -1 unnamed_device 25.2 MiB 1.17 759 9368 3878 5207 283 64.0 MiB 0.13 0.00 3.79735 -132.334 -3.79735 3.79735 0.98 0.00133319 0.00123848 0.0797501 0.0741203 44 2593 46 6.95648e+06 188184 787024. 2723.27 3.54 0.416057 0.376013 27778 195446 -1 1890 23 1856 3108 218143 48376 3.51986 3.51986 -133.027 -3.51986 0 0 997811. 3452.63 0.30 0.13 0.29 -1 -1 0.30 0.0599915 0.0543446 77 94 32 32 94 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 10.96 vpr 63.90 MiB 0.05 7372 -1 -1 1 0.03 -1 -1 30492 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65436 31 32 421 339 1 185 92 17 17 289 -1 unnamed_device 24.9 MiB 0.92 724 14789 4750 6856 3183 63.9 MiB 0.16 0.00 3.1508 -112.895 -3.1508 3.1508 1.01 0.00130095 0.00120712 0.0958452 0.0889794 46 2387 27 6.95648e+06 419795 828058. 2865.25 6.27 0.53006 0.478306 28066 200906 -1 1691 23 1784 2441 205061 50381 3.25457 3.25457 -118.388 -3.25457 0 0 1.01997e+06 3529.29 0.30 0.13 0.30 -1 -1 0.30 0.058564 0.0530236 87 94 29 29 93 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 7.31 vpr 64.11 MiB 0.05 7296 -1 -1 1 0.03 -1 -1 30844 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65648 32 32 438 350 1 287 86 17 17 289 -1 unnamed_device 25.1 MiB 0.77 1129 15584 6141 7449 1994 64.1 MiB 0.20 0.00 4.57544 -163.509 -4.57544 4.57544 0.99 0.00135756 0.00124998 0.11494 0.106728 48 3270 28 6.99608e+06 323745 865456. 2994.66 2.70 0.358021 0.325171 28354 207349 -1 2623 21 2393 2784 284468 62019 4.8456 4.8456 -169.271 -4.8456 0 0 1.05005e+06 3633.38 0.31 0.15 0.31 -1 -1 0.31 0.0564546 0.0512228 130 96 32 32 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 19.05 vpr 63.92 MiB 0.05 7492 -1 -1 1 0.03 -1 -1 30688 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65456 30 32 409 330 1 260 82 17 17 289 -1 unnamed_device 25.0 MiB 1.07 1071 14500 5786 6936 1778 63.9 MiB 0.19 0.00 4.41722 -148.996 -4.41722 4.41722 0.99 0.00124867 0.00115952 0.106036 0.098552 46 3170 26 6.99608e+06 294314 828058. 2865.25 14.16 0.640777 0.578428 28066 200906 -1 2583 24 2500 3436 282342 58834 4.3342 4.3342 -150.375 -4.3342 0 0 1.01997e+06 3529.29 0.30 0.15 0.30 -1 -1 0.30 0.0590066 0.0533828 118 91 30 30 89 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 10.56 vpr 63.79 MiB 0.03 7204 -1 -1 1 0.03 -1 -1 30456 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65316 32 32 387 309 1 241 82 17 17 289 -1 unnamed_device 24.7 MiB 1.00 1033 13610 5703 7532 375 63.8 MiB 0.17 0.00 3.59279 -130.543 -3.59279 3.59279 0.99 0.00121886 0.00113197 0.0962205 0.089427 44 3147 39 6.99608e+06 264882 787024. 2723.27 5.84 0.582061 0.525231 27778 195446 -1 2195 20 1802 2143 166226 36364 3.92906 3.92906 -140.345 -3.92906 0 0 997811. 3452.63 0.30 0.11 0.31 -1 -1 0.30 0.0494552 0.0449354 106 65 54 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 10.29 vpr 63.66 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30520 -1 -1 18 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65184 29 32 343 267 1 201 79 17 17 289 -1 unnamed_device 24.7 MiB 0.76 736 8360 3365 4601 394 63.7 MiB 0.11 0.00 3.83534 -125.933 -3.83534 3.83534 0.98 0.00113118 0.00105176 0.0587907 0.0546953 46 2539 41 6.99608e+06 264882 828058. 2865.25 5.83 0.455343 0.41033 28066 200906 -1 1699 23 1809 2706 201725 48097 3.69842 3.69842 -129.786 -3.69842 0 0 1.01997e+06 3529.29 0.30 0.12 0.29 -1 -1 0.30 0.0511585 0.0463515 89 34 87 29 29 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 11.70 vpr 63.80 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30316 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65336 32 32 376 288 1 218 79 17 17 289 -1 unnamed_device 24.8 MiB 0.46 971 12416 5616 6402 398 63.8 MiB 0.16 0.00 4.27644 -155.98 -4.27644 4.27644 0.99 0.00124169 0.00115488 0.094716 0.0881582 58 3128 38 6.99608e+06 220735 997811. 3452.63 7.36 0.558306 0.504759 30370 251734 -1 2321 20 2246 3586 286273 63035 4.60405 4.60405 -165.524 -4.60405 0 0 1.25153e+06 4330.55 0.36 0.14 0.38 -1 -1 0.36 0.0499459 0.0453784 93 34 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 7.10 vpr 63.91 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30584 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65440 32 32 402 316 1 251 96 17 17 289 -1 unnamed_device 25.0 MiB 0.52 1303 16740 4427 11097 1216 63.9 MiB 0.20 0.00 3.60699 -130.903 -3.60699 3.60699 1.01 0.00126983 0.00118002 0.100988 0.0936369 46 3142 36 6.99608e+06 470902 828058. 2865.25 2.68 0.345083 0.313169 28066 200906 -1 2658 22 2171 3182 237184 48696 3.41681 3.41681 -137.228 -3.41681 0 0 1.01997e+06 3529.29 0.30 0.13 0.30 -1 -1 0.30 0.0554492 0.0502924 119 64 63 32 63 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 15.45 vpr 63.16 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30708 -1 -1 15 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 27 32 269 226 1 158 74 17 17 289 -1 unnamed_device 24.2 MiB 0.82 620 8289 3348 4414 527 63.2 MiB 0.10 0.00 3.30124 -103.988 -3.30124 3.30124 1.01 0.000897442 0.000834104 0.0509562 0.0473912 40 2005 45 6.99608e+06 220735 706193. 2443.58 10.97 0.466573 0.417124 26914 176310 -1 1694 23 1562 2201 221485 47828 3.44611 3.44611 -115.394 -3.44611 0 0 926341. 3205.33 0.27 0.11 0.26 -1 -1 0.27 0.0406911 0.0366351 68 34 54 27 27 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 10.21 vpr 63.41 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30232 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 24.6 MiB 0.49 683 10744 3839 5024 1881 63.4 MiB 0.12 0.00 2.89749 -100.387 -2.89749 2.89749 1.03 0.00107925 0.00100374 0.0705923 0.0656558 48 2088 30 6.99608e+06 250167 865456. 2994.66 5.85 0.457263 0.412248 28354 207349 -1 1749 24 1361 2056 155309 37960 3.12512 3.12512 -109.464 -3.12512 0 0 1.05005e+06 3633.38 0.34 0.13 0.34 -1 -1 0.34 0.0550485 0.0497585 77 4 115 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 19.79 vpr 63.65 MiB 0.03 7348 -1 -1 1 0.03 -1 -1 30260 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65180 31 32 338 292 1 223 78 17 17 289 -1 unnamed_device 24.6 MiB 1.57 947 14022 5302 5947 2773 63.7 MiB 0.15 0.00 3.20894 -116.628 -3.20894 3.20894 0.98 0.000999192 0.000931939 0.0740112 0.0686351 40 2806 38 6.99608e+06 220735 706193. 2443.58 14.57 0.589442 0.529019 26914 176310 -1 2371 21 1972 2386 258573 59450 3.98031 3.98031 -133.104 -3.98031 0 0 926341. 3205.33 0.27 0.13 0.27 -1 -1 0.27 0.0446888 0.0403739 97 85 0 0 84 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 7.28 vpr 63.42 MiB 0.04 7024 -1 -1 1 0.03 -1 -1 30500 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64944 32 32 314 256 1 187 77 17 17 289 -1 unnamed_device 24.6 MiB 0.74 683 10346 4298 5768 280 63.4 MiB 0.12 0.00 3.58749 -133.196 -3.58749 3.58749 1.00 0.00103591 0.000962728 0.0691023 0.064251 46 2254 23 6.99608e+06 191304 828058. 2865.25 2.92 0.289721 0.261832 28066 200906 -1 1763 21 1605 1961 177935 38769 3.46386 3.46386 -134.717 -3.46386 0 0 1.01997e+06 3529.29 0.30 0.11 0.29 -1 -1 0.30 0.0436149 0.0394664 79 34 64 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 11.03 vpr 63.68 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 30124 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65212 30 32 325 273 1 199 77 17 17 289 -1 unnamed_device 24.8 MiB 1.98 858 10835 4264 5113 1458 63.7 MiB 0.13 0.00 3.85932 -133.017 -3.85932 3.85932 0.98 0.00104339 0.000969443 0.0721035 0.0669704 44 2480 24 6.99608e+06 220735 787024. 2723.27 5.38 0.405223 0.364818 27778 195446 -1 1933 21 1684 2275 184623 38306 3.5084 3.5084 -132.607 -3.5084 0 0 997811. 3452.63 0.29 0.11 0.26 -1 -1 0.29 0.0435851 0.0393439 88 63 30 30 60 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 9.02 vpr 63.50 MiB 0.02 7008 -1 -1 1 0.04 -1 -1 30480 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 331 280 1 210 78 17 17 289 -1 unnamed_device 24.5 MiB 0.83 1076 12030 4001 6276 1753 63.5 MiB 0.15 0.00 3.0643 -120.829 -3.0643 3.0643 0.98 0.00105257 0.000977131 0.0812607 0.075689 38 2566 31 6.99608e+06 206020 678818. 2348.85 4.61 0.324055 0.292847 26626 170182 -1 2305 22 1552 1683 182727 35473 3.32357 3.32357 -128.637 -3.32357 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0453201 0.0409634 91 65 25 25 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 11.31 vpr 63.75 MiB 0.04 7256 -1 -1 1 0.03 -1 -1 30336 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65284 32 32 386 305 1 233 81 17 17 289 -1 unnamed_device 24.5 MiB 1.00 895 11281 2962 6708 1611 63.8 MiB 0.15 0.00 3.59905 -128.853 -3.59905 3.59905 1.01 0.00123741 0.00115026 0.0831715 0.0773117 54 2550 23 6.99608e+06 250167 949917. 3286.91 6.48 0.529099 0.477897 29506 232905 -1 1779 17 1627 2224 160711 36089 3.56236 3.56236 -128.067 -3.56236 0 0 1.17392e+06 4061.99 0.34 0.10 0.36 -1 -1 0.34 0.0437789 0.0398451 102 58 64 32 57 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 7.25 vpr 64.09 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30476 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65632 32 32 407 319 1 254 83 17 17 289 -1 unnamed_device 25.2 MiB 0.86 1060 14303 4176 8339 1788 64.1 MiB 0.20 0.00 4.32484 -157.119 -4.32484 4.32484 0.71 0.00128542 0.00119498 0.106375 0.0989226 46 3253 22 6.99608e+06 279598 828058. 2865.25 2.82 0.318595 0.289978 28066 200906 -1 2529 23 2652 3389 248791 52125 4.35241 4.35241 -163.83 -4.35241 0 0 1.01997e+06 3529.29 0.32 0.15 0.29 -1 -1 0.32 0.0593593 0.05392 112 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 10.91 vpr 63.05 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30596 -1 -1 14 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 29 32 272 228 1 161 75 17 17 289 -1 unnamed_device 24.3 MiB 2.19 528 11293 4020 5114 2159 63.0 MiB 0.12 0.00 2.96115 -97.0174 -2.96115 2.96115 0.98 0.000915219 0.000850239 0.067787 0.0630008 46 1775 49 6.99608e+06 206020 828058. 2865.25 5.10 0.397973 0.357156 28066 200906 -1 1268 23 1017 1428 111224 26731 2.95752 2.95752 -100.852 -2.95752 0 0 1.01997e+06 3529.29 0.30 0.09 0.30 -1 -1 0.30 0.0413608 0.03726 67 29 58 29 24 24 -fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 24.88 vpr 63.83 MiB 0.05 7188 -1 -1 1 0.03 -1 -1 30404 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 401 315 1 244 80 17 17 289 -1 unnamed_device 25.1 MiB 2.74 1210 15904 6463 7649 1792 63.8 MiB 0.21 0.00 3.55749 -134.258 -3.55749 3.55749 0.98 0.00127396 0.00118354 0.121264 0.112674 46 3098 30 6.99608e+06 235451 828058. 2865.25 18.31 0.671475 0.606489 28066 200906 -1 2551 21 2776 3869 270436 56621 3.44021 3.44021 -137.304 -3.44021 0 0 1.01997e+06 3529.29 0.30 0.14 0.30 -1 -1 0.30 0.0533457 0.0484397 107 63 64 32 62 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 9.98 vpr 63.71 MiB 0.04 7260 -1 -1 1 0.03 -1 -1 30408 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65244 32 32 383 303 1 230 81 17 17 289 -1 unnamed_device 24.9 MiB 1.16 1122 6731 1632 4419 680 63.7 MiB 0.10 0.00 3.32994 -132.194 -3.32994 3.32994 0.99 0.00123317 0.00114762 0.0510995 0.0475601 38 3157 39 6.99608e+06 250167 678818. 2348.85 5.25 0.345596 0.312189 26626 170182 -1 2529 22 2206 2773 235780 47709 3.37357 3.37357 -139.703 -3.37357 0 0 902133. 3121.57 0.26 0.13 0.24 -1 -1 0.26 0.0534057 0.048426 99 57 64 32 56 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 7.69 vpr 63.60 MiB 0.04 7040 -1 -1 1 0.03 -1 -1 30212 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65124 32 32 339 284 1 218 78 17 17 289 -1 unnamed_device 24.7 MiB 0.81 951 13856 5691 6655 1510 63.6 MiB 0.17 0.00 3.13279 -121.703 -3.13279 3.13279 0.99 0.00108543 0.00100774 0.093494 0.0868213 44 2752 29 6.99608e+06 206020 787024. 2723.27 3.15 0.334053 0.302125 27778 195446 -1 2176 22 1900 2346 212467 42666 2.87856 2.87856 -122.33 -2.87856 0 0 997811. 3452.63 0.29 0.12 0.29 -1 -1 0.29 0.0470318 0.0425189 91 65 29 29 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 10.66 vpr 62.80 MiB 0.04 6784 -1 -1 1 0.03 -1 -1 30216 -1 -1 11 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 30 32 226 208 1 138 73 17 17 289 -1 unnamed_device 24.2 MiB 2.78 516 9193 3770 5081 342 62.8 MiB 0.09 0.00 2.37536 -87.628 -2.37536 2.37536 0.99 0.000765373 0.000710124 0.0484681 0.0449921 38 1650 24 6.99608e+06 161872 678818. 2348.85 4.48 0.281351 0.251575 26626 170182 -1 1217 17 751 798 77910 17444 2.51033 2.51033 -88.5237 -2.51033 0 0 902133. 3121.57 0.26 0.06 0.24 -1 -1 0.26 0.0272054 0.0244898 56 34 24 24 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 9.24 vpr 63.50 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30432 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 31 32 335 280 1 209 78 17 17 289 -1 unnamed_device 24.6 MiB 2.65 1023 8046 2352 4947 747 63.5 MiB 0.10 0.00 3.80119 -135.035 -3.80119 3.80119 0.98 0.00106019 0.000984682 0.0545184 0.0506932 40 2437 45 6.99608e+06 220735 706193. 2443.58 2.95 0.31817 0.286635 26914 176310 -1 2238 24 1820 2195 407025 142062 3.44186 3.44186 -135.532 -3.44186 0 0 926341. 3205.33 0.27 0.19 0.26 -1 -1 0.27 0.0489795 0.0441478 91 64 31 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 10.51 vpr 63.76 MiB 0.05 7160 -1 -1 1 0.03 -1 -1 30280 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65288 32 32 366 283 1 215 87 17 17 289 -1 unnamed_device 24.8 MiB 0.55 873 12759 5251 7214 294 63.8 MiB 0.16 0.00 4.03513 -142.757 -4.03513 4.03513 0.98 0.00119347 0.00110967 0.0823791 0.0765835 48 2680 22 6.99608e+06 338461 865456. 2994.66 6.19 0.486333 0.439337 28354 207349 -1 2224 22 2205 3019 256999 54936 4.0516 4.0516 -152.654 -4.0516 0 0 1.05005e+06 3633.38 0.31 0.14 0.31 -1 -1 0.31 0.0526142 0.0477308 97 34 91 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 8.56 vpr 63.83 MiB 0.03 7340 -1 -1 1 0.05 -1 -1 30560 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 460 375 1 303 86 17 17 289 -1 unnamed_device 25.3 MiB 1.31 1281 15206 5059 7438 2709 63.8 MiB 0.20 0.00 4.01908 -142.049 -4.01908 4.01908 0.98 0.00138623 0.00128893 0.115059 0.107012 46 3287 29 6.99608e+06 323745 828058. 2865.25 3.52 0.434274 0.393484 28066 200906 -1 2472 19 2277 2579 186592 40946 4.19302 4.19302 -144.706 -4.19302 0 0 1.01997e+06 3529.29 0.29 0.12 0.29 -1 -1 0.29 0.0535478 0.0485448 138 124 0 0 125 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 8.63 vpr 62.97 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30568 -1 -1 15 26 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 26 32 198 186 1 125 73 17 17 289 -1 unnamed_device 24.2 MiB 1.09 402 7369 3107 3789 473 63.0 MiB 0.07 0.00 2.6716 -78.5602 -2.6716 2.6716 0.99 0.000671868 0.000622101 0.034766 0.0322414 42 1323 32 6.99608e+06 220735 744469. 2576.02 4.09 0.248897 0.221761 27202 183097 -1 1004 17 727 856 79646 21279 2.41737 2.41737 -80.3281 -2.41737 0 0 949917. 3286.91 0.28 0.06 0.27 -1 -1 0.28 0.0239001 0.0215046 52 30 26 26 22 22 -fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 18.81 vpr 63.56 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 30316 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 333 251 1 181 76 17 17 289 -1 unnamed_device 24.7 MiB 1.07 705 12076 4649 5860 1567 63.6 MiB 0.15 0.00 3.97238 -132.995 -3.97238 3.97238 0.98 0.00113349 0.00105439 0.0891962 0.0830262 48 2576 47 6.99608e+06 176588 865456. 2994.66 13.99 0.609587 0.549653 28354 207349 -1 1879 20 1499 2307 195753 55792 4.00906 4.00906 -142.234 -4.00906 0 0 1.05005e+06 3633.38 0.31 0.12 0.31 -1 -1 0.31 0.0454787 0.0412877 75 3 122 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 7.78 vpr 62.53 MiB 0.02 6796 -1 -1 1 0.03 -1 -1 30388 -1 -1 8 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 23.8 MiB 0.24 736 9906 3603 5031 1272 62.5 MiB 0.09 0.00 2.06111 -84.6894 -2.06111 2.06111 0.97 0.000706909 0.000654981 0.0489297 0.0453508 36 1652 24 6.99608e+06 117725 648988. 2245.63 4.21 0.253417 0.227026 26050 158493 -1 1482 18 698 887 79009 16017 1.76652 1.76652 -87.3348 -1.76652 0 0 828058. 2865.25 0.25 0.06 0.23 -1 -1 0.25 0.0263722 0.0236785 44 3 53 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 14.86 vpr 63.76 MiB 0.04 7204 -1 -1 1 0.05 -1 -1 30700 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65292 32 32 376 288 1 218 81 17 17 289 -1 unnamed_device 24.8 MiB 1.06 835 12856 4936 6167 1753 63.8 MiB 0.16 0.00 3.83288 -138.607 -3.83288 3.83288 0.98 0.00121817 0.00113275 0.0926844 0.0861729 52 3011 45 6.99608e+06 250167 926341. 3205.33 9.93 0.661546 0.597152 29218 227130 -1 2034 20 1860 2664 210113 52635 4.07132 4.07132 -148.317 -4.07132 0 0 1.14541e+06 3963.36 0.33 0.12 0.34 -1 -1 0.33 0.0489796 0.0445061 95 34 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 15.32 vpr 63.59 MiB 0.06 7024 -1 -1 1 0.03 -1 -1 30276 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65112 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 24.7 MiB 0.30 928 12512 3016 8778 718 63.6 MiB 0.14 0.00 2.93295 -114.372 -2.93295 2.93295 0.99 0.00113671 0.00105639 0.0719027 0.0668296 36 2976 46 6.99608e+06 412039 648988. 2245.63 11.44 0.514453 0.464294 26050 158493 -1 2311 20 1632 2377 221761 44668 2.93732 2.93732 -123.081 -2.93732 0 0 828058. 2865.25 0.25 0.12 0.23 -1 -1 0.25 0.0460883 0.0418531 87 3 124 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 31.14 vpr 63.81 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30704 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65340 32 32 407 319 1 256 85 17 17 289 -1 unnamed_device 24.8 MiB 0.82 1355 13105 4686 6378 2041 63.8 MiB 0.17 0.00 3.84405 -146.55 -3.84405 3.84405 1.02 0.00128307 0.00119244 0.0939905 0.0873878 40 3494 25 6.99608e+06 309029 706193. 2443.58 26.46 0.63711 0.575086 26914 176310 -1 3199 22 2556 3619 369542 72224 4.47222 4.47222 -168.801 -4.47222 0 0 926341. 3205.33 0.27 0.17 0.26 -1 -1 0.27 0.0559197 0.0507134 115 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 9.65 vpr 63.55 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30180 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 294 246 1 176 75 17 17 289 -1 unnamed_device 24.7 MiB 1.35 631 8765 3568 4905 292 63.5 MiB 0.11 0.00 3.0305 -106.826 -3.0305 3.0305 0.99 0.000975726 0.000905346 0.0571673 0.0531379 46 1909 28 6.99608e+06 161872 828058. 2865.25 4.61 0.380829 0.341873 28066 200906 -1 1545 22 1354 1880 153263 36733 3.26222 3.26222 -125.164 -3.26222 0 0 1.01997e+06 3529.29 0.30 0.10 0.30 -1 -1 0.30 0.0426284 0.0384534 72 34 54 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 16.21 vpr 63.25 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30136 -1 -1 13 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64768 30 32 296 244 1 173 75 17 17 289 -1 unnamed_device 24.4 MiB 7.65 650 7975 2404 4392 1179 63.2 MiB 0.10 0.00 3.55679 -117.332 -3.55679 3.55679 0.98 0.000926328 0.000856489 0.0519292 0.0482648 46 2101 31 6.99608e+06 191304 828058. 2865.25 4.87 0.279138 0.251279 28066 200906 -1 1500 22 1463 2145 149531 35969 3.32751 3.32751 -121.447 -3.32751 0 0 1.01997e+06 3529.29 0.30 0.10 0.30 -1 -1 0.30 0.0424381 0.0383334 73 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 7.80 vpr 63.34 MiB 0.03 7184 -1 -1 1 0.03 -1 -1 30276 -1 -1 15 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 28 32 278 232 1 163 75 17 17 289 -1 unnamed_device 24.3 MiB 1.82 739 7975 3247 4368 360 63.3 MiB 0.09 0.00 3.69125 -116.208 -3.69125 3.69125 0.99 0.000926061 0.000860321 0.0494864 0.0459656 36 2556 34 6.99608e+06 220735 648988. 2245.63 2.47 0.199747 0.17984 26050 158493 -1 1917 19 1233 1820 185802 38503 3.78171 3.78171 -132.021 -3.78171 0 0 828058. 2865.25 0.27 0.10 0.23 -1 -1 0.27 0.0359577 0.0324673 72 34 56 28 28 28 -fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 9.38 vpr 63.04 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30268 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 24.3 MiB 0.26 696 7204 2957 4121 126 63.0 MiB 0.09 0.00 2.86245 -113.51 -2.86245 2.86245 0.99 0.000976841 0.000907776 0.0478281 0.0444678 44 2020 24 6.99608e+06 147157 787024. 2723.27 5.48 0.356062 0.319978 27778 195446 -1 1625 31 1977 3013 332762 96253 2.94132 2.94132 -119.539 -2.94132 0 0 997811. 3452.63 0.30 0.17 0.29 -1 -1 0.30 0.0567576 0.0511568 64 3 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 24.83 vpr 63.52 MiB 0.02 7028 -1 -1 1 0.04 -1 -1 30364 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65048 31 32 303 249 1 185 78 17 17 289 -1 unnamed_device 24.6 MiB 0.71 755 9540 3925 5398 217 63.5 MiB 0.11 0.00 3.03145 -110.864 -3.03145 3.03145 0.99 0.000999677 0.000928225 0.0598528 0.055579 38 3052 46 6.99608e+06 220735 678818. 2348.85 20.52 0.518806 0.465317 26626 170182 -1 2159 24 1603 2282 256076 71929 3.05762 3.05762 -121.027 -3.05762 0 0 902133. 3121.57 0.26 0.14 0.24 -1 -1 0.26 0.0468915 0.0422979 77 34 61 31 31 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 10.05 vpr 63.61 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30172 -1 -1 16 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65140 29 32 312 264 1 197 77 17 17 289 -1 unnamed_device 24.7 MiB 2.73 884 10835 4063 4821 1951 63.6 MiB 0.13 0.00 2.96441 -103.828 -2.96441 2.96441 0.98 0.000997471 0.000926682 0.069264 0.0643461 36 2708 23 6.99608e+06 235451 648988. 2245.63 3.86 0.283484 0.255836 26050 158493 -1 2118 19 1470 1792 182626 37511 3.03902 3.03902 -113.454 -3.03902 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0387755 0.0350331 86 61 29 29 57 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 11.49 vpr 63.94 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30492 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65472 32 32 423 310 1 243 84 17 17 289 -1 unnamed_device 25.0 MiB 1.02 1043 15273 6507 8280 486 63.9 MiB 0.20 0.00 3.92945 -143.749 -3.92945 3.92945 1.01 0.00138141 0.00128434 0.119574 0.111349 52 3353 48 6.99608e+06 294314 926341. 3205.33 6.48 0.619758 0.561281 29218 227130 -1 2351 21 2159 3199 268895 57528 3.83171 3.83171 -144.306 -3.83171 0 0 1.14541e+06 3963.36 0.37 0.15 0.34 -1 -1 0.37 0.0582542 0.0529608 106 29 128 32 27 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 16.82 vpr 63.94 MiB 0.04 7256 -1 -1 1 0.03 -1 -1 30496 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65476 32 32 403 317 1 252 82 17 17 289 -1 unnamed_device 25.1 MiB 0.83 1127 14500 5161 6829 2510 63.9 MiB 0.20 0.00 3.90969 -144.443 -3.90969 3.90969 0.98 0.00127391 0.00118306 0.108878 0.101209 44 4008 46 6.99608e+06 264882 787024. 2723.27 12.13 0.635427 0.573769 27778 195446 -1 2839 23 2834 3899 468755 94851 4.6831 4.6831 -167.785 -4.6831 0 0 997811. 3452.63 0.30 0.19 0.29 -1 -1 0.30 0.0573307 0.0520077 110 65 62 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 8.65 vpr 63.64 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30536 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65168 31 32 353 302 1 224 79 17 17 289 -1 unnamed_device 24.7 MiB 0.88 1061 8867 2259 5908 700 63.6 MiB 0.11 0.00 3.47679 -127.153 -3.47679 3.47679 0.98 0.00108569 0.00100758 0.0591499 0.0549107 38 2537 26 6.99608e+06 235451 678818. 2348.85 4.19 0.298967 0.269371 26626 170182 -1 2160 30 1773 1838 249915 79626 3.23376 3.23376 -128.103 -3.23376 0 0 902133. 3121.57 0.26 0.15 0.24 -1 -1 0.26 0.0612991 0.0552484 99 90 0 0 89 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 7.04 vpr 64.01 MiB 0.05 7248 -1 -1 1 0.03 -1 -1 30380 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65544 31 32 391 309 1 242 81 17 17 289 -1 unnamed_device 24.9 MiB 0.78 1183 15656 5841 7703 2112 64.0 MiB 0.20 0.00 3.61799 -134.688 -3.61799 3.61799 0.98 0.00122151 0.00113263 0.113823 0.105779 38 3042 22 6.99608e+06 264882 678818. 2348.85 2.52 0.320463 0.291761 26626 170182 -1 2602 22 2070 2717 217416 44443 3.96456 3.96456 -147.834 -3.96456 0 0 902133. 3121.57 0.26 0.13 0.24 -1 -1 0.26 0.0540491 0.0490351 106 64 60 30 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 7.83 vpr 64.04 MiB 0.03 7472 -1 -1 1 0.03 -1 -1 30524 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65580 31 32 455 371 1 302 86 17 17 289 -1 unnamed_device 25.5 MiB 1.03 1328 14072 5452 6377 2243 64.0 MiB 0.19 0.00 4.66638 -161.837 -4.66638 4.66638 0.98 0.00137939 0.00128153 0.105996 0.0984778 46 3611 30 6.99608e+06 338461 828058. 2865.25 3.02 0.371805 0.336717 28066 200906 -1 2828 22 2604 2998 246372 50453 4.5124 4.5124 -160.805 -4.5124 0 0 1.01997e+06 3529.29 0.30 0.14 0.30 -1 -1 0.30 0.0601595 0.0544785 139 124 0 0 124 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 8.43 vpr 63.92 MiB 0.07 7380 -1 -1 1 0.03 -1 -1 30448 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65456 31 32 413 333 1 258 82 17 17 289 -1 unnamed_device 25.0 MiB 1.61 1336 12542 4792 5292 2458 63.9 MiB 0.17 0.00 4.63751 -159.484 -4.63751 4.63751 0.99 0.00127559 0.00118531 0.0938377 0.0872004 44 3365 23 6.99608e+06 279598 787024. 2723.27 3.04 0.367516 0.33264 27778 195446 -1 2649 22 2348 3160 246325 50594 4.66644 4.66644 -167.253 -4.66644 0 0 997811. 3452.63 0.30 0.14 0.29 -1 -1 0.30 0.0558949 0.0507155 117 90 31 31 89 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 9.72 vpr 63.83 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30500 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65360 31 32 391 309 1 241 83 17 17 289 -1 unnamed_device 25.0 MiB 2.14 1058 13763 5815 7487 461 63.8 MiB 0.18 0.00 3.62105 -130.075 -3.62105 3.62105 0.98 0.00123878 0.00115182 0.0983473 0.0914495 46 3035 33 6.99608e+06 294314 828058. 2865.25 3.74 0.387086 0.351317 28066 200906 -1 2277 32 2426 3233 359859 110439 3.71441 3.71441 -135.827 -3.71441 0 0 1.01997e+06 3529.29 0.30 0.20 0.30 -1 -1 0.30 0.0741962 0.0670988 107 64 60 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 10.23 vpr 63.82 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30428 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65352 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 24.9 MiB 0.94 1214 6556 2392 3648 516 63.8 MiB 0.10 0.00 3.81945 -147.993 -3.81945 3.81945 1.01 0.00127198 0.00118231 0.0516007 0.0479973 46 3170 26 6.99608e+06 250167 828058. 2865.25 5.53 0.464379 0.418841 28066 200906 -1 2519 22 2224 2868 243990 48257 3.93982 3.93982 -158.396 -3.93982 0 0 1.01997e+06 3529.29 0.30 0.14 0.30 -1 -1 0.30 0.0559651 0.0508673 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 10.01 vpr 64.10 MiB 0.06 7300 -1 -1 1 0.04 -1 -1 30672 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65640 32 32 496 380 1 313 86 17 17 289 -1 unnamed_device 25.4 MiB 1.86 1472 16529 5767 8472 2290 64.1 MiB 0.24 0.00 4.63877 -169.362 -4.63877 4.63877 0.98 0.00153889 0.00143102 0.139546 0.129819 46 4337 28 6.99608e+06 323745 828058. 2865.25 4.22 0.447463 0.406708 28066 200906 -1 3209 23 3387 4674 302207 65517 5.06025 5.06025 -178.772 -5.06025 0 0 1.01997e+06 3529.29 0.30 0.17 0.29 -1 -1 0.30 0.0703618 0.0639001 139 96 62 32 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 6.56 vpr 63.47 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30612 -1 -1 13 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64996 31 32 305 250 1 181 76 17 17 289 -1 unnamed_device 24.6 MiB 0.89 800 9996 3753 4176 2067 63.5 MiB 0.12 0.00 3.1395 -118.047 -3.1395 3.1395 0.98 0.000999855 0.000929042 0.0649952 0.060428 38 2130 24 6.99608e+06 191304 678818. 2348.85 2.10 0.240464 0.217536 26626 170182 -1 1836 21 1457 1801 148849 31228 3.25317 3.25317 -128.553 -3.25317 0 0 902133. 3121.57 0.26 0.10 0.26 -1 -1 0.26 0.0421384 0.0381025 75 34 62 31 31 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 11.71 vpr 64.05 MiB 0.05 7296 -1 -1 1 0.03 -1 -1 30372 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65584 31 32 395 311 1 243 81 17 17 289 -1 unnamed_device 25.2 MiB 0.66 1241 14606 4687 8344 1575 64.0 MiB 0.20 0.00 4.54014 -162.268 -4.54014 4.54014 0.98 0.0012512 0.00116372 0.108581 0.100957 46 3395 49 6.99608e+06 264882 828058. 2865.25 7.24 0.611887 0.553099 28066 200906 -1 2755 22 1893 2360 227438 44035 4.80041 4.80041 -173.103 -4.80041 0 0 1.01997e+06 3529.29 0.30 0.13 0.30 -1 -1 0.30 0.0544316 0.0493742 106 64 62 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 7.76 vpr 63.89 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30592 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65420 32 32 397 313 1 246 84 17 17 289 -1 unnamed_device 24.8 MiB 1.24 1277 13077 4097 6940 2040 63.9 MiB 0.17 0.00 3.58873 -134.162 -3.58873 3.58873 0.99 0.00125238 0.00116411 0.0934409 0.0869403 44 3468 27 6.99608e+06 294314 787024. 2723.27 2.70 0.310638 0.282653 27778 195446 -1 2711 22 1907 2782 233441 47125 3.79716 3.79716 -138.134 -3.79716 0 0 997811. 3452.63 0.29 0.13 0.28 -1 -1 0.29 0.0542345 0.0492315 108 63 62 32 62 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 13.03 vpr 63.74 MiB 0.04 7124 -1 -1 1 0.03 -1 -1 30388 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65272 32 32 345 257 1 187 77 17 17 289 -1 unnamed_device 24.9 MiB 0.78 749 9368 3828 5102 438 63.7 MiB 0.12 0.00 3.60355 -132.937 -3.60355 3.60355 0.97 0.0011835 0.00110265 0.0711052 0.0662595 56 2329 38 6.99608e+06 191304 973134. 3367.25 8.46 0.594382 0.536272 29794 239141 -1 1846 23 2014 3436 278492 64215 4.03806 4.03806 -145.538 -4.03806 0 0 1.19926e+06 4149.71 0.34 0.15 0.37 -1 -1 0.34 0.0529022 0.0480138 78 3 128 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 10.95 vpr 63.91 MiB 0.05 7292 -1 -1 1 0.03 -1 -1 30420 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65448 32 32 424 343 1 266 83 17 17 289 -1 unnamed_device 24.9 MiB 1.31 1055 13763 3328 9921 514 63.9 MiB 0.19 0.00 3.32994 -126.121 -3.32994 3.32994 0.99 0.00128859 0.00119672 0.102641 0.0953942 48 2770 25 6.99608e+06 279598 865456. 2994.66 5.80 0.532529 0.481039 28354 207349 -1 2322 24 2262 2686 211847 46681 3.10691 3.10691 -130.017 -3.10691 0 0 1.05005e+06 3633.38 0.31 0.14 0.31 -1 -1 0.31 0.0603195 0.0546632 120 96 25 25 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 12.86 vpr 63.91 MiB 0.04 7144 -1 -1 1 0.03 -1 -1 30500 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65448 32 32 395 311 1 242 84 17 17 289 -1 unnamed_device 25.1 MiB 1.11 953 16005 6898 8576 531 63.9 MiB 0.20 0.00 3.64909 -133.489 -3.64909 3.64909 0.99 0.00126724 0.00117778 0.113982 0.106061 50 2835 48 6.99608e+06 294314 902133. 3121.57 7.91 0.643094 0.581425 28642 213929 -1 2240 19 2034 2720 256852 58452 3.66566 3.66566 -135.576 -3.66566 0 0 1.08113e+06 3740.92 0.32 0.13 0.32 -1 -1 0.32 0.0487369 0.0442971 106 61 64 32 60 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 8.46 vpr 64.16 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30532 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65700 32 32 405 318 1 253 81 17 17 289 -1 unnamed_device 25.3 MiB 0.87 1127 14956 5538 7035 2383 64.2 MiB 0.20 0.00 3.33684 -126.514 -3.33684 3.33684 1.00 0.0012766 0.00118618 0.112319 0.104431 38 3880 43 6.99608e+06 250167 678818. 2348.85 3.76 0.408505 0.370782 26626 170182 -1 2782 21 2489 3255 287192 60059 3.84771 3.84771 -145.494 -3.84771 0 0 902133. 3121.57 0.26 0.15 0.26 -1 -1 0.26 0.0572335 0.0522738 108 65 63 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 8.05 vpr 63.59 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30524 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65116 32 32 376 288 1 218 80 17 17 289 -1 unnamed_device 24.5 MiB 0.98 787 12120 3530 7317 1273 63.6 MiB 0.16 0.00 3.81568 -137.815 -3.81568 3.81568 1.00 0.00120955 0.00112463 0.088583 0.0824031 48 2529 39 6.99608e+06 235451 865456. 2994.66 3.29 0.381832 0.346248 28354 207349 -1 1935 25 2132 3104 289070 64769 4.19042 4.19042 -146.883 -4.19042 0 0 1.05005e+06 3633.38 0.31 0.15 0.31 -1 -1 0.31 0.0588523 0.0533475 94 34 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 19.32 vpr 63.92 MiB 0.05 7132 -1 -1 1 0.04 -1 -1 30660 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65452 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 25.0 MiB 0.91 1023 14500 5955 7564 981 63.9 MiB 0.18 0.00 3.85505 -141.818 -3.85505 3.85505 0.99 0.00126999 0.00118088 0.106966 0.099452 40 3265 27 6.99608e+06 264882 706193. 2443.58 14.54 0.677793 0.611967 26914 176310 -1 2725 27 2705 3247 424500 109619 4.60052 4.60052 -171.864 -4.60052 0 0 926341. 3205.33 0.27 0.20 0.27 -1 -1 0.27 0.0667567 0.0604568 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 11.20 vpr 64.23 MiB 0.05 7336 -1 -1 1 0.03 -1 -1 30632 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65768 31 32 449 367 1 290 85 17 17 289 -1 unnamed_device 25.4 MiB 1.48 1393 14035 5565 6766 1704 64.2 MiB 0.19 0.00 4.08308 -143.875 -4.08308 4.08308 1.00 0.00136557 0.00125984 0.106678 0.0990601 46 3456 31 6.99608e+06 323745 828058. 2865.25 5.80 0.553645 0.499448 28066 200906 -1 2897 21 2039 2368 186090 38982 4.05885 4.05885 -147.773 -4.05885 0 0 1.01997e+06 3529.29 0.30 0.12 0.31 -1 -1 0.30 0.05668 0.0513282 132 122 0 0 122 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 11.60 vpr 64.08 MiB 0.05 7272 -1 -1 1 0.03 -1 -1 30464 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65620 32 32 432 346 1 281 85 17 17 289 -1 unnamed_device 25.0 MiB 0.88 1279 12175 4545 5316 2314 64.1 MiB 0.17 0.00 3.76705 -140.253 -3.76705 3.76705 0.96 0.0013438 0.0012489 0.0919597 0.085571 44 3828 40 6.99608e+06 309029 787024. 2723.27 7.00 0.60231 0.543379 27778 195446 -1 2857 21 2900 4032 318211 64593 3.89402 3.89402 -148.475 -3.89402 0 0 997811. 3452.63 0.30 0.15 0.28 -1 -1 0.30 0.0562942 0.0510873 127 94 32 32 94 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 7.11 vpr 63.46 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30600 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64984 32 32 312 255 1 191 78 17 17 289 -1 unnamed_device 24.7 MiB 0.59 779 12528 5280 6990 258 63.5 MiB 0.14 0.00 3.03405 -116.466 -3.03405 3.03405 0.99 0.00103055 0.000957029 0.0803354 0.0746494 44 2266 23 6.99608e+06 206020 787024. 2723.27 2.83 0.256664 0.232621 27778 195446 -1 1776 23 1466 1918 161561 34104 3.12982 3.12982 -122.042 -3.12982 0 0 997811. 3452.63 0.30 0.11 0.29 -1 -1 0.30 0.0461447 0.0416865 80 34 63 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 8.02 vpr 63.71 MiB 0.04 7204 -1 -1 1 0.03 -1 -1 30448 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 370 314 1 244 80 17 17 289 -1 unnamed_device 24.8 MiB 0.92 1095 11776 4100 5415 2261 63.7 MiB 0.17 0.00 3.80663 -140.003 -3.80663 3.80663 1.03 0.00114191 0.00105938 0.0944308 0.0876785 44 3095 31 6.99608e+06 235451 787024. 2723.27 3.27 0.313089 0.283477 27778 195446 -1 2376 25 2295 2733 324549 82043 3.59305 3.59305 -139.684 -3.59305 0 0 997811. 3452.63 0.30 0.16 0.29 -1 -1 0.30 0.0546963 0.0493845 108 94 0 0 94 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 24.55 vpr 63.93 MiB 0.04 7400 -1 -1 1 0.03 -1 -1 30796 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65464 32 32 469 351 1 285 84 17 17 289 -1 unnamed_device 25.3 MiB 0.97 1196 15273 6544 8338 391 63.9 MiB 0.22 0.00 4.58129 -163.981 -4.58129 4.58129 0.98 0.00147859 0.00137554 0.127626 0.118829 44 4685 46 6.99608e+06 294314 787024. 2723.27 19.70 0.804561 0.727272 27778 195446 -1 2843 23 2983 4079 360035 73587 4.84346 4.84346 -177.502 -4.84346 0 0 997811. 3452.63 0.30 0.18 0.29 -1 -1 0.30 0.0672121 0.0610234 126 65 96 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 7.74 vpr 63.77 MiB 0.05 7272 -1 -1 1 0.03 -1 -1 30396 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65296 32 32 368 284 1 217 80 17 17 289 -1 unnamed_device 24.8 MiB 0.66 1017 10916 2707 7442 767 63.8 MiB 0.15 0.00 3.32994 -129.578 -3.32994 3.32994 0.98 0.00118087 0.00109901 0.0795793 0.0740882 38 3243 34 6.99608e+06 235451 678818. 2348.85 3.40 0.346613 0.314123 26626 170182 -1 2475 33 2487 3350 449850 131294 3.35751 3.35751 -139.242 -3.35751 0 0 902133. 3121.57 0.26 0.22 0.24 -1 -1 0.26 0.0738139 0.0667641 93 34 92 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 10.43 vpr 63.53 MiB 0.04 7112 -1 -1 1 0.03 -1 -1 30324 -1 -1 24 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65056 30 32 296 244 1 177 86 17 17 289 -1 unnamed_device 24.7 MiB 0.74 690 11426 4009 5678 1739 63.5 MiB 0.12 0.00 3.75245 -122.292 -3.75245 3.75245 0.98 0.000968658 0.000906028 0.0629763 0.0585484 46 2173 50 6.99608e+06 353176 828058. 2865.25 6.04 0.445268 0.400146 28066 200906 -1 1642 24 1498 2222 188117 41858 3.67841 3.67841 -128.377 -3.67841 0 0 1.01997e+06 3529.29 0.30 0.11 0.30 -1 -1 0.30 0.0459984 0.0414842 80 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 30.71 vpr 64.10 MiB 0.02 7632 -1 -1 1 0.03 -1 -1 30928 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65636 32 32 531 413 1 346 88 17 17 289 -1 unnamed_device 25.4 MiB 1.01 1502 15883 5809 7749 2325 64.1 MiB 0.26 0.00 5.34997 -187.982 -5.34997 5.34997 0.98 0.00160917 0.0014898 0.147634 0.137424 48 4589 29 6.99608e+06 353176 865456. 2994.66 25.72 0.941218 0.850375 28354 207349 -1 3392 23 3406 4224 394744 83561 5.80819 5.80819 -205.485 -5.80819 0 0 1.05005e+06 3633.38 0.31 0.19 0.31 -1 -1 0.31 0.071862 0.0652183 159 127 32 32 128 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 21.96 vpr 63.75 MiB 0.04 7180 -1 -1 1 0.03 -1 -1 30632 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65276 32 32 376 288 1 217 80 17 17 289 -1 unnamed_device 24.8 MiB 0.61 968 15044 5925 7449 1670 63.7 MiB 0.19 0.00 4.12908 -153.541 -4.12908 4.12908 0.98 0.00123589 0.00114083 0.111235 0.103428 40 2900 41 6.99608e+06 235451 706193. 2443.58 17.64 0.632837 0.572026 26914 176310 -1 2629 24 2545 3333 375132 78045 4.53555 4.53555 -173.484 -4.53555 0 0 926341. 3205.33 0.27 0.17 0.26 -1 -1 0.27 0.0573368 0.0519708 92 34 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 7.29 vpr 63.17 MiB 0.03 6828 -1 -1 1 0.03 -1 -1 30316 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 24.1 MiB 0.29 689 12763 5259 7126 378 63.2 MiB 0.13 0.00 2.98775 -114.562 -2.98775 2.98775 0.98 0.000982775 0.000913435 0.0660228 0.0614085 44 2263 44 6.99608e+06 353176 787024. 2723.27 3.40 0.288426 0.260561 27778 195446 -1 1584 22 1531 2350 178050 40124 2.77272 2.77272 -116.15 -2.77272 0 0 997811. 3452.63 0.29 0.11 0.29 -1 -1 0.29 0.0426035 0.0385036 70 3 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 12.94 vpr 64.18 MiB 0.05 7296 -1 -1 1 0.04 -1 -1 30992 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65716 32 32 438 320 1 256 82 17 17 289 -1 unnamed_device 25.2 MiB 0.76 1185 13432 5656 7470 306 64.2 MiB 0.19 0.00 4.53729 -162.267 -4.53729 4.53729 0.99 0.00142631 0.00132718 0.11215 0.104445 54 3178 24 6.99608e+06 264882 949917. 3286.91 8.22 0.64088 0.579961 29506 232905 -1 2469 23 2712 3915 308978 64124 4.92476 4.92476 -170.168 -4.92476 0 0 1.17392e+06 4061.99 0.35 0.16 0.35 -1 -1 0.35 0.0644859 0.0585522 112 34 128 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 9.65 vpr 62.83 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 30420 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 24.1 MiB 0.36 620 10614 4481 5893 240 62.8 MiB 0.12 0.00 2.85145 -112.009 -2.85145 2.85145 1.02 0.000976465 0.000907112 0.0696132 0.0647251 42 2317 29 6.99608e+06 147157 744469. 2576.02 5.76 0.431102 0.388046 27202 183097 -1 1666 25 1562 2407 189890 41526 3.39852 3.39852 -129.678 -3.39852 0 0 949917. 3286.91 0.28 0.12 0.27 -1 -1 0.28 0.04744 0.0427892 62 3 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 19.57 vpr 63.54 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 30456 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65060 30 32 296 244 1 179 77 17 17 289 -1 unnamed_device 24.7 MiB 0.76 727 9857 3779 5192 886 63.5 MiB 0.12 0.00 3.3422 -117.21 -3.3422 3.3422 0.98 0.000984781 0.000914956 0.0626193 0.0582173 40 2425 29 6.99608e+06 220735 706193. 2443.58 15.23 0.50641 0.454319 26914 176310 -1 1996 23 1713 2249 241143 54214 3.83671 3.83671 -135.29 -3.83671 0 0 926341. 3205.33 0.27 0.13 0.26 -1 -1 0.27 0.0444833 0.0401592 74 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 31.52 vpr 64.00 MiB 0.05 7380 -1 -1 1 0.03 -1 -1 30396 -1 -1 20 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65536 29 32 393 319 1 247 81 17 17 289 -1 unnamed_device 25.0 MiB 1.86 1127 11631 4219 5566 1846 64.0 MiB 0.15 0.00 3.87283 -130.664 -3.87283 3.87283 0.98 0.00121827 0.00113153 0.0838629 0.0779236 38 3559 35 6.99608e+06 294314 678818. 2348.85 26.00 0.617114 0.556163 26626 170182 -1 2773 21 2177 2847 250577 51115 4.0346 4.0346 -146.118 -4.0346 0 0 902133. 3121.57 0.26 0.13 0.24 -1 -1 0.26 0.0510456 0.0463792 114 88 29 29 85 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 10.85 vpr 63.93 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 30680 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65464 32 32 407 319 1 250 82 17 17 289 -1 unnamed_device 25.0 MiB 0.99 1132 14856 6162 7872 822 63.9 MiB 0.19 0.00 4.33864 -160.209 -4.33864 4.33864 0.99 0.00127663 0.00118601 0.110301 0.102558 46 3105 46 6.99608e+06 264882 828058. 2865.25 6.14 0.57624 0.521332 28066 200906 -1 2479 21 2449 3338 264344 54541 4.54181 4.54181 -171.665 -4.54181 0 0 1.01997e+06 3529.29 0.32 0.13 0.30 -1 -1 0.32 0.0465817 0.0422487 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 10.68 vpr 63.72 MiB 0.03 7268 -1 -1 1 0.03 -1 -1 30684 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65252 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 24.9 MiB 1.08 1170 5244 1136 3811 297 63.7 MiB 0.09 0.00 4.32144 -158.986 -4.32144 4.32144 0.99 0.00127867 0.0011871 0.0419648 0.0390512 44 3624 36 6.99608e+06 264882 787024. 2723.27 5.78 0.346055 0.312415 27778 195446 -1 2774 26 2902 4030 398630 76727 4.89251 4.89251 -180.849 -4.89251 0 0 997811. 3452.63 0.30 0.18 0.29 -1 -1 0.30 0.0642758 0.0583067 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 10.59 vpr 63.63 MiB 0.04 7200 -1 -1 1 0.03 -1 -1 30516 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65156 32 32 345 287 1 212 79 17 17 289 -1 unnamed_device 24.7 MiB 0.75 794 12585 5277 6958 350 63.6 MiB 0.15 0.00 3.32994 -125.061 -3.32994 3.32994 0.98 0.00109287 0.00101519 0.0845679 0.0785525 48 2298 40 6.99608e+06 220735 865456. 2994.66 6.14 0.491587 0.44255 28354 207349 -1 1822 18 1711 1935 170272 37969 3.35652 3.35652 -127.249 -3.35652 0 0 1.05005e+06 3633.38 0.31 0.10 0.31 -1 -1 0.31 0.0406561 0.0368556 92 65 32 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 10.71 vpr 63.91 MiB 0.04 7244 -1 -1 1 0.06 -1 -1 30488 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65440 31 32 353 302 1 230 80 17 17 289 -1 unnamed_device 25.2 MiB 1.28 937 11260 4683 6230 347 63.9 MiB 0.14 0.00 3.34114 -121.926 -3.34114 3.34114 0.98 0.00109441 0.00101568 0.0751707 0.069833 46 2805 26 6.99608e+06 250167 828058. 2865.25 5.74 0.436563 0.392299 28066 200906 -1 2215 18 1690 2096 160434 35600 3.54641 3.54641 -129.941 -3.54641 0 0 1.01997e+06 3529.29 0.30 0.10 0.29 -1 -1 0.30 0.0403005 0.0364782 102 90 0 0 89 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 12.72 vpr 63.73 MiB 0.04 7204 -1 -1 1 0.03 -1 -1 30584 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65264 30 32 374 297 1 226 81 17 17 289 -1 unnamed_device 24.7 MiB 1.22 946 9881 4003 5314 564 63.7 MiB 0.13 0.00 3.33639 -114.321 -3.33639 3.33639 0.98 0.00119194 0.00110368 0.0703957 0.065458 52 2948 32 6.99608e+06 279598 926341. 3205.33 7.77 0.574804 0.518575 29218 227130 -1 2136 23 1979 2865 213922 50414 3.33101 3.33101 -125.691 -3.33101 0 0 1.14541e+06 3963.36 0.33 0.13 0.34 -1 -1 0.33 0.0537529 0.0486932 101 60 60 30 57 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 19.11 vpr 63.50 MiB 0.05 7348 -1 -1 1 0.03 -1 -1 30380 -1 -1 18 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 28 32 332 260 1 197 78 17 17 289 -1 unnamed_device 24.5 MiB 0.81 820 9872 4067 5268 537 63.5 MiB 0.12 0.00 3.77115 -122.922 -3.77115 3.77115 0.98 0.00109149 0.00101547 0.0672705 0.0625622 40 2570 25 6.99608e+06 264882 706193. 2443.58 14.79 0.532265 0.479008 26914 176310 -1 2124 20 1867 2676 236596 51162 4.55052 4.55052 -149.921 -4.55052 0 0 926341. 3205.33 0.28 0.12 0.20 -1 -1 0.28 0.0438184 0.0397308 87 34 84 28 28 28 -fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 20.02 vpr 63.44 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30252 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 30 32 325 273 1 204 77 17 17 289 -1 unnamed_device 24.5 MiB 1.33 887 12139 5086 6651 402 63.4 MiB 0.14 0.00 3.82453 -131.841 -3.82453 3.82453 1.00 0.00103787 0.000963668 0.0798529 0.0741725 40 2690 29 6.99608e+06 220735 706193. 2443.58 15.02 0.539422 0.484912 26914 176310 -1 2256 21 1992 2655 265047 57347 4.23181 4.23181 -152.511 -4.23181 0 0 926341. 3205.33 0.27 0.13 0.26 -1 -1 0.27 0.043601 0.039422 89 63 30 30 60 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 7.85 vpr 63.83 MiB 0.04 7260 -1 -1 1 0.03 -1 -1 30380 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 361 308 1 241 79 17 17 289 -1 unnamed_device 24.8 MiB 1.12 1045 13430 4937 5959 2534 63.8 MiB 0.16 0.00 3.53869 -131.536 -3.53869 3.53869 0.99 0.00103993 0.000956966 0.0916894 0.0850627 44 3236 30 6.99608e+06 220735 787024. 2723.27 2.97 0.291101 0.263203 27778 195446 -1 2393 22 2046 2510 218761 44319 3.27776 3.27776 -128.463 -3.27776 0 0 997811. 3452.63 0.30 0.13 0.29 -1 -1 0.30 0.0520932 0.0470944 105 91 0 0 91 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 11.23 vpr 63.35 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30204 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 24.5 MiB 0.22 786 15688 6044 7337 2307 63.4 MiB 0.17 0.00 3.80415 -134.662 -3.80415 3.80415 0.98 0.00113728 0.00105759 0.0947111 0.0881162 48 2667 32 6.99608e+06 367892 865456. 2994.66 7.20 0.545307 0.492982 28354 207349 -1 2021 23 1922 3010 308923 83639 4.08232 4.08232 -148.515 -4.08232 0 0 1.05005e+06 3633.38 0.31 0.16 0.31 -1 -1 0.31 0.0519895 0.0471495 86 4 124 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 10.24 vpr 63.92 MiB 0.05 7276 -1 -1 1 0.03 -1 -1 30632 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65452 32 32 407 319 1 249 81 17 17 289 -1 unnamed_device 25.0 MiB 0.76 1115 10231 2817 7123 291 63.9 MiB 0.15 0.00 4.17744 -152.022 -4.17744 4.17744 0.98 0.00129603 0.00120575 0.0788717 0.0733104 40 3415 44 6.99608e+06 250167 706193. 2443.58 5.70 0.401221 0.363141 26914 176310 -1 2934 25 2589 3404 437463 99755 4.52755 4.52755 -168.484 -4.52755 0 0 926341. 3205.33 0.27 0.19 0.24 -1 -1 0.27 0.0615197 0.0557264 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 9.59 vpr 63.93 MiB 0.03 7240 -1 -1 1 0.04 -1 -1 30548 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65464 32 32 407 319 1 248 82 17 17 289 -1 unnamed_device 24.7 MiB 0.73 1023 12364 5104 6761 499 63.9 MiB 0.16 0.00 4.62599 -163.487 -4.62599 4.62599 0.98 0.00128544 0.00119452 0.0929319 0.0863982 54 3343 50 6.99608e+06 264882 949917. 3286.91 5.02 0.42526 0.385319 29506 232905 -1 2438 21 2294 3117 305512 65516 4.75244 4.75244 -177.551 -4.75244 0 0 1.17392e+06 4061.99 0.34 0.15 0.36 -1 -1 0.34 0.0541536 0.0491578 108 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 11.14 vpr 64.04 MiB 0.03 7248 -1 -1 1 0.03 -1 -1 30444 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65572 32 32 399 315 1 250 82 17 17 289 -1 unnamed_device 24.9 MiB 0.80 1222 13788 5033 6896 1859 64.0 MiB 0.19 0.00 3.88963 -144.009 -3.88963 3.88963 1.03 0.00126377 0.00117386 0.101577 0.0943389 46 3792 32 6.99608e+06 264882 828058. 2865.25 6.51 0.55746 0.503814 28066 200906 -1 2778 22 2291 3284 256580 54868 4.3994 4.3994 -153.075 -4.3994 0 0 1.01997e+06 3529.29 0.30 0.14 0.29 -1 -1 0.30 0.0548044 0.0496848 107 65 60 30 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 7.68 vpr 63.46 MiB 0.04 6984 -1 -1 1 0.03 -1 -1 30376 -1 -1 13 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64984 30 32 296 244 1 179 75 17 17 289 -1 unnamed_device 24.6 MiB 0.78 692 12241 5462 6298 481 63.5 MiB 0.14 0.00 3.58339 -124.571 -3.58339 3.58339 0.98 0.000981001 0.000910937 0.0776633 0.0721536 46 2396 44 6.99608e+06 191304 828058. 2865.25 3.22 0.315326 0.28455 28066 200906 -1 1796 22 1604 2143 175253 41225 3.70046 3.70046 -130.475 -3.70046 0 0 1.01997e+06 3529.29 0.30 0.11 0.29 -1 -1 0.30 0.0430123 0.0388451 76 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 10.45 vpr 63.81 MiB 0.05 7248 -1 -1 1 0.03 -1 -1 30380 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65340 30 32 383 303 1 237 80 17 17 289 -1 unnamed_device 24.7 MiB 1.75 1070 13152 5483 7188 481 63.8 MiB 0.17 0.00 4.67127 -156.182 -4.67127 4.67127 0.99 0.00121983 0.00113473 0.0965087 0.0897417 46 3316 42 6.99608e+06 264882 828058. 2865.25 5.01 0.406146 0.367835 28066 200906 -1 2652 22 2521 3637 310666 63193 4.90224 4.90224 -170.087 -4.90224 0 0 1.01997e+06 3529.29 0.30 0.15 0.21 -1 -1 0.30 0.0532788 0.0483655 105 63 60 30 60 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 10.67 vpr 63.92 MiB 0.04 7404 -1 -1 1 0.03 -1 -1 30884 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65456 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 25.2 MiB 0.88 1372 11615 4190 5568 1857 63.9 MiB 0.17 0.00 4.21664 -156.362 -4.21664 4.21664 0.98 0.00140062 0.00130157 0.0901621 0.0838966 48 3281 23 6.99608e+06 323745 865456. 2994.66 5.98 0.54928 0.495491 28354 207349 -1 2712 22 2478 2542 228474 48550 4.28795 4.28795 -167.318 -4.28795 0 0 1.05005e+06 3633.38 0.31 0.14 0.31 -1 -1 0.31 0.0602463 0.0544389 139 127 0 0 128 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 8.99 vpr 64.12 MiB 0.03 7392 -1 -1 1 0.03 -1 -1 30452 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65656 31 32 425 341 1 275 85 17 17 289 -1 unnamed_device 25.1 MiB 1.34 1100 12733 5272 6860 601 64.1 MiB 0.17 0.00 4.42639 -152.998 -4.42639 4.42639 0.98 0.00130941 0.00121704 0.0962321 0.0894987 50 3137 38 6.99608e+06 323745 902133. 3121.57 3.78 0.403681 0.365813 28642 213929 -1 2397 31 2553 3072 314562 90154 4.7184 4.7184 -159.76 -4.7184 0 0 1.08113e+06 3740.92 0.31 0.18 0.32 -1 -1 0.31 0.0756139 0.0684037 125 94 31 31 93 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 13.35 vpr 63.91 MiB 0.03 7332 -1 -1 1 0.04 -1 -1 30496 -1 -1 22 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65448 30 32 404 328 1 249 84 17 17 289 -1 unnamed_device 25.0 MiB 2.56 1072 15456 6553 7950 953 63.9 MiB 0.20 0.00 4.02117 -135.45 -4.02117 4.02117 0.99 0.00124589 0.00115675 0.108843 0.101042 54 3033 25 6.99608e+06 323745 949917. 3286.91 6.87 0.548407 0.495012 29506 232905 -1 2539 22 2456 3469 369993 91791 4.2822 4.2822 -147.585 -4.2822 0 0 1.17392e+06 4061.99 0.34 0.17 0.36 -1 -1 0.34 0.0544666 0.0493969 114 92 26 26 90 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 10.87 vpr 63.95 MiB 0.07 7192 -1 -1 1 0.03 -1 -1 30556 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65484 32 32 407 319 1 252 83 17 17 289 -1 unnamed_device 25.0 MiB 0.96 985 15563 6705 8342 516 63.9 MiB 0.21 0.00 4.37079 -157.14 -4.37079 4.37079 0.98 0.00129284 0.00120154 0.115234 0.107199 46 3459 48 6.99608e+06 279598 828058. 2865.25 6.03 0.445628 0.404591 28066 200906 -1 2435 24 2773 3900 345445 73632 4.90351 4.90351 -180.423 -4.90351 0 0 1.01997e+06 3529.29 0.30 0.17 0.30 -1 -1 0.30 0.0604524 0.0548259 111 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 12.06 vpr 63.99 MiB 0.05 7380 -1 -1 1 0.03 -1 -1 30276 -1 -1 20 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65528 29 32 387 316 1 240 81 17 17 289 -1 unnamed_device 25.1 MiB 1.49 968 10931 3850 4814 2267 64.0 MiB 0.14 0.00 3.60679 -119.01 -3.60679 3.60679 0.98 0.00120292 0.00111798 0.0784456 0.0729133 48 2905 26 6.99608e+06 294314 865456. 2994.66 7.00 0.526406 0.473951 28354 207349 -1 2395 21 2109 2731 245554 52643 3.92901 3.92901 -139.144 -3.92901 0 0 1.05005e+06 3633.38 0.30 0.13 0.16 -1 -1 0.30 0.0503585 0.0456573 112 88 26 26 85 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 19.63 vpr 63.33 MiB 0.04 6940 -1 -1 1 0.03 -1 -1 30252 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 24.4 MiB 0.92 619 8599 3526 4877 196 63.3 MiB 0.11 0.00 2.86245 -112.136 -2.86245 2.86245 0.99 0.000978946 0.000909883 0.0570075 0.0530359 38 2201 49 6.99608e+06 147157 678818. 2348.85 15.11 0.531049 0.476976 26626 170182 -1 1694 22 1504 2357 224815 47084 3.77442 3.77442 -133.235 -3.77442 0 0 902133. 3121.57 0.30 0.12 0.24 -1 -1 0.30 0.0426292 0.0385239 62 3 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 23.62 vpr 63.91 MiB 0.05 7252 -1 -1 1 0.03 -1 -1 30456 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65448 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 25.0 MiB 0.76 1109 9872 4023 5633 216 63.9 MiB 0.15 0.00 4.66383 -167.571 -4.66383 4.66383 0.98 0.00128539 0.00119447 0.0761997 0.0708938 46 3694 26 6.99608e+06 264882 828058. 2865.25 19.05 0.624002 0.563657 28066 200906 -1 2628 22 2754 3808 344513 69188 4.63814 4.63814 -172.468 -4.63814 0 0 1.01997e+06 3529.29 0.30 0.16 0.29 -1 -1 0.30 0.0555905 0.0504046 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 7.85 vpr 64.03 MiB 0.07 7196 -1 -1 1 0.03 -1 -1 30540 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65564 32 32 407 319 1 255 81 17 17 289 -1 unnamed_device 25.2 MiB 0.88 1186 7431 1655 4558 1218 64.0 MiB 0.11 0.00 4.63877 -165.425 -4.63877 4.63877 0.98 0.00128868 0.00119731 0.0581811 0.0541291 44 3557 30 6.99608e+06 250167 787024. 2723.27 3.23 0.346518 0.313218 27778 195446 -1 2900 21 2670 3617 341913 68925 5.12834 5.12834 -180.565 -5.12834 0 0 997811. 3452.63 0.29 0.16 0.29 -1 -1 0.29 0.0543235 0.0493428 111 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 9.40 vpr 63.55 MiB 0.03 6932 -1 -1 1 0.03 -1 -1 30428 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65080 32 32 315 267 1 202 77 17 17 289 -1 unnamed_device 24.6 MiB 1.89 767 11324 4614 6133 577 63.6 MiB 0.13 0.00 3.24452 -113.178 -3.24452 3.24452 0.99 0.00100899 0.000937051 0.0731514 0.0679227 48 2192 37 6.99608e+06 191304 865456. 2994.66 3.86 0.322335 0.291144 28354 207349 -1 1766 23 1501 1773 178296 43013 3.65236 3.65236 -123.017 -3.65236 0 0 1.05005e+06 3633.38 0.31 0.11 0.31 -1 -1 0.31 0.0457672 0.0412366 85 55 32 32 54 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 15.61 vpr 63.00 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 30476 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 24.3 MiB 0.27 622 11544 4964 6246 334 63.0 MiB 0.13 0.00 3.0382 -112.755 -3.0382 3.0382 0.98 0.000952323 0.000884319 0.0735797 0.0684186 40 2024 37 6.99608e+06 161872 706193. 2443.58 11.83 0.519271 0.466186 26914 176310 -1 1710 23 1494 2259 195460 42978 3.59032 3.59032 -127.239 -3.59032 0 0 926341. 3205.33 0.28 0.11 0.26 -1 -1 0.28 0.0357142 0.0322373 63 4 93 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 8.61 vpr 63.73 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30252 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 381 303 1 235 81 17 17 289 -1 unnamed_device 24.7 MiB 1.01 1014 12331 5132 6916 283 63.7 MiB 0.15 0.00 4.03648 -138.253 -4.03648 4.03648 0.98 0.00121378 0.00112771 0.0889927 0.0827203 40 2880 45 6.99608e+06 250167 706193. 2443.58 3.91 0.393102 0.356007 26914 176310 -1 2427 20 2214 2632 291742 78992 4.12195 4.12195 -146.004 -4.12195 0 0 926341. 3205.33 0.27 0.14 0.26 -1 -1 0.27 0.0499739 0.0454516 102 59 60 32 58 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 23.39 vpr 63.84 MiB 0.05 7312 -1 -1 1 0.03 -1 -1 30284 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65368 32 32 406 330 1 255 83 17 17 289 -1 unnamed_device 24.9 MiB 1.37 1180 13043 5079 5257 2707 63.8 MiB 0.17 0.00 4.34257 -148.625 -4.34257 4.34257 0.98 0.00126199 0.00117183 0.0947756 0.0880301 44 3213 34 6.99608e+06 279598 787024. 2723.27 18.24 0.651466 0.588069 27778 195446 -1 2398 22 1858 2237 185280 39489 4.30841 4.30841 -149.401 -4.30841 0 0 997811. 3452.63 0.30 0.12 0.29 -1 -1 0.30 0.054473 0.0493743 115 88 28 28 88 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 7.42 vpr 63.75 MiB 0.05 7296 -1 -1 1 0.03 -1 -1 30504 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65276 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 24.7 MiB 0.38 955 8251 1749 5614 888 63.7 MiB 0.11 0.00 4.24944 -150.187 -4.24944 4.24944 1.01 0.00133853 0.00124572 0.0575846 0.0535538 46 3215 32 6.99608e+06 397324 828058. 2865.25 3.24 0.330155 0.299664 28066 200906 -1 2373 24 2395 3692 289671 67042 4.96765 4.96765 -169.524 -4.96765 0 0 1.01997e+06 3529.29 0.30 0.18 0.28 -1 -1 0.30 0.0685894 0.0623453 100 3 156 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 8.83 vpr 63.82 MiB 0.05 7324 -1 -1 1 0.03 -1 -1 30484 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65352 30 32 371 295 1 227 81 17 17 289 -1 unnamed_device 24.8 MiB 1.10 927 13731 4656 6820 2255 63.8 MiB 0.17 0.00 3.66815 -122.398 -3.66815 3.66815 0.99 0.00118544 0.00110243 0.095287 0.0886927 40 3101 50 6.99608e+06 279598 706193. 2443.58 4.01 0.405416 0.367325 26914 176310 -1 2588 20 1993 2842 290848 63043 3.81191 3.81191 -133.286 -3.81191 0 0 926341. 3205.33 0.27 0.14 0.28 -1 -1 0.27 0.0482029 0.0437755 101 59 60 30 56 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 7.61 vpr 63.34 MiB 0.04 7108 -1 -1 1 0.03 -1 -1 30596 -1 -1 15 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 27 32 269 226 1 154 74 17 17 289 -1 unnamed_device 24.4 MiB 1.00 541 9684 4030 4997 657 63.3 MiB 0.10 0.00 3.64725 -107.533 -3.64725 3.64725 0.99 0.000892954 0.000828893 0.0585201 0.0543652 38 1877 49 6.99608e+06 220735 678818. 2348.85 3.08 0.261093 0.2351 26626 170182 -1 1344 23 1444 1962 162279 39369 3.53546 3.53546 -113.613 -3.53546 0 0 902133. 3121.57 0.26 0.10 0.24 -1 -1 0.26 0.0409036 0.0368107 69 34 54 27 27 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 8.83 vpr 64.34 MiB 0.06 7496 -1 -1 1 0.04 -1 -1 30604 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65880 32 32 493 378 1 313 85 17 17 289 -1 unnamed_device 25.7 MiB 0.96 1463 16639 6243 8235 2161 64.3 MiB 0.26 0.00 4.50929 -160.164 -4.50929 4.50929 0.98 0.00153223 0.001426 0.141847 0.132057 50 4157 28 6.99608e+06 309029 902133. 3121.57 3.83 0.481036 0.437296 28642 213929 -1 3423 22 2928 4099 444602 87947 4.53081 4.53081 -167.95 -4.53081 0 0 1.08113e+06 3740.92 0.31 0.20 0.32 -1 -1 0.31 0.0666748 0.060548 141 95 62 31 95 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 14.14 vpr 63.71 MiB 0.04 7448 -1 -1 1 0.03 -1 -1 30556 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65240 31 32 455 371 1 302 85 17 17 289 -1 unnamed_device 25.2 MiB 2.99 1356 9013 2876 4534 1603 63.7 MiB 0.13 0.00 4.69386 -166.35 -4.69386 4.69386 0.98 0.00136725 0.00127 0.0702516 0.0652427 46 3528 24 6.99608e+06 323745 828058. 2865.25 7.36 0.60195 0.541678 28066 200906 -1 2752 23 2504 2829 253637 51113 4.64734 4.64734 -169.025 -4.64734 0 0 1.01997e+06 3529.29 0.30 0.15 0.30 -1 -1 0.30 0.0616495 0.0558156 138 124 0 0 124 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 8.24 vpr 64.02 MiB 0.04 7156 -1 -1 1 0.03 -1 -1 30548 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65556 32 32 355 304 1 233 79 17 17 289 -1 unnamed_device 25.0 MiB 1.66 1000 11233 4051 5131 2051 64.0 MiB 0.14 0.00 3.87353 -139.155 -3.87353 3.87353 0.98 0.00109674 0.00101659 0.0763635 0.0708357 44 2952 36 6.99608e+06 220735 787024. 2723.27 2.90 0.281348 0.254272 27778 195446 -1 2250 23 1554 1817 157109 32936 3.9986 3.9986 -149.894 -3.9986 0 0 997811. 3452.63 0.29 0.11 0.29 -1 -1 0.29 0.0496744 0.0449227 102 89 0 0 89 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 7.46 vpr 63.57 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30548 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 32 32 364 282 1 217 80 17 17 289 -1 unnamed_device 24.6 MiB 0.68 1169 12636 4456 6200 1980 63.6 MiB 0.16 0.00 3.79315 -142.637 -3.79315 3.79315 0.98 0.00118904 0.00110563 0.0900589 0.0837394 46 2924 31 6.99608e+06 235451 828058. 2865.25 3.01 0.359949 0.326786 28066 200906 -1 2431 21 1764 2368 212060 42392 3.82071 3.82071 -148.651 -3.82071 0 0 1.01997e+06 3529.29 0.30 0.12 0.30 -1 -1 0.30 0.0500529 0.0454155 92 34 90 30 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 11.30 vpr 64.08 MiB 0.04 7412 -1 -1 1 0.03 -1 -1 30624 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65616 31 32 443 336 1 261 83 17 17 289 -1 unnamed_device 25.0 MiB 1.56 1049 15023 6383 8122 518 64.1 MiB 0.21 0.00 3.84635 -136.528 -3.84635 3.84635 1.00 0.00140482 0.00130784 0.1214 0.113012 44 3363 47 6.99608e+06 294314 787024. 2723.27 5.87 0.621266 0.561715 27778 195446 -1 2470 25 2663 3532 252070 56418 4.49241 4.49241 -152.899 -4.49241 0 0 997811. 3452.63 0.29 0.15 0.29 -1 -1 0.29 0.068065 0.0616848 117 64 87 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 11.43 vpr 63.79 MiB 0.03 7244 -1 -1 1 0.03 -1 -1 30368 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65320 30 32 373 297 1 228 82 17 17 289 -1 unnamed_device 24.8 MiB 1.27 1036 13788 5638 6916 1234 63.8 MiB 0.17 0.00 3.57859 -121.08 -3.57859 3.57859 0.98 0.00117916 0.00109551 0.0947375 0.0880747 44 3452 49 6.99608e+06 294314 787024. 2723.27 6.52 0.542645 0.490341 27778 195446 -1 2450 24 1788 2551 224017 46811 3.54511 3.54511 -131.933 -3.54511 0 0 997811. 3452.63 0.30 0.13 0.29 -1 -1 0.30 0.0556261 0.0503766 101 61 58 30 58 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 10.39 vpr 63.89 MiB 0.07 7272 -1 -1 1 0.05 -1 -1 30544 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65420 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 25.0 MiB 0.59 1035 13906 5211 6648 2047 63.9 MiB 0.19 0.00 4.17744 -150.853 -4.17744 4.17744 0.98 0.00129085 0.00119972 0.105855 0.0983855 46 3521 34 6.99608e+06 250167 828058. 2865.25 5.92 0.406836 0.369215 28066 200906 -1 2410 30 2914 3619 315488 80518 4.17865 4.17865 -152.081 -4.17865 0 0 1.01997e+06 3529.29 0.30 0.18 0.30 -1 -1 0.30 0.0734357 0.066434 107 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 7.75 vpr 63.91 MiB 0.04 7372 -1 -1 1 0.03 -1 -1 30508 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65444 32 32 405 318 1 253 82 17 17 289 -1 unnamed_device 25.0 MiB 0.73 1310 11830 3448 6949 1433 63.9 MiB 0.16 0.00 3.36804 -132.941 -3.36804 3.36804 0.98 0.00128126 0.00119199 0.0892669 0.0830558 44 3393 26 6.99608e+06 264882 787024. 2723.27 3.15 0.354941 0.321881 27778 195446 -1 2872 32 2633 3445 524147 180800 3.33851 3.33851 -141.124 -3.33851 0 0 997811. 3452.63 0.29 0.25 0.29 -1 -1 0.29 0.0768976 0.0695879 108 65 63 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 7.77 vpr 63.38 MiB 0.04 7092 -1 -1 1 0.03 -1 -1 30460 -1 -1 14 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64900 29 32 287 238 1 172 75 17 17 289 -1 unnamed_device 24.6 MiB 1.63 717 7817 3163 4313 341 63.4 MiB 0.09 0.00 3.32814 -114.16 -3.32814 3.32814 0.98 0.000955741 0.00088751 0.0497552 0.046248 34 2461 34 6.99608e+06 206020 618332. 2139.56 2.68 0.230907 0.207982 25762 151098 -1 1759 23 1753 2246 189651 40195 3.49707 3.49707 -122.509 -3.49707 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0433199 0.0390827 73 34 58 29 29 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 18.81 vpr 63.71 MiB 0.04 7064 -1 -1 1 0.05 -1 -1 30132 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65236 32 32 334 290 1 207 78 17 17 289 -1 unnamed_device 24.8 MiB 1.33 775 9540 3855 5429 256 63.7 MiB 0.12 0.00 3.76953 -126.145 -3.76953 3.76953 0.98 0.00104451 0.000969423 0.0635131 0.058954 44 2814 40 6.99608e+06 206020 787024. 2723.27 13.79 0.536128 0.480464 27778 195446 -1 1869 23 1776 2081 198020 44240 3.69876 3.69876 -130.312 -3.69876 0 0 997811. 3452.63 0.29 0.12 0.29 -1 -1 0.29 0.0474487 0.0428259 92 82 0 0 82 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 9.50 vpr 63.88 MiB 0.05 7236 -1 -1 1 0.03 -1 -1 30492 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65412 31 32 365 281 1 217 80 17 17 289 -1 unnamed_device 24.9 MiB 0.66 1165 8336 2649 4367 1320 63.9 MiB 0.11 0.00 3.85324 -142.791 -3.85324 3.85324 0.99 0.00119046 0.0011059 0.0603823 0.0561329 44 3064 21 6.99608e+06 250167 787024. 2723.27 5.17 0.441445 0.398505 27778 195446 -1 2411 22 2128 2940 249685 49395 4.17942 4.17942 -160.618 -4.17942 0 0 997811. 3452.63 0.29 0.13 0.29 -1 -1 0.29 0.0522019 0.0473433 92 34 93 31 31 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 10.57 vpr 63.37 MiB 0.05 7180 -1 -1 1 0.05 -1 -1 30416 -1 -1 16 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 29 32 297 254 1 191 77 17 17 289 -1 unnamed_device 24.4 MiB 2.20 702 10020 4191 5344 485 63.4 MiB 0.11 0.00 3.21559 -105.308 -3.21559 3.21559 0.98 0.000960119 0.000888105 0.0617581 0.0573822 44 2230 35 6.99608e+06 235451 787024. 2723.27 4.73 0.387548 0.347987 27778 195446 -1 1631 20 1295 1451 120129 27266 3.33266 3.33266 -113.439 -3.33266 0 0 997811. 3452.63 0.30 0.09 0.29 -1 -1 0.30 0.0386783 0.0349162 81 56 29 29 52 26 -fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 19.11 vpr 63.53 MiB 0.03 7032 -1 -1 1 0.04 -1 -1 30412 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65052 32 32 314 256 1 188 77 17 17 289 -1 unnamed_device 24.7 MiB 0.70 805 12628 5356 6957 315 63.5 MiB 0.16 0.00 3.56959 -132.322 -3.56959 3.56959 0.93 0.00112305 0.00105223 0.0878348 0.0820228 40 2423 42 6.99608e+06 191304 706193. 2443.58 14.81 0.582819 0.524562 26914 176310 -1 2141 22 1897 2360 282046 75179 3.48281 3.48281 -142.633 -3.48281 0 0 926341. 3205.33 0.27 0.14 0.26 -1 -1 0.27 0.0451958 0.0408454 79 34 64 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 12.38 vpr 63.87 MiB 0.05 7424 -1 -1 1 0.03 -1 -1 30412 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65400 31 32 387 307 1 239 81 17 17 289 -1 unnamed_device 24.8 MiB 1.15 913 13381 5622 7065 694 63.9 MiB 0.17 0.00 4.07038 -142.271 -4.07038 4.07038 0.99 0.00124129 0.00114466 0.097701 0.0908508 62 2282 22 6.99608e+06 264882 1.05005e+06 3633.38 7.29 0.544787 0.492219 30946 263737 -1 1852 20 1918 2559 171302 40197 3.79825 3.79825 -137.974 -3.79825 0 0 1.30136e+06 4502.97 0.38 0.11 0.42 -1 -1 0.38 0.0493117 0.0449352 105 64 58 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 18.84 vpr 63.29 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 30416 -1 -1 13 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 31 32 308 262 1 193 76 17 17 289 -1 unnamed_device 24.4 MiB 2.27 793 12236 4782 5589 1865 63.3 MiB 0.14 0.00 3.3327 -113.287 -3.3327 3.3327 1.01 0.000990615 0.000919476 0.0787627 0.0731753 40 2206 23 6.99608e+06 191304 706193. 2443.58 12.98 0.441093 0.395914 26914 176310 -1 2007 20 1305 1639 185509 37968 3.17071 3.17071 -118.792 -3.17071 0 0 926341. 3205.33 0.27 0.10 0.21 -1 -1 0.27 0.0399189 0.0360353 82 55 31 31 53 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 25.85 vpr 63.82 MiB 0.04 7280 -1 -1 1 0.03 -1 -1 30488 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65352 32 32 383 307 1 232 82 17 17 289 -1 unnamed_device 24.7 MiB 1.58 886 14678 6217 7844 617 63.8 MiB 0.18 0.00 3.48779 -124.494 -3.48779 3.48779 0.99 0.00122336 0.00113196 0.103586 0.0962505 48 2635 33 6.99608e+06 264882 865456. 2994.66 20.49 0.670225 0.604061 28354 207349 -1 2102 21 1811 2534 226609 52721 3.35086 3.35086 -125.619 -3.35086 0 0 1.05005e+06 3633.38 0.31 0.13 0.31 -1 -1 0.31 0.0510184 0.0462891 103 65 52 26 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 10.57 vpr 64.25 MiB 0.05 7372 -1 -1 1 0.03 -1 -1 30356 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65788 31 32 422 339 1 272 85 17 17 289 -1 unnamed_device 25.3 MiB 0.93 1136 16081 5903 7938 2240 64.2 MiB 0.21 0.00 4.59961 -156.224 -4.59961 4.59961 0.98 0.0013033 0.00121041 0.116482 0.108209 46 3446 23 6.99608e+06 323745 828058. 2865.25 5.82 0.523537 0.472392 28066 200906 -1 2674 22 2612 3589 291846 60445 4.38304 4.38304 -158.813 -4.38304 0 0 1.01997e+06 3529.29 0.30 0.15 0.29 -1 -1 0.30 0.0567289 0.0514679 123 93 31 31 92 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 12.26 vpr 63.59 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30444 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65120 32 32 333 279 1 208 79 17 17 289 -1 unnamed_device 24.7 MiB 1.69 1137 10050 3205 5445 1400 63.6 MiB 0.12 0.00 3.15669 -124.76 -3.15669 3.15669 0.99 0.00105954 0.000982996 0.064933 0.0602341 38 3112 46 6.99608e+06 220735 678818. 2348.85 6.89 0.338263 0.304946 26626 170182 -1 2424 23 1902 2790 221325 48440 3.22466 3.22466 -127.608 -3.22466 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0478283 0.0431728 88 61 32 32 60 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 8.19 vpr 63.55 MiB 0.04 7104 -1 -1 1 0.03 -1 -1 30156 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 339 283 1 212 78 17 17 289 -1 unnamed_device 24.6 MiB 0.73 820 13856 4964 6926 1966 63.5 MiB 0.16 0.00 3.30794 -122.442 -3.30794 3.30794 0.99 0.00108356 0.00100641 0.0937418 0.0870107 46 2378 42 6.99608e+06 206020 828058. 2865.25 3.71 0.357168 0.322763 28066 200906 -1 1864 27 1896 2394 249024 73856 3.56611 3.56611 -129.525 -3.56611 0 0 1.01997e+06 3529.29 0.30 0.15 0.30 -1 -1 0.30 0.055426 0.049996 91 63 32 32 62 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 7.36 vpr 64.00 MiB 0.05 7136 -1 -1 1 0.04 -1 -1 30724 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65540 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 24.9 MiB 0.90 1239 11118 3581 5407 2130 64.0 MiB 0.16 0.00 3.83715 -144.315 -3.83715 3.83715 0.98 0.00128387 0.00119459 0.0857982 0.0800016 44 2986 36 6.99608e+06 264882 787024. 2723.27 2.68 0.327795 0.297548 27778 195446 -1 2356 24 2202 2651 177211 38689 4.23262 4.23262 -161.679 -4.23262 0 0 997811. 3452.63 0.30 0.12 0.29 -1 -1 0.30 0.0592052 0.0536768 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 10.73 vpr 63.85 MiB 0.04 7140 -1 -1 1 0.03 -1 -1 30500 -1 -1 21 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65380 29 32 367 293 1 222 82 17 17 289 -1 unnamed_device 24.8 MiB 1.53 912 9160 3705 5067 388 63.8 MiB 0.14 0.00 3.41124 -117.288 -3.41124 3.41124 0.99 0.00117099 0.00108837 0.0692587 0.0645264 38 3131 30 6.99608e+06 309029 678818. 2348.85 5.61 0.33561 0.303601 26626 170182 -1 2437 25 2136 2811 246062 52450 3.51187 3.51187 -127.239 -3.51187 0 0 902133. 3121.57 0.26 0.14 0.24 -1 -1 0.26 0.0565102 0.0511017 101 62 56 29 58 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 10.22 vpr 63.92 MiB 0.03 7392 -1 -1 1 0.03 -1 -1 30768 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65456 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 25.3 MiB 0.88 1399 13316 4006 7788 1522 63.9 MiB 0.19 0.00 4.54237 -164.626 -4.54237 4.54237 0.99 0.00136151 0.00126395 0.103933 0.0965818 44 3828 33 6.99608e+06 323745 787024. 2723.27 5.55 0.595001 0.537084 27778 195446 -1 3099 23 3153 3792 325892 66383 4.92794 4.92794 -184.588 -4.92794 0 0 997811. 3452.63 0.30 0.17 0.29 -1 -1 0.30 0.0638443 0.0577992 140 127 0 0 128 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 9.24 vpr 62.91 MiB 0.04 7164 -1 -1 1 0.03 -1 -1 30292 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 31 32 259 212 1 144 74 17 17 289 -1 unnamed_device 24.3 MiB 0.86 514 10149 4253 5499 397 62.9 MiB 0.11 0.00 2.85721 -96.25 -2.85721 2.85721 0.98 0.000901225 0.000836966 0.0615519 0.0571831 50 1538 19 6.99608e+06 161872 902133. 3121.57 4.90 0.349763 0.314371 28642 213929 -1 1266 21 1014 1538 128686 34394 3.16607 3.16607 -108.714 -3.16607 0 0 1.08113e+06 3740.92 0.30 0.09 0.17 -1 -1 0.30 0.0378887 0.0341998 58 4 85 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 8.48 vpr 63.90 MiB 0.03 7296 -1 -1 1 0.03 -1 -1 30336 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65436 32 32 418 338 1 263 83 17 17 289 -1 unnamed_device 24.9 MiB 1.65 1197 12863 4931 5522 2410 63.9 MiB 0.17 0.00 4.80843 -163.702 -4.80843 4.80843 1.01 0.00141922 0.00133255 0.0971559 0.0903611 44 3624 28 6.99608e+06 279598 787024. 2723.27 3.03 0.35453 0.321909 27778 195446 -1 2581 22 2437 3121 244354 52294 5.2881 5.2881 -178.859 -5.2881 0 0 997811. 3452.63 0.29 0.14 0.29 -1 -1 0.29 0.0560731 0.0509236 119 92 28 28 92 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 8.02 vpr 63.96 MiB 0.03 7188 -1 -1 1 0.03 -1 -1 30124 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65496 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 25.1 MiB 0.84 1197 13324 4707 7364 1253 64.0 MiB 0.16 0.00 4.41342 -162.024 -4.41342 4.41342 0.98 0.00116191 0.00107961 0.0936568 0.086984 44 3277 26 6.99608e+06 235451 787024. 2723.27 3.47 0.349502 0.316528 27778 195446 -1 2656 23 3057 3860 398409 77530 4.54309 4.54309 -171.488 -4.54309 0 0 997811. 3452.63 0.30 0.17 0.29 -1 -1 0.30 0.0524545 0.0474561 110 96 0 0 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 10.28 vpr 63.85 MiB 0.05 7260 -1 -1 1 0.04 -1 -1 30448 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65380 32 32 401 316 1 247 83 17 17 289 -1 unnamed_device 24.7 MiB 0.87 1122 13403 4777 5917 2709 63.8 MiB 0.18 0.00 3.33684 -128.047 -3.33684 3.33684 0.98 0.00126346 0.001175 0.098271 0.0913137 48 2809 27 6.99608e+06 279598 865456. 2994.66 5.66 0.574288 0.518819 28354 207349 -1 2454 20 2058 2679 207108 43113 3.46381 3.46381 -137.519 -3.46381 0 0 1.05005e+06 3633.38 0.31 0.12 0.31 -1 -1 0.31 0.0513289 0.0466083 106 65 61 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 10.80 vpr 64.14 MiB 0.05 7468 -1 -1 1 0.03 -1 -1 30800 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65684 32 32 500 382 1 312 86 17 17 289 -1 unnamed_device 25.5 MiB 0.89 1505 15584 4795 8564 2225 64.1 MiB 0.22 0.00 4.92348 -178.984 -4.92348 4.92348 0.98 0.0015459 0.00143843 0.131846 0.122745 42 4337 43 6.99608e+06 323745 744469. 2576.02 5.99 0.688237 0.622629 27202 183097 -1 3379 24 3229 3715 373430 73695 5.2394 5.2394 -197.176 -5.2394 0 0 949917. 3286.91 0.28 0.19 0.27 -1 -1 0.28 0.0722591 0.0655551 140 96 64 32 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 9.26 vpr 62.96 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30216 -1 -1 13 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 30 32 246 229 1 154 75 17 17 289 -1 unnamed_device 24.3 MiB 1.41 575 8449 3504 4687 258 63.0 MiB 0.08 0.00 2.79195 -95.9589 -2.79195 2.79195 0.98 0.000803404 0.000744419 0.0453023 0.0419922 38 1829 20 6.99608e+06 191304 678818. 2348.85 4.34 0.277789 0.247796 26626 170182 -1 1426 31 955 974 152747 55620 2.42362 2.42362 -91.7739 -2.42362 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0462116 0.0412469 65 56 0 0 53 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 11.00 vpr 63.63 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30396 -1 -1 14 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65160 30 32 296 244 1 166 76 17 17 289 -1 unnamed_device 24.9 MiB 2.84 812 8236 3162 3930 1144 63.6 MiB 0.10 0.00 3.41559 -120.975 -3.41559 3.41559 0.98 0.000986291 0.000916994 0.0531706 0.0494322 36 2215 24 6.99608e+06 206020 648988. 2245.63 4.61 0.358274 0.322326 26050 158493 -1 1838 23 1615 2353 245331 47076 3.24592 3.24592 -128.469 -3.24592 0 0 828058. 2865.25 0.25 0.12 0.23 -1 -1 0.25 0.045327 0.040955 71 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 12.16 vpr 63.50 MiB 0.04 7148 -1 -1 1 0.03 -1 -1 30112 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 314 256 1 192 76 17 17 289 -1 unnamed_device 24.7 MiB 0.33 719 10316 3884 5163 1269 63.5 MiB 0.13 0.00 3.36114 -127.044 -3.36114 3.36114 0.98 0.00103563 0.000962011 0.0691287 0.0642453 56 2048 26 6.99608e+06 176588 973134. 3367.25 8.09 0.454181 0.408743 29794 239141 -1 1782 19 1748 2723 235475 53208 3.35381 3.35381 -133.698 -3.35381 0 0 1.19926e+06 4149.71 0.35 0.12 0.37 -1 -1 0.35 0.0401431 0.0363492 80 34 64 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 6.89 vpr 63.17 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30396 -1 -1 18 25 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 25 32 251 214 1 151 75 17 17 289 -1 unnamed_device 24.2 MiB 0.84 495 10819 4262 4978 1579 63.2 MiB 0.11 0.00 3.27465 -89.1389 -3.27465 3.27465 0.98 0.000839835 0.000780668 0.0593667 0.0551617 38 1677 29 6.99608e+06 264882 678818. 2348.85 2.60 0.245242 0.220386 26626 170182 -1 1301 17 961 1236 87175 20491 3.24827 3.24827 -100.814 -3.24827 0 0 902133. 3121.57 0.26 0.07 0.25 -1 -1 0.26 0.0299988 0.027027 67 34 50 25 25 25 -fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 10.82 vpr 63.76 MiB 0.03 7216 -1 -1 1 0.03 -1 -1 30556 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65288 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 25.0 MiB 0.72 1340 16005 6763 8808 434 63.8 MiB 0.21 0.00 3.73195 -141.272 -3.73195 3.73195 0.99 0.00132364 0.00123004 0.120113 0.111682 48 3725 24 6.99608e+06 294314 865456. 2994.66 6.25 0.553452 0.500386 28354 207349 -1 3121 23 2954 4246 364964 73955 3.88482 3.88482 -150.64 -3.88482 0 0 1.05005e+06 3633.38 0.31 0.17 0.32 -1 -1 0.31 0.0602901 0.0546039 127 94 32 32 94 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 7.82 vpr 64.07 MiB 0.03 7256 -1 -1 1 0.03 -1 -1 30364 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65608 31 32 421 339 1 270 85 17 17 289 -1 unnamed_device 25.1 MiB 0.96 1059 13477 4799 6867 1811 64.1 MiB 0.18 0.00 4.24008 -145.447 -4.24008 4.24008 0.99 0.00128966 0.0011958 0.0978037 0.0908755 44 3376 42 6.99608e+06 323745 787024. 2723.27 3.06 0.376617 0.341439 27778 195446 -1 2413 23 2660 3570 286708 61570 4.1599 4.1599 -150.002 -4.1599 0 0 997811. 3452.63 0.30 0.15 0.29 -1 -1 0.30 0.059241 0.053727 121 94 29 29 93 31 -fixed_k6_frac_N8_22nm.xml mult_001.v common 22.55 vpr 63.51 MiB 0.05 6880 -1 -1 14 0.26 -1 -1 32892 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65032 32 32 280 312 1 209 83 17 17 289 -1 unnamed_device 24.5 MiB 2.05 1259 12503 3522 6847 2134 63.5 MiB 0.18 0.00 8.52371 -172.994 -8.52371 8.52371 0.98 0.00150933 0.00139941 0.111996 0.104022 38 3278 28 6.79088e+06 255968 678818. 2348.85 16.64 0.790541 0.715183 25966 169698 -1 2720 19 1268 3428 190355 41725 7.30396 7.30396 -164.862 -7.30396 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0608952 0.055534 134 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_002.v common 9.18 vpr 63.32 MiB 0.03 7128 -1 -1 14 0.28 -1 -1 32924 -1 -1 22 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 30 32 277 309 1 212 84 17 17 289 -1 unnamed_device 24.3 MiB 1.36 1185 7770 1967 4869 934 63.3 MiB 0.12 0.00 8.32669 -166.781 -8.32669 8.32669 0.98 0.00152296 0.00141545 0.0693837 0.0644824 38 3350 47 6.79088e+06 296384 678818. 2348.85 4.01 0.463557 0.419765 25966 169698 -1 2617 17 1283 3522 187473 41658 7.62603 7.62603 -161.662 -7.62603 0 0 902133. 3121.57 0.28 0.12 0.24 -1 -1 0.28 0.0558468 0.0509494 131 189 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_003.v common 11.57 vpr 63.20 MiB 0.05 6908 -1 -1 11 0.23 -1 -1 32736 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 274 306 1 201 84 17 17 289 -1 unnamed_device 24.2 MiB 1.83 1162 9234 2657 4676 1901 63.2 MiB 0.14 0.00 6.64553 -144.864 -6.64553 6.64553 0.98 0.00153034 0.00142157 0.0821041 0.0763358 44 3205 26 6.79088e+06 269440 787024. 2723.27 5.82 0.557466 0.504129 27118 194962 -1 2588 17 1333 3942 200823 47344 5.78735 5.78735 -138.636 -5.78735 0 0 997811. 3452.63 0.29 0.12 0.29 -1 -1 0.29 0.0559974 0.0511497 134 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_004.v common 7.85 vpr 63.14 MiB 0.05 6980 -1 -1 12 0.33 -1 -1 32780 -1 -1 22 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 29 32 269 301 1 190 83 17 17 289 -1 unnamed_device 24.0 MiB 1.30 1052 7823 1903 4660 1260 63.1 MiB 0.12 0.00 7.35214 -141.259 -7.35214 7.35214 0.99 0.00154526 0.00143751 0.0730758 0.0678544 36 3305 22 6.79088e+06 296384 648988. 2245.63 2.63 0.327211 0.296908 25390 158009 -1 2579 21 1320 4172 234382 52889 6.71838 6.71838 -139.593 -6.71838 0 0 828058. 2865.25 0.25 0.14 0.23 -1 -1 0.25 0.0655354 0.0595944 136 184 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_005.v common 8.55 vpr 63.59 MiB 0.05 6760 -1 -1 13 0.30 -1 -1 32980 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65116 32 32 317 349 1 254 88 17 17 289 -1 unnamed_device 24.7 MiB 2.06 1363 10813 2441 7327 1045 63.6 MiB 0.17 0.00 7.99767 -164.707 -7.99767 7.99767 0.98 0.00179505 0.00166902 0.104731 0.0974449 38 3934 20 6.79088e+06 323328 678818. 2348.85 2.50 0.408348 0.371853 25966 169698 -1 3011 22 1766 4774 250477 55753 7.04976 7.04976 -157.102 -7.04976 0 0 902133. 3121.57 0.27 0.17 0.25 -1 -1 0.27 0.0804018 0.0732898 159 223 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_006.v common 8.95 vpr 63.33 MiB 0.04 6860 -1 -1 12 0.27 -1 -1 32644 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 299 331 1 227 88 17 17 289 -1 unnamed_device 24.4 MiB 2.46 1549 8083 2094 5260 729 63.3 MiB 0.12 0.00 7.66842 -163.175 -7.66842 7.66842 0.99 0.00163559 0.00151896 0.0726358 0.0674374 38 3850 24 6.79088e+06 323328 678818. 2348.85 2.64 0.349244 0.316926 25966 169698 -1 3181 17 1616 4754 258273 55792 6.59546 6.59546 -153.004 -6.59546 0 0 902133. 3121.57 0.26 0.14 0.24 -1 -1 0.26 0.0595641 0.0545318 150 205 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_007.v common 10.76 vpr 62.78 MiB 0.04 6816 -1 -1 12 0.18 -1 -1 32284 -1 -1 20 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 27 32 210 242 1 166 79 17 17 289 -1 unnamed_device 24.0 MiB 1.39 891 7008 1614 4986 408 62.8 MiB 0.09 0.00 6.92259 -128.472 -6.92259 6.92259 0.98 0.00112748 0.00104453 0.0516005 0.0479196 36 3003 50 6.79088e+06 269440 648988. 2245.63 5.80 0.364807 0.329801 25390 158009 -1 2366 16 1111 2994 182692 39799 5.95423 5.95423 -125.13 -5.95423 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0402622 0.0367111 100 131 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_008.v common 11.55 vpr 63.05 MiB 0.05 6964 -1 -1 11 0.18 -1 -1 32736 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 31 32 264 296 1 191 79 17 17 289 -1 unnamed_device 24.1 MiB 1.40 1048 6501 1621 4615 265 63.1 MiB 0.11 0.00 6.73073 -140.451 -6.73073 6.73073 0.98 0.00143184 0.00133058 0.0599505 0.0557423 38 3181 50 6.79088e+06 215552 678818. 2348.85 6.40 0.431961 0.389903 25966 169698 -1 2614 18 1278 3583 221292 47394 5.94304 5.94304 -136.278 -5.94304 0 0 902133. 3121.57 0.26 0.13 0.24 -1 -1 0.26 0.0551354 0.0502517 113 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_009.v common 11.49 vpr 62.91 MiB 0.03 6700 -1 -1 12 0.17 -1 -1 32436 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 31 32 234 266 1 191 81 17 17 289 -1 unnamed_device 24.1 MiB 2.66 1069 9881 3201 5129 1551 62.9 MiB 0.13 0.00 6.55603 -138.983 -6.55603 6.55603 0.98 0.00125504 0.0011644 0.0748878 0.069448 38 2894 23 6.79088e+06 242496 678818. 2348.85 5.14 0.534618 0.48317 25966 169698 -1 2390 16 1075 2453 150732 33088 5.62523 5.62523 -133.585 -5.62523 0 0 902133. 3121.57 0.26 0.10 0.24 -1 -1 0.26 0.0453004 0.0414574 111 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_010.v common 11.03 vpr 62.98 MiB 0.07 6688 -1 -1 13 0.19 -1 -1 32780 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 253 285 1 179 79 17 17 289 -1 unnamed_device 24.1 MiB 1.26 1133 8022 2176 4612 1234 63.0 MiB 0.11 0.00 7.34973 -166.511 -7.34973 7.34973 1.05 0.00136007 0.00126319 0.0684408 0.0635921 34 3342 45 6.79088e+06 202080 618332. 2139.56 5.91 0.418958 0.378606 25102 150614 -1 2739 26 1199 3113 309925 108089 6.25527 6.25527 -158.874 -6.25527 0 0 787024. 2723.27 0.24 0.18 0.22 -1 -1 0.24 0.0695489 0.0630788 106 159 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_011.v common 8.45 vpr 62.78 MiB 0.05 6704 -1 -1 12 0.17 -1 -1 32660 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 30 32 217 249 1 156 77 17 17 289 -1 unnamed_device 23.8 MiB 1.67 755 12465 4696 5677 2092 62.8 MiB 0.15 0.00 7.40292 -146.389 -7.40292 7.40292 0.98 0.00115916 0.00107392 0.0932809 0.0863578 36 2532 44 6.79088e+06 202080 648988. 2245.63 3.11 0.361247 0.32701 25390 158009 -1 1843 14 938 2417 141576 35068 6.33367 6.33367 -138.888 -6.33367 0 0 828058. 2865.25 0.24 0.09 0.23 -1 -1 0.24 0.036383 0.0331906 94 129 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_012.v common 8.15 vpr 62.77 MiB 0.04 6676 -1 -1 12 0.21 -1 -1 32816 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 227 259 1 169 80 17 17 289 -1 unnamed_device 23.8 MiB 1.50 1007 10744 3628 5580 1536 62.8 MiB 0.13 0.00 6.58409 -154.656 -6.58409 6.58409 0.98 0.00119003 0.00109481 0.0771085 0.0713561 40 2417 29 6.79088e+06 215552 706193. 2443.58 2.92 0.343147 0.310244 26254 175826 -1 2278 17 983 2520 160446 35786 5.9396 5.9396 -152.019 -5.9396 0 0 926341. 3205.33 0.27 0.10 0.25 -1 -1 0.27 0.0428083 0.0389729 92 133 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_013.v common 11.54 vpr 63.18 MiB 0.03 6920 -1 -1 13 0.26 -1 -1 32992 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 306 338 1 223 84 17 17 289 -1 unnamed_device 24.3 MiB 1.42 1319 6306 1320 4344 642 63.2 MiB 0.11 0.00 7.99515 -167.704 -7.99515 7.99515 0.98 0.00168937 0.00156926 0.0633389 0.0588334 36 3719 41 6.79088e+06 269440 648988. 2245.63 6.36 0.482722 0.437043 25390 158009 -1 2968 18 1317 3657 222638 49561 6.83836 6.83836 -160.027 -6.83836 0 0 828058. 2865.25 0.25 0.13 0.23 -1 -1 0.25 0.0642168 0.0586376 146 212 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_014.v common 8.23 vpr 63.17 MiB 0.04 6868 -1 -1 14 0.30 -1 -1 33124 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 32 32 302 334 1 225 85 17 17 289 -1 unnamed_device 24.3 MiB 1.72 1310 10315 2634 5767 1914 63.2 MiB 0.16 0.00 9.08665 -181.887 -9.08665 9.08665 0.97 0.00171467 0.00159485 0.0977872 0.0908818 38 3358 50 6.79088e+06 282912 678818. 2348.85 2.52 0.449069 0.408064 25966 169698 -1 2822 26 1370 3708 315204 115909 7.93045 7.93045 -171.746 -7.93045 0 0 902133. 3121.57 0.28 0.19 0.24 -1 -1 0.28 0.0868261 0.0790816 149 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_015.v common 16.33 vpr 62.93 MiB 0.04 6928 -1 -1 11 0.17 -1 -1 32536 -1 -1 20 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64436 29 32 238 270 1 179 81 17 17 289 -1 unnamed_device 24.1 MiB 1.18 1021 12156 3295 7057 1804 62.9 MiB 0.15 0.00 7.03294 -137.697 -7.03294 7.03294 0.98 0.00125618 0.00116511 0.0910184 0.0843675 28 3349 46 6.79088e+06 269440 531479. 1839.03 11.47 0.496205 0.448595 23950 126010 -1 2828 20 1424 3365 300070 75686 5.95068 5.95068 -136.607 -5.95068 0 0 648988. 2245.63 0.20 0.16 0.18 -1 -1 0.20 0.0581706 0.0532646 110 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_016.v common 10.10 vpr 63.38 MiB 0.04 7012 -1 -1 12 0.27 -1 -1 32852 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 306 338 1 235 84 17 17 289 -1 unnamed_device 24.4 MiB 2.09 1362 4476 730 3513 233 63.4 MiB 0.10 0.00 8.16506 -163.52 -8.16506 8.16506 0.99 0.00170669 0.00158746 0.0505168 0.0473162 44 3792 27 6.79088e+06 269440 787024. 2723.27 4.08 0.36692 0.333594 27118 194962 -1 3223 20 1589 4641 269161 58714 6.98366 6.98366 -153.983 -6.98366 0 0 997811. 3452.63 0.29 0.15 0.28 -1 -1 0.29 0.0712596 0.0651021 144 212 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_017.v common 9.80 vpr 63.43 MiB 0.04 7012 -1 -1 13 0.26 -1 -1 32748 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 32 32 311 343 1 224 85 17 17 289 -1 unnamed_device 24.5 MiB 1.26 1298 6781 1433 4660 688 63.4 MiB 0.11 0.00 8.52276 -172.733 -8.52276 8.52276 0.98 0.00172116 0.00159954 0.067829 0.0630558 38 3512 25 6.79088e+06 282912 678818. 2348.85 4.73 0.43759 0.396789 25966 169698 -1 2766 17 1316 3904 208361 46417 7.26465 7.26465 -161.383 -7.26465 0 0 902133. 3121.57 0.26 0.13 0.27 -1 -1 0.26 0.0624918 0.0571353 145 217 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_018.v common 11.21 vpr 62.72 MiB 0.06 6688 -1 -1 12 0.16 -1 -1 32412 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 230 262 1 175 79 17 17 289 -1 unnamed_device 24.2 MiB 2.05 1085 10050 2687 6415 948 62.7 MiB 0.13 0.00 6.98054 -167.591 -6.98054 6.98054 0.98 0.00125789 0.00116782 0.0778502 0.0722241 36 2968 32 6.79088e+06 202080 648988. 2245.63 5.52 0.373312 0.338264 25390 158009 -1 2408 14 880 2413 151176 32769 6.11878 6.11878 -156.629 -6.11878 0 0 828058. 2865.25 0.24 0.09 0.23 -1 -1 0.24 0.0392052 0.0358144 103 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_019.v common 10.36 vpr 62.27 MiB 0.03 6792 -1 -1 10 0.10 -1 -1 32100 -1 -1 13 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63764 30 32 176 208 1 137 75 17 17 289 -1 unnamed_device 23.7 MiB 2.19 617 10029 3756 5049 1224 62.3 MiB 0.10 0.00 4.90111 -115.952 -4.90111 4.90111 1.02 0.000897996 0.000832884 0.0597983 0.0554403 40 1753 20 6.79088e+06 175136 706193. 2443.58 4.64 0.309539 0.2784 26254 175826 -1 1643 15 819 1894 125275 29939 4.63261 4.63261 -118.372 -4.63261 0 0 926341. 3205.33 0.27 0.07 0.26 -1 -1 0.27 0.0294914 0.0267142 68 88 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_020.v common 8.05 vpr 62.90 MiB 0.04 6716 -1 -1 13 0.16 -1 -1 32668 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 31 32 226 258 1 169 79 17 17 289 -1 unnamed_device 24.1 MiB 1.90 894 8698 2042 6119 537 62.9 MiB 0.11 0.00 7.51507 -159.301 -7.51507 7.51507 0.98 0.00122624 0.00113878 0.0669362 0.0621368 36 2673 34 6.79088e+06 215552 648988. 2245.63 2.45 0.294174 0.266594 25390 158009 -1 2112 18 1000 2423 137501 31899 6.45897 6.45897 -150.544 -6.45897 0 0 828058. 2865.25 0.27 0.10 0.23 -1 -1 0.27 0.047805 0.0436957 98 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_021.v common 8.24 vpr 63.28 MiB 0.04 6800 -1 -1 13 0.30 -1 -1 32776 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 302 334 1 216 85 17 17 289 -1 unnamed_device 24.5 MiB 1.03 1191 6781 1467 4296 1018 63.3 MiB 0.11 0.00 7.58328 -158.293 -7.58328 7.58328 0.98 0.00165124 0.00153514 0.0652906 0.0606834 36 3982 39 6.79088e+06 282912 648988. 2245.63 3.34 0.416006 0.377229 25390 158009 -1 2942 21 1749 5172 312449 69176 6.53388 6.53388 -151.617 -6.53388 0 0 828058. 2865.25 0.25 0.17 0.23 -1 -1 0.25 0.0711815 0.0648259 142 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_022.v common 11.53 vpr 63.45 MiB 0.05 7036 -1 -1 13 0.28 -1 -1 33184 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 299 331 1 221 84 17 17 289 -1 unnamed_device 24.4 MiB 1.49 1314 6489 1394 4653 442 63.4 MiB 0.11 0.00 7.94947 -168.322 -7.94947 7.94947 0.99 0.00165971 0.00154212 0.0636737 0.0592118 42 3718 50 6.79088e+06 269440 744469. 2576.02 6.15 0.642854 0.581308 26542 182613 -1 2847 16 1303 3740 217011 48494 7.30922 7.30922 -163.182 -7.30922 0 0 949917. 3286.91 0.28 0.13 0.27 -1 -1 0.28 0.0572043 0.0523236 142 205 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_023.v common 8.92 vpr 61.96 MiB 0.04 6620 -1 -1 9 0.11 -1 -1 32080 -1 -1 16 26 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63448 26 32 149 181 1 119 74 17 17 289 -1 unnamed_device 23.4 MiB 1.88 668 5964 2208 3025 731 62.0 MiB 0.06 0.00 5.26474 -98.9706 -5.26474 5.26474 0.98 0.000777827 0.000719143 0.0321546 0.0298308 32 2045 37 6.79088e+06 215552 586450. 2029.24 3.66 0.250201 0.223334 24814 144142 -1 1710 25 676 1533 129471 28422 5.24684 5.24684 -103.006 -5.24684 0 0 744469. 2576.02 0.22 0.09 0.21 -1 -1 0.22 0.0377842 0.03393 65 73 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_024.v common 9.27 vpr 63.42 MiB 0.05 6812 -1 -1 13 0.30 -1 -1 32968 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 304 336 1 219 86 17 17 289 -1 unnamed_device 24.4 MiB 1.65 1268 8213 1986 5619 608 63.4 MiB 0.13 0.00 8.5143 -170.557 -8.5143 8.5143 0.99 0.00164537 0.00152913 0.0782982 0.0727066 36 3988 41 6.79088e+06 296384 648988. 2245.63 3.68 0.450588 0.408888 25390 158009 -1 3257 17 1587 4343 288858 62721 7.33967 7.33967 -164.8 -7.33967 0 0 828058. 2865.25 0.25 0.15 0.22 -1 -1 0.25 0.0602335 0.0549124 136 210 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_025.v common 6.94 vpr 62.33 MiB 0.04 6632 -1 -1 8 0.09 -1 -1 31052 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63828 32 32 155 187 1 127 82 17 17 289 -1 unnamed_device 23.6 MiB 2.23 670 7380 1620 5618 142 62.3 MiB 0.07 0.00 4.48934 -96.8721 -4.48934 4.48934 0.99 0.000782886 0.000724705 0.0347621 0.0321993 30 1888 22 6.79088e+06 242496 556674. 1926.21 1.35 0.135512 0.121826 24526 138013 -1 1502 17 625 1326 78065 18560 3.93104 3.93104 -98.6496 -3.93104 0 0 706193. 2443.58 0.22 0.06 0.19 -1 -1 0.22 0.0280055 0.0252394 64 61 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_026.v common 30.81 vpr 63.05 MiB 0.05 6872 -1 -1 15 0.26 -1 -1 33224 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 253 285 1 201 81 17 17 289 -1 unnamed_device 24.2 MiB 2.02 1232 7781 1881 4665 1235 63.1 MiB 0.12 0.00 8.77517 -179.005 -8.77517 8.77517 0.99 0.00140661 0.00130571 0.0667198 0.0620679 38 3221 29 6.79088e+06 229024 678818. 2348.85 24.90 0.666394 0.600536 25966 169698 -1 2626 20 1276 3730 190221 42306 7.62608 7.62608 -168.137 -7.62608 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0591122 0.0538277 119 159 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_027.v common 11.32 vpr 63.46 MiB 0.02 6808 -1 -1 12 0.25 -1 -1 32904 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64988 32 32 309 341 1 219 86 17 17 289 -1 unnamed_device 24.6 MiB 1.56 1237 8780 2137 5860 783 63.5 MiB 0.14 0.00 6.99167 -152.762 -6.99167 6.99167 0.98 0.00168236 0.00156222 0.0831416 0.07719 36 3644 25 6.79088e+06 296384 648988. 2245.63 5.94 0.464013 0.421056 25390 158009 -1 3034 17 1416 4276 243919 54484 6.04382 6.04382 -143.931 -6.04382 0 0 828058. 2865.25 0.25 0.14 0.23 -1 -1 0.25 0.0617474 0.0564537 145 215 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_028.v common 9.34 vpr 63.15 MiB 0.02 6800 -1 -1 13 0.27 -1 -1 32860 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64668 32 32 289 321 1 208 84 17 17 289 -1 unnamed_device 24.3 MiB 1.52 1199 7038 1664 4741 633 63.2 MiB 0.11 0.00 8.4695 -169.121 -8.4695 8.4695 0.98 0.00157592 0.00146561 0.0651862 0.0605972 38 3323 22 6.79088e+06 269440 678818. 2348.85 3.95 0.402076 0.364089 25966 169698 -1 2675 22 1357 3651 202020 45400 7.1594 7.1594 -159.021 -7.1594 0 0 902133. 3121.57 0.30 0.14 0.24 -1 -1 0.30 0.071945 0.0656389 136 195 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_029.v common 8.25 vpr 62.91 MiB 0.04 6664 -1 -1 12 0.17 -1 -1 32344 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 239 271 1 180 82 17 17 289 -1 unnamed_device 24.0 MiB 1.57 1028 10406 3334 5200 1872 62.9 MiB 0.14 0.00 6.75626 -149.177 -6.75626 6.75626 0.98 0.0012689 0.00117663 0.0780377 0.0723758 38 2689 25 6.79088e+06 242496 678818. 2348.85 2.99 0.355334 0.321814 25966 169698 -1 2219 16 1008 2677 149979 33347 5.94309 5.94309 -141.758 -5.94309 0 0 902133. 3121.57 0.26 0.10 0.24 -1 -1 0.26 0.0440949 0.0402338 106 145 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_030.v common 9.78 vpr 62.97 MiB 0.04 6608 -1 -1 11 0.15 -1 -1 32624 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 30 32 213 245 1 163 78 17 17 289 -1 unnamed_device 24.2 MiB 1.44 931 5722 1363 3955 404 63.0 MiB 0.07 0.00 6.65788 -139.347 -6.65788 6.65788 0.98 0.00114184 0.00105924 0.0427366 0.0396287 46 2258 16 6.79088e+06 215552 828058. 2865.25 4.70 0.377393 0.340257 27406 200422 -1 1951 17 845 2003 118559 25924 5.63758 5.63758 -129.743 -5.63758 0 0 1.01997e+06 3529.29 0.29 0.09 0.29 -1 -1 0.29 0.0414403 0.0377238 93 125 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_031.v common 9.96 vpr 62.50 MiB 0.02 6852 -1 -1 11 0.17 -1 -1 32476 -1 -1 18 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 28 32 221 253 1 176 78 17 17 289 -1 unnamed_device 24.0 MiB 0.95 902 8876 2223 6138 515 62.5 MiB 0.11 0.00 6.72053 -131.848 -6.72053 6.72053 1.00 0.00120632 0.00111976 0.0682971 0.0633793 44 2610 27 6.79088e+06 242496 787024. 2723.27 5.30 0.45327 0.409221 27118 194962 -1 2108 16 955 2692 161102 35777 5.78973 5.78973 -122.112 -5.78973 0 0 997811. 3452.63 0.30 0.10 0.29 -1 -1 0.30 0.0422924 0.0386185 107 139 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_032.v common 9.97 vpr 63.22 MiB 0.03 6664 -1 -1 12 0.19 -1 -1 32384 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 273 305 1 213 82 17 17 289 -1 unnamed_device 24.2 MiB 1.91 1208 10050 2615 5357 2078 63.2 MiB 0.14 0.00 7.12845 -160.373 -7.12845 7.12845 0.98 0.00144584 0.00134248 0.0860114 0.0798748 38 3673 37 6.79088e+06 242496 678818. 2348.85 4.35 0.433795 0.392621 25966 169698 -1 2739 19 1453 3619 206631 46049 6.38943 6.38943 -154.802 -6.38943 0 0 902133. 3121.57 0.26 0.13 0.24 -1 -1 0.26 0.0579641 0.052839 118 179 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_033.v common 8.81 vpr 62.64 MiB 0.02 6924 -1 -1 11 0.19 -1 -1 32584 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 31 32 238 270 1 180 81 17 17 289 -1 unnamed_device 24.0 MiB 1.49 915 11456 3671 5623 2162 62.6 MiB 0.15 0.00 6.45483 -141.873 -6.45483 6.45483 0.97 0.00129117 0.00119836 0.0885217 0.0821489 36 2827 21 6.79088e+06 242496 648988. 2245.63 3.56 0.365165 0.330758 25390 158009 -1 2238 22 1486 4007 227955 53315 5.61055 5.61055 -139.174 -5.61055 0 0 828058. 2865.25 0.29 0.13 0.23 -1 -1 0.29 0.0582653 0.0529671 107 147 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_034.v common 9.52 vpr 62.50 MiB 0.03 6736 -1 -1 10 0.14 -1 -1 32648 -1 -1 17 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 29 32 221 253 1 158 78 17 17 289 -1 unnamed_device 24.0 MiB 1.34 780 5224 1169 3841 214 62.5 MiB 0.07 0.00 6.56873 -131.467 -6.56873 6.56873 0.98 0.0012058 0.00111849 0.0415386 0.0385744 42 2156 29 6.79088e+06 229024 744469. 2576.02 4.56 0.436928 0.393962 26542 182613 -1 1782 27 838 2596 394538 207972 5.61747 5.61747 -123.734 -5.61747 0 0 949917. 3286.91 0.28 0.21 0.27 -1 -1 0.28 0.0636315 0.0577097 102 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_035.v common 12.67 vpr 63.62 MiB 0.05 7152 -1 -1 13 0.33 -1 -1 33296 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65148 32 32 333 365 1 236 86 17 17 289 -1 unnamed_device 24.7 MiB 1.23 1527 9158 2380 5973 805 63.6 MiB 0.15 0.00 7.91413 -169.881 -7.91413 7.91413 0.98 0.00183137 0.00170036 0.0944232 0.0876948 44 4004 25 6.79088e+06 296384 787024. 2723.27 7.33 0.671157 0.609454 27118 194962 -1 3153 16 1414 4664 253274 54968 6.76001 6.76001 -160.027 -6.76001 0 0 997811. 3452.63 0.29 0.16 0.29 -1 -1 0.29 0.0672941 0.0618979 162 239 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_036.v common 11.95 vpr 63.29 MiB 0.05 6808 -1 -1 13 0.31 -1 -1 32996 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 297 329 1 231 86 17 17 289 -1 unnamed_device 24.4 MiB 1.63 1407 5189 964 3994 231 63.3 MiB 0.09 0.00 7.75126 -170.514 -7.75126 7.75126 0.99 0.00169043 0.00156162 0.0528978 0.0491204 44 3549 28 6.79088e+06 296384 787024. 2723.27 6.30 0.59517 0.538989 27118 194962 -1 2956 18 1413 4307 230633 50949 6.57657 6.57657 -156.375 -6.57657 0 0 997811. 3452.63 0.30 0.14 0.29 -1 -1 0.30 0.0642624 0.0586588 152 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_037.v common 9.86 vpr 62.65 MiB 0.02 6844 -1 -1 12 0.13 -1 -1 32732 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 31 32 234 266 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 1.30 1010 12120 3866 6542 1712 62.6 MiB 0.15 0.00 7.15698 -154.751 -7.15698 7.15698 0.98 0.00123116 0.00114185 0.0903732 0.0838015 38 2706 20 6.79088e+06 229024 678818. 2348.85 4.97 0.453039 0.409728 25966 169698 -1 2233 17 996 2777 147949 33308 6.11878 6.11878 -145.779 -6.11878 0 0 902133. 3121.57 0.26 0.10 0.24 -1 -1 0.26 0.0448673 0.0409017 101 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_038.v common 9.77 vpr 63.46 MiB 0.04 6880 -1 -1 12 0.25 -1 -1 33268 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64980 31 32 310 342 1 219 86 17 17 289 -1 unnamed_device 24.5 MiB 1.16 1328 10103 2679 5328 2096 63.5 MiB 0.16 0.00 7.74608 -158.655 -7.74608 7.74608 0.98 0.00169113 0.0015719 0.0957083 0.0889533 40 3529 31 6.79088e+06 309856 706193. 2443.58 4.24 0.48672 0.441726 26254 175826 -1 3341 53 1773 5574 1303360 698925 6.54507 6.54507 -154.111 -6.54507 0 0 926341. 3205.33 0.27 0.62 0.26 -1 -1 0.27 0.161107 0.145917 147 219 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_039.v common 10.34 vpr 63.37 MiB 0.05 7092 -1 -1 14 0.34 -1 -1 33148 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 31 32 284 316 1 221 84 17 17 289 -1 unnamed_device 24.4 MiB 0.89 1297 8685 2245 5606 834 63.4 MiB 0.14 0.00 8.14173 -172.752 -8.14173 8.14173 0.98 0.00163412 0.0015189 0.0822591 0.0764381 38 3524 23 6.79088e+06 282912 678818. 2348.85 5.48 0.63355 0.573707 25966 169698 -1 2792 16 1367 3722 192407 43945 7.30933 7.30933 -162.066 -7.30933 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0567917 0.0519755 146 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_040.v common 14.20 vpr 63.07 MiB 0.05 6968 -1 -1 13 0.25 -1 -1 32928 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 31 32 271 303 1 212 84 17 17 289 -1 unnamed_device 24.2 MiB 1.91 1240 3927 707 3012 208 63.1 MiB 0.07 0.00 7.84876 -163.832 -7.84876 7.84876 0.98 0.0014875 0.00138174 0.0369057 0.0343752 34 3864 49 6.79088e+06 282912 618332. 2139.56 8.52 0.538418 0.485421 25102 150614 -1 3044 28 1666 4408 304698 71093 6.92102 6.92102 -159.394 -6.92102 0 0 787024. 2723.27 0.24 0.18 0.21 -1 -1 0.24 0.0810083 0.073429 123 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_041.v common 8.31 vpr 63.16 MiB 0.02 6984 -1 -1 12 0.24 -1 -1 32852 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 31 32 280 312 1 206 87 17 17 289 -1 unnamed_device 24.1 MiB 0.91 1307 8919 1981 5570 1368 63.2 MiB 0.13 0.00 7.76747 -159.708 -7.76747 7.76747 0.95 0.00157137 0.00145828 0.0771719 0.0717488 40 3184 27 6.79088e+06 323328 706193. 2443.58 3.61 0.424598 0.384766 26254 175826 -1 2901 16 1290 3809 236195 51307 6.50936 6.50936 -151.764 -6.50936 0 0 926341. 3205.33 0.27 0.13 0.26 -1 -1 0.27 0.0520042 0.0472753 136 189 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_042.v common 9.35 vpr 63.02 MiB 0.03 7068 -1 -1 12 0.22 -1 -1 32712 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 264 296 1 188 80 17 17 289 -1 unnamed_device 24.1 MiB 0.96 1094 7992 2062 5514 416 63.0 MiB 0.12 0.00 7.00518 -141.287 -7.00518 7.00518 0.98 0.00138851 0.00128897 0.0687057 0.0637947 34 3442 44 6.79088e+06 215552 618332. 2139.56 4.66 0.381464 0.345148 25102 150614 -1 2722 19 1463 3900 262879 56605 6.20134 6.20134 -142.724 -6.20134 0 0 787024. 2723.27 0.24 0.14 0.22 -1 -1 0.24 0.0558026 0.0506446 113 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_043.v common 12.15 vpr 63.49 MiB 0.03 7072 -1 -1 14 0.43 -1 -1 32568 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 339 371 1 252 89 17 17 289 -1 unnamed_device 24.4 MiB 1.36 1495 9989 2553 6051 1385 63.5 MiB 0.17 0.00 8.47579 -179.629 -8.47579 8.47579 0.98 0.00189094 0.00175744 0.101168 0.0940287 44 3868 35 6.79088e+06 336800 787024. 2723.27 6.63 0.763328 0.693167 27118 194962 -1 3296 16 1584 4757 268393 58342 7.63716 7.63716 -169.229 -7.63716 0 0 997811. 3452.63 0.29 0.15 0.29 -1 -1 0.29 0.0664377 0.0608417 169 245 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_044.v common 8.27 vpr 63.25 MiB 0.02 6804 -1 -1 11 0.19 -1 -1 32388 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 31 32 246 278 1 185 82 17 17 289 -1 unnamed_device 24.4 MiB 1.74 985 6312 1275 4627 410 63.2 MiB 0.09 0.00 6.61647 -138.059 -6.61647 6.61647 0.98 0.00136021 0.00126351 0.0523648 0.0486756 36 2988 23 6.79088e+06 255968 648988. 2245.63 2.95 0.347385 0.313847 25390 158009 -1 2522 16 1260 3325 205960 47067 5.70008 5.70008 -138.696 -5.70008 0 0 828058. 2865.25 0.25 0.11 0.23 -1 -1 0.25 0.0472689 0.0430543 112 155 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_045.v common 11.06 vpr 63.27 MiB 0.04 6896 -1 -1 13 0.27 -1 -1 32776 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 31 32 268 300 1 191 84 17 17 289 -1 unnamed_device 24.3 MiB 1.19 1103 6672 1409 4884 379 63.3 MiB 0.09 0.00 7.76492 -151.455 -7.76492 7.76492 1.00 0.00103784 0.00095587 0.0489728 0.0453341 36 3116 41 6.79088e+06 282912 648988. 2245.63 5.90 0.42839 0.386857 25390 158009 -1 2567 37 1188 3666 494576 240703 6.83836 6.83836 -147.145 -6.83836 0 0 828058. 2865.25 0.25 0.27 0.23 -1 -1 0.25 0.0925462 0.0838645 133 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_046.v common 11.29 vpr 63.47 MiB 0.04 7092 -1 -1 12 0.26 -1 -1 32920 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64996 32 32 318 350 1 217 86 17 17 289 -1 unnamed_device 24.6 MiB 1.58 1395 9914 2739 6272 903 63.5 MiB 0.16 0.00 6.98394 -154.333 -6.98394 6.98394 0.98 0.00173814 0.00161526 0.0984979 0.091377 46 3538 18 6.79088e+06 296384 828058. 2865.25 5.74 0.623406 0.564854 27406 200422 -1 2945 19 1356 4522 230486 51042 6.12648 6.12648 -147.156 -6.12648 0 0 1.01997e+06 3529.29 0.30 0.14 0.29 -1 -1 0.30 0.0690654 0.0630049 153 224 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_047.v common 11.52 vpr 63.35 MiB 0.02 6776 -1 -1 13 0.24 -1 -1 32760 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 32 32 273 305 1 202 82 17 17 289 -1 unnamed_device 24.4 MiB 1.03 1171 11652 3648 5835 2169 63.3 MiB 0.17 0.00 7.49071 -158.776 -7.49071 7.49071 0.99 0.00151997 0.00141198 0.103763 0.0964141 36 3633 25 6.79088e+06 242496 648988. 2245.63 6.32 0.442922 0.401888 25390 158009 -1 2779 33 2121 6697 550944 177817 6.62347 6.62347 -153.065 -6.62347 0 0 828058. 2865.25 0.25 0.27 0.23 -1 -1 0.25 0.0946399 0.0857302 127 179 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_048.v common 11.18 vpr 63.21 MiB 0.04 7080 -1 -1 13 0.22 -1 -1 32688 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 269 301 1 197 81 17 17 289 -1 unnamed_device 24.2 MiB 1.89 1211 10406 2769 5511 2126 63.2 MiB 0.15 0.00 7.74736 -164.869 -7.74736 7.74736 0.98 0.00147115 0.00136599 0.0918958 0.0853446 36 3268 39 6.79088e+06 229024 648988. 2245.63 5.52 0.659121 0.59568 25390 158009 -1 2653 18 1211 3376 195793 43398 6.77658 6.77658 -159.995 -6.77658 0 0 828058. 2865.25 0.25 0.12 0.23 -1 -1 0.25 0.05621 0.0512114 117 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_049.v common 11.54 vpr 63.32 MiB 0.05 6856 -1 -1 12 0.26 -1 -1 32852 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64844 32 32 298 330 1 217 86 17 17 289 -1 unnamed_device 24.5 MiB 1.83 1253 10103 2754 6868 481 63.3 MiB 0.16 0.00 7.26657 -159.313 -7.26657 7.26657 0.98 0.00167376 0.00155526 0.094393 0.0876303 38 3347 46 6.79088e+06 296384 678818. 2348.85 5.79 0.654049 0.591246 25966 169698 -1 2715 18 1291 3925 202580 45415 6.34132 6.34132 -152.194 -6.34132 0 0 902133. 3121.57 0.26 0.13 0.24 -1 -1 0.26 0.0631888 0.0575885 148 204 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_050.v common 23.18 vpr 63.34 MiB 0.04 6888 -1 -1 13 0.29 -1 -1 32792 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 299 331 1 227 84 17 17 289 -1 unnamed_device 24.6 MiB 1.75 1384 13626 3889 7379 2358 63.3 MiB 0.20 0.00 7.75522 -164.387 -7.75522 7.75522 0.99 0.00166403 0.00154485 0.128854 0.119734 36 4087 44 6.79088e+06 269440 648988. 2245.63 17.39 0.737388 0.667697 25390 158009 -1 3259 21 1549 4321 373733 106075 6.63117 6.63117 -159.782 -6.63117 0 0 828058. 2865.25 0.25 0.19 0.22 -1 -1 0.25 0.0721997 0.0659197 143 205 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_051.v common 8.44 vpr 63.18 MiB 0.03 6824 -1 -1 14 0.27 -1 -1 32840 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 259 291 1 197 81 17 17 289 -1 unnamed_device 24.3 MiB 1.73 1098 13031 4343 6238 2450 63.2 MiB 0.18 0.00 7.86406 -162.706 -7.86406 7.86406 0.99 0.00145069 0.00134796 0.112058 0.104112 38 3343 32 6.79088e+06 229024 678818. 2348.85 2.83 0.375321 0.341659 25966 169698 -1 2541 16 1222 3542 190807 42703 6.91764 6.91764 -157.465 -6.91764 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0506182 0.0461927 121 165 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_052.v common 15.20 vpr 63.21 MiB 0.02 6864 -1 -1 13 0.28 -1 -1 32728 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 293 325 1 216 83 17 17 289 -1 unnamed_device 24.1 MiB 2.35 1258 11603 3424 7189 990 63.2 MiB 0.17 0.00 7.85103 -161.777 -7.85103 7.85103 0.99 0.00158061 0.00146898 0.106724 0.0991673 36 4060 45 6.79088e+06 255968 648988. 2245.63 8.88 0.512224 0.46434 25390 158009 -1 3177 18 1531 4176 270286 59043 6.95679 6.95679 -159.165 -6.95679 0 0 828058. 2865.25 0.25 0.14 0.23 -1 -1 0.25 0.0601156 0.0548241 132 199 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_053.v common 10.92 vpr 63.49 MiB 0.03 7104 -1 -1 13 0.28 -1 -1 32900 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 31 32 311 343 1 237 87 17 17 289 -1 unnamed_device 24.6 MiB 1.10 1359 6039 1148 4687 204 63.5 MiB 0.10 0.00 8.38958 -177.102 -8.38958 8.38958 0.98 0.00168611 0.00156369 0.0589039 0.054734 40 3561 50 6.79088e+06 323328 706193. 2443.58 5.92 0.507676 0.459762 26254 175826 -1 3067 18 1553 4465 283755 62612 7.38651 7.38651 -163.99 -7.38651 0 0 926341. 3205.33 0.27 0.15 0.26 -1 -1 0.27 0.0654191 0.0597393 153 220 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_054.v common 9.44 vpr 63.39 MiB 0.05 7080 -1 -1 12 0.30 -1 -1 32832 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 324 356 1 234 87 17 17 289 -1 unnamed_device 24.4 MiB 1.32 1296 5655 1121 4085 449 63.4 MiB 0.10 0.00 7.82193 -168.395 -7.82193 7.82193 0.98 0.00174022 0.00161676 0.0561406 0.0522161 44 3490 49 6.79088e+06 309856 787024. 2723.27 4.01 0.503735 0.456265 27118 194962 -1 2816 24 1393 3975 320817 117454 7.08547 7.08547 -162.783 -7.08547 0 0 997811. 3452.63 0.30 0.19 0.28 -1 -1 0.30 0.0832594 0.0758771 157 230 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_055.v common 7.98 vpr 62.61 MiB 0.04 6820 -1 -1 11 0.13 -1 -1 32388 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 216 248 1 163 76 17 17 289 -1 unnamed_device 23.6 MiB 1.49 1043 3916 875 2751 290 62.6 MiB 0.07 0.00 6.0933 -143.487 -6.0933 6.0933 1.00 0.00113768 0.00105495 0.0313015 0.0290851 40 2570 30 6.79088e+06 161664 706193. 2443.58 2.79 0.28852 0.259996 26254 175826 -1 2316 16 941 2587 161270 35529 5.34881 5.34881 -141.979 -5.34881 0 0 926341. 3205.33 0.27 0.09 0.26 -1 -1 0.27 0.0394716 0.0359369 89 122 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_056.v common 9.01 vpr 63.08 MiB 0.03 6724 -1 -1 13 0.19 -1 -1 32796 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 245 277 1 190 82 17 17 289 -1 unnamed_device 24.2 MiB 2.19 1095 12364 3770 6848 1746 63.1 MiB 0.16 0.00 7.93371 -169.518 -7.93371 7.93371 0.98 0.00135138 0.00125588 0.0975282 0.0905879 38 2902 22 6.79088e+06 242496 678818. 2348.85 3.05 0.395336 0.358422 25966 169698 -1 2385 15 1096 2878 151481 34429 6.78808 6.78808 -158.807 -6.78808 0 0 902133. 3121.57 0.26 0.10 0.24 -1 -1 0.26 0.0444289 0.0405905 113 151 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_057.v common 9.17 vpr 63.86 MiB 0.05 7152 -1 -1 14 0.43 -1 -1 33084 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65392 32 32 361 393 1 262 90 17 17 289 -1 unnamed_device 24.8 MiB 1.00 1580 9939 2278 6564 1097 63.9 MiB 0.17 0.00 8.73511 -184.809 -8.73511 8.73511 0.98 0.00199494 0.00185024 0.104301 0.0969424 38 4844 44 6.79088e+06 350272 678818. 2348.85 4.02 0.530278 0.482345 25966 169698 -1 3851 18 2075 5945 326489 70629 7.59027 7.59027 -179.068 -7.59027 0 0 902133. 3121.57 0.26 0.17 0.24 -1 -1 0.26 0.076178 0.0697665 180 267 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_058.v common 13.28 vpr 63.63 MiB 0.02 6780 -1 -1 13 0.32 -1 -1 32908 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65156 32 32 318 350 1 243 87 17 17 289 -1 unnamed_device 24.6 MiB 1.94 1387 12759 4109 6459 2191 63.6 MiB 0.20 0.00 8.53765 -182.928 -8.53765 8.53765 0.98 0.00165816 0.00152906 0.124561 0.115754 50 3099 22 6.79088e+06 309856 902133. 3121.57 7.21 0.793713 0.719947 27982 213445 -1 2920 17 1368 3936 227540 49574 7.3431 7.3431 -167.498 -7.3431 0 0 1.08113e+06 3740.92 0.31 0.14 0.32 -1 -1 0.31 0.0662275 0.0606393 154 224 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_059.v common 9.61 vpr 62.83 MiB 0.04 6876 -1 -1 11 0.17 -1 -1 32868 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 30 32 223 255 1 163 78 17 17 289 -1 unnamed_device 24.3 MiB 0.72 950 4228 865 3108 255 62.8 MiB 0.07 0.00 6.81683 -144.823 -6.81683 6.81683 1.00 0.00120639 0.00111964 0.0346399 0.0321178 38 2454 20 6.79088e+06 215552 678818. 2348.85 5.18 0.468447 0.422273 25966 169698 -1 2005 23 930 2566 243930 95086 5.99343 5.99343 -139.149 -5.99343 0 0 902133. 3121.57 0.26 0.14 0.24 -1 -1 0.26 0.0556267 0.0505364 100 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_060.v common 11.82 vpr 63.72 MiB 0.05 7024 -1 -1 15 0.43 -1 -1 32908 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65248 32 32 335 367 1 245 86 17 17 289 -1 unnamed_device 24.8 MiB 1.01 1418 9347 2334 6216 797 63.7 MiB 0.16 0.00 9.383 -186.155 -9.383 9.383 0.98 0.00190767 0.0017727 0.0999532 0.0929199 46 3933 34 6.79088e+06 296384 828058. 2865.25 6.48 0.686147 0.622935 27406 200422 -1 3193 20 1707 5062 266139 59145 8.35325 8.35325 -177.457 -8.35325 0 0 1.01997e+06 3529.29 0.36 0.16 0.30 -1 -1 0.36 0.0793237 0.0725471 169 241 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_061.v common 9.04 vpr 63.23 MiB 0.04 7008 -1 -1 13 0.31 -1 -1 32936 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 301 333 1 220 85 17 17 289 -1 unnamed_device 24.4 MiB 0.96 1389 12175 3278 6674 2223 63.2 MiB 0.19 0.00 8.13964 -175.769 -8.13964 8.13964 1.00 0.00167265 0.0015545 0.115075 0.107009 38 3777 26 6.79088e+06 282912 678818. 2348.85 4.08 0.483124 0.439211 25966 169698 -1 2910 16 1372 3874 204438 45797 6.93221 6.93221 -164.772 -6.93221 0 0 902133. 3121.57 0.26 0.13 0.24 -1 -1 0.26 0.0586237 0.0537705 148 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_062.v common 10.62 vpr 62.89 MiB 0.04 6904 -1 -1 11 0.13 -1 -1 32660 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 238 270 1 173 78 17 17 289 -1 unnamed_device 24.1 MiB 1.21 1055 3564 650 2743 171 62.9 MiB 0.06 0.00 6.25754 -138.513 -6.25754 6.25754 0.98 0.00114676 0.00105564 0.0291927 0.0270557 34 2945 49 6.79088e+06 188608 618332. 2139.56 5.83 0.459414 0.413246 25102 150614 -1 2475 17 1099 2705 174668 39928 5.32418 5.32418 -136.907 -5.32418 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0438727 0.0399389 94 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_063.v common 8.54 vpr 63.54 MiB 0.05 7016 -1 -1 12 0.29 -1 -1 32880 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65060 32 32 308 340 1 225 85 17 17 289 -1 unnamed_device 24.7 MiB 1.44 1368 11803 3261 7113 1429 63.5 MiB 0.18 0.00 7.45229 -159.724 -7.45229 7.45229 0.95 0.00169392 0.00157155 0.11288 0.104682 38 3657 29 6.79088e+06 282912 678818. 2348.85 3.12 0.422553 0.384231 25966 169698 -1 2915 17 1374 4168 211626 47370 6.54158 6.54158 -153.046 -6.54158 0 0 902133. 3121.57 0.26 0.13 0.25 -1 -1 0.26 0.0621718 0.0568062 150 214 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_064.v common 11.11 vpr 62.96 MiB 0.02 6712 -1 -1 12 0.20 -1 -1 32392 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 32 32 253 285 1 191 80 17 17 289 -1 unnamed_device 24.1 MiB 1.66 1080 10228 3462 4696 2070 63.0 MiB 0.14 0.00 7.21243 -157.214 -7.21243 7.21243 0.99 0.000909084 0.000833791 0.0864903 0.0803117 46 2780 20 6.79088e+06 215552 828058. 2865.25 5.62 0.513321 0.463894 27406 200422 -1 2438 17 1167 3211 182341 39415 6.36938 6.36938 -145.45 -6.36938 0 0 1.01997e+06 3529.29 0.30 0.11 0.29 -1 -1 0.30 0.0505536 0.0460681 115 159 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_065.v common 9.59 vpr 62.72 MiB 0.09 6860 -1 -1 12 0.20 -1 -1 32712 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 30 32 227 259 1 162 80 17 17 289 -1 unnamed_device 24.0 MiB 1.13 791 10056 4124 5675 257 62.7 MiB 0.13 0.00 7.72482 -150.805 -7.72482 7.72482 0.99 0.00125367 0.00116236 0.0771322 0.0715923 42 2202 32 6.79088e+06 242496 744469. 2576.02 4.71 0.543043 0.49055 26542 182613 -1 1684 16 850 2273 113773 28586 6.41556 6.41556 -138.302 -6.41556 0 0 949917. 3286.91 0.28 0.09 0.26 -1 -1 0.28 0.043338 0.0395517 104 139 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_066.v common 10.64 vpr 63.20 MiB 0.05 7096 -1 -1 12 0.28 -1 -1 32868 -1 -1 23 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 29 32 292 324 1 204 84 17 17 289 -1 unnamed_device 24.4 MiB 1.19 1171 7770 1823 5388 559 63.2 MiB 0.13 0.00 7.44007 -144.714 -7.44007 7.44007 0.99 0.00164861 0.00152847 0.0772149 0.071588 44 2819 17 6.79088e+06 309856 787024. 2723.27 5.49 0.553018 0.500734 27118 194962 -1 2495 18 1209 3819 202338 45288 6.38057 6.38057 -134.322 -6.38057 0 0 997811. 3452.63 0.29 0.13 0.29 -1 -1 0.29 0.0628426 0.0573988 143 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_067.v common 9.05 vpr 63.39 MiB 0.03 6824 -1 -1 14 0.32 -1 -1 32916 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64908 32 32 316 348 1 251 87 17 17 289 -1 unnamed_device 24.5 MiB 1.79 1358 11991 3231 7336 1424 63.4 MiB 0.19 0.00 8.37027 -173.793 -8.37027 8.37027 0.99 0.00176153 0.00163685 0.114773 0.10661 44 3703 23 6.79088e+06 309856 787024. 2723.27 3.09 0.443843 0.404193 27118 194962 -1 2934 17 1563 4013 208509 46510 7.59802 7.59802 -167.166 -7.59802 0 0 997811. 3452.63 0.29 0.13 0.28 -1 -1 0.29 0.063836 0.0583581 156 222 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_068.v common 11.07 vpr 63.21 MiB 0.04 6796 -1 -1 12 0.24 -1 -1 32696 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 32 32 286 318 1 205 84 17 17 289 -1 unnamed_device 24.2 MiB 1.12 1181 13626 4881 7118 1627 63.2 MiB 0.19 0.00 7.33267 -159.572 -7.33267 7.33267 0.99 0.00158225 0.00147005 0.121973 0.113275 40 3026 49 6.79088e+06 269440 706193. 2443.58 6.03 0.722125 0.653524 26254 175826 -1 2713 21 1523 4704 289351 64507 6.54507 6.54507 -154.925 -6.54507 0 0 926341. 3205.33 0.27 0.16 0.26 -1 -1 0.27 0.0680827 0.0620022 135 192 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_069.v common 14.01 vpr 62.90 MiB 0.04 6748 -1 -1 12 0.14 -1 -1 32696 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 221 253 1 164 78 17 17 289 -1 unnamed_device 24.4 MiB 1.38 1009 7880 2123 5261 496 62.9 MiB 0.10 0.00 7.26363 -149.543 -7.26363 7.26363 1.03 0.00116136 0.00107754 0.0584414 0.0541982 30 2543 27 6.79088e+06 188608 556674. 1926.21 9.00 0.369435 0.332711 24526 138013 -1 2104 27 885 2401 307230 150179 6.29447 6.29447 -143.607 -6.29447 0 0 706193. 2443.58 0.22 0.17 0.19 -1 -1 0.22 0.0612669 0.0554141 94 127 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_070.v common 21.93 vpr 63.13 MiB 0.04 6660 -1 -1 12 0.22 -1 -1 32320 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 31 32 261 293 1 192 81 17 17 289 -1 unnamed_device 24.2 MiB 1.69 970 11981 3535 6635 1811 63.1 MiB 0.16 0.00 7.26019 -151.005 -7.26019 7.26019 0.98 0.00141045 0.00130882 0.0985676 0.0913114 38 2664 21 6.79088e+06 242496 678818. 2348.85 16.40 0.617555 0.557416 25966 169698 -1 2174 17 1178 3034 162193 37431 6.41633 6.41633 -145.356 -6.41633 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0522844 0.0475991 114 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_071.v common 9.45 vpr 63.15 MiB 0.02 6960 -1 -1 11 0.19 -1 -1 32856 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 30 32 277 309 1 201 83 17 17 289 -1 unnamed_device 24.1 MiB 2.04 1239 12863 3849 7065 1949 63.1 MiB 0.18 0.00 6.65488 -140.894 -6.65488 6.65488 0.98 0.00149549 0.00138902 0.111449 0.103461 36 3468 42 6.79088e+06 282912 648988. 2245.63 3.59 0.41102 0.373373 25390 158009 -1 2834 18 1311 3849 228747 50345 5.77854 5.77854 -136.317 -5.77854 0 0 828058. 2865.25 0.25 0.13 0.23 -1 -1 0.25 0.0570995 0.0520261 129 189 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_072.v common 7.32 vpr 63.01 MiB 0.04 6972 -1 -1 11 0.18 -1 -1 32644 -1 -1 22 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64524 28 32 251 283 1 186 82 17 17 289 -1 unnamed_device 24.0 MiB 1.01 1136 10940 2806 6659 1475 63.0 MiB 0.15 0.00 6.63358 -127.166 -6.63358 6.63358 0.98 0.00141091 0.00130843 0.0906319 0.0842325 38 2866 28 6.79088e+06 296384 678818. 2348.85 2.44 0.331311 0.300794 25966 169698 -1 2418 29 1529 5201 490995 204171 5.73934 5.73934 -120.441 -5.73934 0 0 902133. 3121.57 0.26 0.25 0.24 -1 -1 0.26 0.0803237 0.0727852 124 169 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_073.v common 10.08 vpr 63.08 MiB 0.04 6716 -1 -1 13 0.18 -1 -1 32660 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 30 32 223 255 1 172 78 17 17 289 -1 unnamed_device 24.3 MiB 2.46 1046 11366 3047 7165 1154 63.1 MiB 0.14 0.00 7.34113 -146.72 -7.34113 7.34113 1.02 0.00120518 0.00111718 0.0861512 0.0799572 36 2791 24 6.79088e+06 215552 648988. 2245.63 3.87 0.35411 0.321192 25390 158009 -1 2340 18 946 2397 146222 33245 6.40858 6.40858 -141.084 -6.40858 0 0 828058. 2865.25 0.24 0.10 0.23 -1 -1 0.24 0.0461421 0.0420665 104 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_074.v common 11.30 vpr 63.00 MiB 0.04 6812 -1 -1 12 0.18 -1 -1 32480 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 269 301 1 195 82 17 17 289 -1 unnamed_device 24.0 MiB 1.98 1049 6312 1392 4796 124 63.0 MiB 0.10 0.00 7.21638 -157.877 -7.21638 7.21638 0.98 0.00146361 0.00134768 0.0561633 0.0521456 38 2904 22 6.79088e+06 242496 678818. 2348.85 5.60 0.532527 0.480474 25966 169698 -1 2381 17 1148 3199 166901 37752 6.44778 6.44778 -152.357 -6.44778 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0529872 0.0483153 123 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_075.v common 8.38 vpr 63.13 MiB 0.05 6992 -1 -1 13 0.28 -1 -1 32880 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 31 32 283 315 1 194 83 17 17 289 -1 unnamed_device 24.0 MiB 1.48 1163 8363 2308 5491 564 63.1 MiB 0.13 0.00 8.4499 -169.768 -8.4499 8.4499 0.98 0.0015704 0.00145941 0.0782508 0.0727283 36 3215 36 6.79088e+06 269440 648988. 2245.63 3.06 0.382582 0.347148 25390 158009 -1 2550 16 1145 3185 180905 40482 7.26121 7.26121 -158.746 -7.26121 0 0 828058. 2865.25 0.25 0.11 0.23 -1 -1 0.25 0.0544731 0.0497784 136 192 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_076.v common 10.55 vpr 63.39 MiB 0.05 6844 -1 -1 14 0.28 -1 -1 32776 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 32 32 308 340 1 227 85 17 17 289 -1 unnamed_device 24.5 MiB 1.03 1318 10501 2502 6272 1727 63.4 MiB 0.17 0.00 8.44735 -181.143 -8.44735 8.44735 0.98 0.0017094 0.00158701 0.101564 0.0943546 44 3319 29 6.79088e+06 282912 787024. 2723.27 5.55 0.67737 0.613982 27118 194962 -1 2564 16 1236 3478 165966 38981 7.22212 7.22212 -164.516 -7.22212 0 0 997811. 3452.63 0.29 0.12 0.29 -1 -1 0.29 0.0598226 0.0547104 149 214 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_077.v common 8.91 vpr 63.19 MiB 0.04 7112 -1 -1 14 0.26 -1 -1 32948 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 277 309 1 207 83 17 17 289 -1 unnamed_device 24.2 MiB 1.58 1302 10523 2982 6549 992 63.2 MiB 0.16 0.00 8.02237 -162.142 -8.02237 8.02237 0.99 0.00155791 0.00144771 0.0955308 0.0886753 36 3596 27 6.79088e+06 255968 648988. 2245.63 3.40 0.367161 0.333835 25390 158009 -1 3087 20 1419 4508 300681 63980 6.87761 6.87761 -155.35 -6.87761 0 0 828058. 2865.25 0.25 0.16 0.23 -1 -1 0.25 0.0644365 0.058748 135 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_078.v common 9.46 vpr 63.27 MiB 0.03 7076 -1 -1 13 0.34 -1 -1 33300 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 288 320 1 209 83 17 17 289 -1 unnamed_device 24.2 MiB 1.89 1274 7823 1878 5189 756 63.3 MiB 0.13 0.00 8.3493 -170.918 -8.3493 8.3493 0.99 0.00161907 0.00150343 0.0752913 0.0699449 44 3199 26 6.79088e+06 255968 787024. 2723.27 3.53 0.437 0.396428 27118 194962 -1 2640 15 1193 3351 194684 42812 7.39 7.39 -161.183 -7.39 0 0 997811. 3452.63 0.29 0.12 0.29 -1 -1 0.29 0.0544883 0.0498731 138 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_079.v common 10.42 vpr 62.56 MiB 0.05 6844 -1 -1 13 0.18 -1 -1 32868 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 30 32 230 262 1 176 78 17 17 289 -1 unnamed_device 24.0 MiB 1.33 995 8544 2304 5272 968 62.6 MiB 0.11 0.00 7.65272 -159.245 -7.65272 7.65272 1.04 0.00124435 0.00115459 0.067795 0.0629186 34 2948 37 6.79088e+06 215552 618332. 2139.56 5.33 0.458899 0.414778 25102 150614 -1 2333 18 1087 2565 154559 35215 6.93332 6.93332 -152.226 -6.93332 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0478602 0.0435538 105 142 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_080.v common 12.43 vpr 63.42 MiB 0.05 6992 -1 -1 13 0.43 -1 -1 32716 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 30 32 294 326 1 222 83 17 17 289 -1 unnamed_device 24.4 MiB 1.24 1201 9803 2770 5401 1632 63.4 MiB 0.16 0.01 8.65832 -171.391 -8.65832 8.65832 0.99 0.00537733 0.00503447 0.0860091 0.079772 36 3779 48 6.79088e+06 282912 648988. 2245.63 7.12 0.524471 0.475338 25390 158009 -1 2775 19 1579 4103 242410 58899 7.59365 7.59365 -164.154 -7.59365 0 0 828058. 2865.25 0.25 0.14 0.23 -1 -1 0.25 0.0660694 0.0603515 143 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_081.v common 7.86 vpr 63.29 MiB 0.02 6964 -1 -1 14 0.25 -1 -1 31464 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 276 308 1 207 82 17 17 289 -1 unnamed_device 24.3 MiB 1.69 1269 7914 1787 4968 1159 63.3 MiB 0.12 0.00 8.34378 -178.011 -8.34378 8.34378 0.98 0.00154224 0.00143144 0.0730533 0.0678539 44 3040 17 6.79088e+06 242496 787024. 2723.27 2.37 0.304537 0.276733 27118 194962 -1 2585 17 1142 3348 180455 39534 7.33961 7.33961 -168.272 -7.33961 0 0 997811. 3452.63 0.29 0.12 0.29 -1 -1 0.29 0.0565801 0.0516723 132 182 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_082.v common 9.70 vpr 63.41 MiB 0.06 7092 -1 -1 12 0.27 -1 -1 32888 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 31 32 293 325 1 214 85 17 17 289 -1 unnamed_device 24.6 MiB 1.28 1315 6595 1620 4420 555 63.4 MiB 0.11 0.00 7.74227 -160.778 -7.74227 7.74227 0.98 0.00161366 0.00149917 0.0626082 0.0582139 38 3309 22 6.79088e+06 296384 678818. 2348.85 4.53 0.407172 0.368799 25966 169698 -1 2655 19 1330 3672 186380 42257 6.58771 6.58771 -151.472 -6.58771 0 0 902133. 3121.57 0.26 0.13 0.24 -1 -1 0.26 0.0637022 0.0581256 142 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_083.v common 9.38 vpr 63.22 MiB 0.04 6888 -1 -1 13 0.24 -1 -1 32828 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 30 32 273 305 1 203 82 17 17 289 -1 unnamed_device 24.3 MiB 1.62 1233 11118 2888 6638 1592 63.2 MiB 0.16 0.00 8.11861 -149.987 -8.11861 8.11861 0.98 0.00148037 0.00137543 0.0971174 0.0902276 38 3134 26 6.79088e+06 269440 678818. 2348.85 3.92 0.433343 0.393358 25966 169698 -1 2680 24 1218 3491 329552 132567 7.06981 7.06981 -143.474 -7.06981 0 0 902133. 3121.57 0.26 0.18 0.24 -1 -1 0.26 0.0713205 0.0647818 125 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_084.v common 12.53 vpr 63.45 MiB 0.06 6880 -1 -1 14 0.35 -1 -1 32924 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64976 32 32 310 342 1 235 85 17 17 289 -1 unnamed_device 24.6 MiB 1.21 1469 4735 854 3655 226 63.5 MiB 0.09 0.00 8.74175 -178.419 -8.74175 8.74175 0.98 0.0017405 0.00161882 0.0499192 0.0465071 44 3926 21 6.79088e+06 282912 787024. 2723.27 7.26 0.657919 0.595075 27118 194962 -1 3143 18 1476 4077 228717 50454 7.59027 7.59027 -168.197 -7.59027 0 0 997811. 3452.63 0.29 0.14 0.28 -1 -1 0.29 0.06604 0.06037 154 216 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_085.v common 11.09 vpr 63.30 MiB 0.04 7032 -1 -1 11 0.28 -1 -1 32824 -1 -1 22 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 29 32 259 291 1 193 83 17 17 289 -1 unnamed_device 24.3 MiB 1.13 1177 7283 1838 4377 1068 63.3 MiB 0.11 0.00 7.07557 -138.934 -7.07557 7.07557 0.98 0.00147645 0.00137226 0.0640892 0.0595513 38 3019 22 6.79088e+06 296384 678818. 2348.85 6.18 0.60315 0.544735 25966 169698 -1 2481 18 1171 3677 183689 41024 5.93852 5.93852 -129.669 -5.93852 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0559567 0.0510061 129 174 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_086.v common 11.71 vpr 62.68 MiB 0.04 6632 -1 -1 13 0.16 -1 -1 32584 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64188 32 32 225 257 1 182 78 17 17 289 -1 unnamed_device 24.0 MiB 2.64 911 7050 1390 5582 78 62.7 MiB 0.10 0.00 6.59519 -151.675 -6.59519 6.59519 0.99 0.00122199 0.00113448 0.0555698 0.0515212 36 3289 28 6.79088e+06 188608 648988. 2245.63 5.42 0.331362 0.299406 25390 158009 -1 2379 21 1279 3154 190047 43732 6.03689 6.03689 -152.99 -6.03689 0 0 828058. 2865.25 0.25 0.12 0.22 -1 -1 0.25 0.0524196 0.0476833 99 131 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_087.v common 12.38 vpr 63.16 MiB 0.04 7004 -1 -1 14 0.23 -1 -1 32960 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 273 305 1 205 84 17 17 289 -1 unnamed_device 24.1 MiB 1.76 1241 6306 1411 4529 366 63.2 MiB 0.10 0.00 8.60394 -175.189 -8.60394 8.60394 0.98 0.00150527 0.00139695 0.0562152 0.0521677 40 3099 37 6.79088e+06 269440 706193. 2443.58 6.77 0.643649 0.58085 26254 175826 -1 2933 19 1285 3617 229287 50185 7.55106 7.55106 -167.861 -7.55106 0 0 926341. 3205.33 0.27 0.13 0.26 -1 -1 0.27 0.0596013 0.0542869 131 179 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_088.v common 9.01 vpr 63.66 MiB 0.03 6808 -1 -1 15 0.39 -1 -1 33332 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65184 32 32 322 354 1 240 87 17 17 289 -1 unnamed_device 24.8 MiB 1.78 1368 6807 1531 4801 475 63.7 MiB 0.12 0.00 8.72233 -187.92 -8.72233 8.72233 0.99 0.00178963 0.00165891 0.0692143 0.064443 38 4005 24 6.79088e+06 309856 678818. 2348.85 3.21 0.365843 0.332376 25966 169698 -1 3199 18 1821 4868 254005 56413 7.59027 7.59027 -180.317 -7.59027 0 0 902133. 3121.57 0.26 0.15 0.24 -1 -1 0.26 0.0672442 0.0613759 156 228 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_089.v common 9.75 vpr 62.78 MiB 0.06 6612 -1 -1 11 0.16 -1 -1 32468 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 218 250 1 159 77 17 17 289 -1 unnamed_device 23.8 MiB 1.46 834 11324 4496 5941 887 62.8 MiB 0.14 0.00 6.16894 -130.904 -6.16894 6.16894 0.98 0.00115356 0.00107047 0.0837593 0.077707 36 2609 21 6.79088e+06 175136 648988. 2245.63 4.65 0.38517 0.347873 25390 158009 -1 2080 16 977 2435 153889 35331 5.60285 5.60285 -129.111 -5.60285 0 0 828058. 2865.25 0.24 0.09 0.23 -1 -1 0.24 0.0398039 0.0362658 90 124 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_090.v common 9.25 vpr 63.10 MiB 0.05 6812 -1 -1 12 0.19 -1 -1 32496 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 31 32 244 276 1 189 80 17 17 289 -1 unnamed_device 24.2 MiB 1.34 1138 11948 3630 6263 2055 63.1 MiB 0.16 0.00 7.22906 -153.908 -7.22906 7.22906 0.98 0.0013379 0.00124108 0.0969676 0.0900201 36 3118 43 6.79088e+06 229024 648988. 2245.63 4.13 0.433944 0.393263 25390 158009 -1 2570 28 1230 3234 344760 138250 6.21607 6.21607 -148.66 -6.21607 0 0 828058. 2865.25 0.25 0.19 0.23 -1 -1 0.25 0.0726346 0.0658529 113 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_091.v common 9.05 vpr 63.40 MiB 0.05 6944 -1 -1 12 0.35 -1 -1 33088 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 301 333 1 212 84 17 17 289 -1 unnamed_device 24.4 MiB 1.11 1283 9234 2131 6180 923 63.4 MiB 0.15 0.00 7.83424 -161.221 -7.83424 7.83424 0.98 0.00163904 0.00151352 0.0901935 0.0837044 36 3404 37 6.79088e+06 269440 648988. 2245.63 3.99 0.499498 0.453122 25390 158009 -1 2868 18 1330 3771 213104 48415 6.66262 6.66262 -155.651 -6.66262 0 0 828058. 2865.25 0.24 0.13 0.23 -1 -1 0.24 0.0646902 0.0590971 145 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_092.v common 14.35 vpr 63.15 MiB 0.04 6900 -1 -1 12 0.24 -1 -1 32984 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64668 32 32 278 310 1 205 84 17 17 289 -1 unnamed_device 24.1 MiB 1.48 1296 12162 3251 6670 2241 63.2 MiB 0.17 0.00 7.48872 -156.2 -7.48872 7.48872 0.98 0.00152188 0.00141378 0.105004 0.0974689 36 3919 48 6.79088e+06 269440 648988. 2245.63 8.84 0.514365 0.466732 25390 158009 -1 2968 31 1406 4450 604171 262883 6.66611 6.66611 -158.421 -6.66611 0 0 828058. 2865.25 0.25 0.29 0.23 -1 -1 0.25 0.0899798 0.0815922 132 184 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_093.v common 11.59 vpr 63.55 MiB 0.04 6952 -1 -1 14 0.45 -1 -1 33256 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65076 32 32 333 365 1 245 87 17 17 289 -1 unnamed_device 24.6 MiB 1.28 1405 6231 1275 4694 262 63.6 MiB 0.12 0.00 8.86727 -181.315 -8.86727 8.86727 1.00 0.00187663 0.00174448 0.0669931 0.0623349 46 3759 40 6.79088e+06 309856 828058. 2865.25 6.10 0.726414 0.6582 27406 200422 -1 3016 18 1566 4898 246052 55033 7.84441 7.84441 -171.043 -7.84441 0 0 1.01997e+06 3529.29 0.30 0.16 0.30 -1 -1 0.30 0.0729381 0.0666828 171 239 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_094.v common 9.68 vpr 63.11 MiB 0.05 6896 -1 -1 11 0.27 -1 -1 32428 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 30 32 261 293 1 193 83 17 17 289 -1 unnamed_device 24.2 MiB 1.50 1067 10883 3235 5860 1788 63.1 MiB 0.15 0.00 6.95332 -140.654 -6.95332 6.95332 0.98 0.00108671 0.000994249 0.0866963 0.0805022 38 3147 29 6.79088e+06 282912 678818. 2348.85 4.30 0.422106 0.382702 25966 169698 -1 2440 16 1174 3438 187932 41657 6.00462 6.00462 -133.125 -6.00462 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0576276 0.0529363 126 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_095.v common 8.26 vpr 63.01 MiB 0.04 6672 -1 -1 11 0.20 -1 -1 32504 -1 -1 19 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64524 27 32 217 249 1 155 78 17 17 289 -1 unnamed_device 24.3 MiB 1.01 867 6054 1411 4045 598 63.0 MiB 0.08 0.00 6.65261 -123.186 -6.65261 6.65261 0.98 0.00121022 0.00112526 0.0477275 0.0443866 30 2198 21 6.79088e+06 255968 556674. 1926.21 3.73 0.413687 0.373179 24526 138013 -1 1871 17 837 2389 118691 28308 5.69587 5.69587 -119.491 -5.69587 0 0 706193. 2443.58 0.22 0.09 0.19 -1 -1 0.22 0.0433005 0.039437 101 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_096.v common 9.78 vpr 63.95 MiB 0.04 7052 -1 -1 13 0.42 -1 -1 32832 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65488 32 32 373 405 1 272 94 17 17 289 -1 unnamed_device 24.9 MiB 1.53 1561 9892 2394 6307 1191 64.0 MiB 0.17 0.00 8.32454 -165.585 -8.32454 8.32454 1.02 0.00211137 0.00195504 0.103279 0.0957952 40 4160 26 6.79088e+06 404160 706193. 2443.58 4.04 0.580537 0.528488 26254 175826 -1 3898 18 1982 5919 354244 78984 7.26465 7.26465 -162.843 -7.26465 0 0 926341. 3205.33 0.27 0.19 0.26 -1 -1 0.27 0.0808895 0.0741446 192 279 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_097.v common 10.40 vpr 63.30 MiB 0.07 6840 -1 -1 14 0.34 -1 -1 33396 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 31 32 269 301 1 199 83 17 17 289 -1 unnamed_device 24.4 MiB 1.13 1127 9803 2812 4976 2015 63.3 MiB 0.14 0.00 8.44959 -165.997 -8.44959 8.44959 0.98 0.00148727 0.00138013 0.0859152 0.0798681 44 2896 24 6.79088e+06 269440 787024. 2723.27 5.19 0.617904 0.558589 27118 194962 -1 2372 20 1044 2864 146997 34036 7.36316 7.36316 -153.955 -7.36316 0 0 997811. 3452.63 0.30 0.12 0.29 -1 -1 0.30 0.0625719 0.0569078 128 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_098.v common 26.83 vpr 62.90 MiB 0.04 6856 -1 -1 12 0.16 -1 -1 32348 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 228 260 1 187 81 17 17 289 -1 unnamed_device 23.9 MiB 1.57 998 12156 3597 6327 2232 62.9 MiB 0.13 0.00 7.48986 -163.034 -7.48986 7.48986 0.98 0.000855085 0.000785959 0.0643013 0.0593025 40 2863 24 6.79088e+06 229024 706193. 2443.58 21.53 0.657189 0.592231 26254 175826 -1 2691 17 1282 3196 239599 53051 6.45897 6.45897 -157.584 -6.45897 0 0 926341. 3205.33 0.27 0.12 0.26 -1 -1 0.27 0.0455715 0.0415422 108 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_099.v common 11.12 vpr 63.16 MiB 0.05 6988 -1 -1 13 0.28 -1 -1 32780 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 265 297 1 194 85 17 17 289 -1 unnamed_device 24.2 MiB 2.00 1114 13291 3899 6878 2514 63.2 MiB 0.18 0.00 7.73375 -156.711 -7.73375 7.73375 0.98 0.00148776 0.00138222 0.110806 0.102914 38 3286 26 6.79088e+06 282912 678818. 2348.85 5.21 0.450189 0.409067 25966 169698 -1 2577 22 1285 3801 209447 46536 6.54502 6.54502 -147.814 -6.54502 0 0 902133. 3121.57 0.26 0.14 0.24 -1 -1 0.26 0.0668758 0.0607463 127 171 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_100.v common 13.42 vpr 63.59 MiB 0.03 7012 -1 -1 13 0.30 -1 -1 33396 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65120 31 32 325 357 1 247 88 17 17 289 -1 unnamed_device 24.7 MiB 2.14 1417 14128 4699 7199 2230 63.6 MiB 0.22 0.00 7.42813 -162.414 -7.42813 7.42813 0.99 0.00179914 0.00166357 0.134584 0.124796 46 3661 29 6.79088e+06 336800 828058. 2865.25 7.15 0.804354 0.730176 27406 200422 -1 3000 19 1742 4870 262891 57989 6.41977 6.41977 -151.928 -6.41977 0 0 1.01997e+06 3529.29 0.30 0.15 0.29 -1 -1 0.30 0.0700768 0.0640667 160 234 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_101.v common 10.13 vpr 63.42 MiB 0.02 7016 -1 -1 11 0.24 -1 -1 32816 -1 -1 24 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 30 32 287 319 1 200 86 17 17 289 -1 unnamed_device 24.4 MiB 1.26 1324 10481 2347 6750 1384 63.4 MiB 0.15 0.00 6.90633 -138.839 -6.90633 6.90633 0.98 0.00156868 0.00145648 0.0927485 0.0861603 44 3215 21 6.79088e+06 323328 787024. 2723.27 5.30 0.577784 0.523141 27118 194962 -1 2661 17 1276 4063 215278 47363 5.99343 5.99343 -131.757 -5.99343 0 0 997811. 3452.63 0.30 0.13 0.29 -1 -1 0.30 0.0572719 0.0522178 141 199 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_102.v common 8.07 vpr 63.31 MiB 0.05 6900 -1 -1 15 0.32 -1 -1 33016 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64828 32 32 297 329 1 220 84 17 17 289 -1 unnamed_device 24.5 MiB 1.48 1295 4842 930 3801 111 63.3 MiB 0.09 0.00 9.14479 -188.086 -9.14479 9.14479 0.98 0.00163812 0.00152164 0.0499738 0.0463935 38 3636 43 6.79088e+06 269440 678818. 2348.85 2.70 0.372853 0.337863 25966 169698 -1 2840 17 1377 3919 212537 48236 8.067 8.067 -178.741 -8.067 0 0 902133. 3121.57 0.26 0.13 0.24 -1 -1 0.26 0.0601732 0.0549885 141 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_103.v common 11.82 vpr 63.45 MiB 0.04 6872 -1 -1 13 0.31 -1 -1 32900 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 311 343 1 229 86 17 17 289 -1 unnamed_device 24.6 MiB 1.55 1415 13127 3697 7096 2334 63.4 MiB 0.20 0.00 8.52282 -182.05 -8.52282 8.52282 1.00 0.00175153 0.00162506 0.127262 0.118133 44 3506 17 6.79088e+06 296384 787024. 2723.27 6.15 0.642853 0.583117 27118 194962 -1 2839 18 1388 4309 233385 51923 7.2647 7.2647 -165.844 -7.2647 0 0 997811. 3452.63 0.29 0.14 0.28 -1 -1 0.29 0.0673823 0.0616233 152 217 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_104.v common 7.92 vpr 63.04 MiB 0.02 6600 -1 -1 12 0.22 -1 -1 32256 -1 -1 18 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 29 32 236 268 1 182 79 17 17 289 -1 unnamed_device 24.2 MiB 1.84 1021 11571 3236 6470 1865 63.0 MiB 0.15 0.00 7.64302 -156.881 -7.64302 7.64302 0.98 0.00127679 0.00118632 0.0912204 0.0847763 34 2972 30 6.79088e+06 242496 618332. 2139.56 2.41 0.312191 0.283692 25102 150614 -1 2365 16 1134 2540 158525 36441 6.42326 6.42326 -148.422 -6.42326 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.044652 0.0407107 109 151 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_105.v common 26.18 vpr 62.62 MiB 0.02 6720 -1 -1 11 0.15 -1 -1 32444 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 231 263 1 178 79 17 17 289 -1 unnamed_device 24.1 MiB 1.63 1023 6332 1518 4556 258 62.6 MiB 0.09 0.00 6.49713 -143.113 -6.49713 6.49713 0.98 0.00121205 0.00112432 0.0488408 0.0453207 40 2703 27 6.79088e+06 202080 706193. 2443.58 20.90 0.514998 0.463488 26254 175826 -1 2526 20 1126 3011 201277 43412 5.86109 5.86109 -144.559 -5.86109 0 0 926341. 3205.33 0.27 0.12 0.26 -1 -1 0.27 0.0499399 0.0453732 99 137 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_106.v common 10.13 vpr 63.46 MiB 0.04 6984 -1 -1 13 0.31 -1 -1 32808 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64988 31 32 294 326 1 211 84 17 17 289 -1 unnamed_device 24.4 MiB 1.02 1272 10515 2952 6532 1031 63.5 MiB 0.16 0.00 7.82626 -160.34 -7.82626 7.82626 0.99 0.00165295 0.00153571 0.0998996 0.0928127 38 3409 45 6.79088e+06 282912 678818. 2348.85 5.03 0.525051 0.476391 25966 169698 -1 2700 30 1721 5629 516698 198644 7.04627 7.04627 -153.27 -7.04627 0 0 902133. 3121.57 0.26 0.26 0.24 -1 -1 0.26 0.0956775 0.0869029 143 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_107.v common 6.88 vpr 62.68 MiB 0.04 6872 -1 -1 10 0.17 -1 -1 32804 -1 -1 18 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 29 32 221 253 1 164 79 17 17 289 -1 unnamed_device 24.1 MiB 1.02 776 7346 1622 5412 312 62.7 MiB 0.10 0.00 6.08278 -120.96 -6.08278 6.08278 0.98 0.00119805 0.00111299 0.0554936 0.0515664 36 2456 27 6.79088e+06 242496 648988. 2245.63 2.30 0.267626 0.242176 25390 158009 -1 1888 18 970 2519 142861 34015 5.48863 5.48863 -120.84 -5.48863 0 0 828058. 2865.25 0.25 0.09 0.22 -1 -1 0.25 0.0450034 0.0408893 98 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_108.v common 12.21 vpr 63.01 MiB 0.03 6596 -1 -1 14 0.19 -1 -1 32876 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 240 272 1 189 81 17 17 289 -1 unnamed_device 24.2 MiB 3.12 1029 11806 4319 6167 1320 63.0 MiB 0.15 0.00 7.85187 -165.875 -7.85187 7.85187 0.98 0.00128785 0.00119579 0.090461 0.0839917 38 2901 18 6.79088e+06 229024 678818. 2348.85 5.33 0.53886 0.487181 25966 169698 -1 2285 17 1108 2931 166285 38043 6.88188 6.88188 -157.143 -6.88188 0 0 902133. 3121.57 0.26 0.10 0.25 -1 -1 0.26 0.0468079 0.0427029 109 146 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_109.v common 11.65 vpr 63.33 MiB 0.05 7028 -1 -1 12 0.30 -1 -1 32920 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 31 32 292 324 1 206 85 17 17 289 -1 unnamed_device 24.5 MiB 1.16 1254 14965 4982 7682 2301 63.3 MiB 0.22 0.00 7.5794 -159.485 -7.5794 7.5794 0.99 0.00162488 0.0015093 0.136085 0.126259 36 3762 27 6.79088e+06 296384 648988. 2245.63 6.46 0.504139 0.45837 25390 158009 -1 2822 17 1262 3754 216962 48784 6.58422 6.58422 -149.273 -6.58422 0 0 828058. 2865.25 0.25 0.13 0.19 -1 -1 0.25 0.0608981 0.0556434 143 201 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_110.v common 12.75 vpr 62.85 MiB 0.05 6872 -1 -1 12 0.15 -1 -1 32372 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 31 32 229 261 1 179 81 17 17 289 -1 unnamed_device 24.1 MiB 2.13 927 11106 4587 6333 186 62.8 MiB 0.13 0.00 6.75629 -144.04 -6.75629 6.75629 0.98 0.00121801 0.00113032 0.0792353 0.0734432 44 2250 22 6.79088e+06 242496 787024. 2723.27 6.86 0.503039 0.453786 27118 194962 -1 1913 15 976 2292 119788 29414 5.95079 5.95079 -135.187 -5.95079 0 0 997811. 3452.63 0.30 0.09 0.29 -1 -1 0.30 0.0401646 0.0367101 102 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_111.v common 10.97 vpr 63.32 MiB 0.04 7000 -1 -1 12 0.19 -1 -1 32868 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 282 314 1 199 82 17 17 289 -1 unnamed_device 24.3 MiB 1.44 1110 8982 1987 6597 398 63.3 MiB 0.13 0.00 6.96264 -150.328 -6.96264 6.96264 0.99 0.00152887 0.00142038 0.0818029 0.0759935 44 3124 23 6.79088e+06 242496 787024. 2723.27 5.74 0.555247 0.501998 27118 194962 -1 2488 17 1187 3517 182585 41687 6.07958 6.07958 -144.805 -6.07958 0 0 997811. 3452.63 0.29 0.12 0.23 -1 -1 0.29 0.0552026 0.0503084 123 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_112.v common 18.35 vpr 63.34 MiB 0.05 7048 -1 -1 13 0.27 -1 -1 32952 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 31 32 269 301 1 204 83 17 17 289 -1 unnamed_device 24.4 MiB 1.81 1229 11063 3115 5831 2117 63.3 MiB 0.16 0.00 7.65152 -163.899 -7.65152 7.65152 0.99 0.0015186 0.00141094 0.0984699 0.0915044 36 3589 46 6.79088e+06 269440 648988. 2245.63 12.62 0.683011 0.61773 25390 158009 -1 3007 23 1451 3964 385238 135504 6.38062 6.38062 -153.925 -6.38062 0 0 828058. 2865.25 0.25 0.20 0.23 -1 -1 0.25 0.0712109 0.0647301 133 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_113.v common 7.57 vpr 62.80 MiB 0.03 6916 -1 -1 11 0.16 -1 -1 32300 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 237 269 1 189 79 17 17 289 -1 unnamed_device 23.9 MiB 1.25 1023 7684 1959 5380 345 62.8 MiB 0.11 0.00 7.18607 -145.746 -7.18607 7.18607 0.99 0.00127205 0.0011814 0.0627 0.0580727 44 2835 21 6.79088e+06 202080 787024. 2723.27 2.58 0.26938 0.244419 27118 194962 -1 2332 16 1123 2900 164224 36632 6.12997 6.12997 -140.155 -6.12997 0 0 997811. 3452.63 0.29 0.10 0.28 -1 -1 0.29 0.0436896 0.0398487 106 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_114.v common 9.49 vpr 63.05 MiB 0.02 6688 -1 -1 13 0.21 -1 -1 32572 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 259 291 1 189 81 17 17 289 -1 unnamed_device 24.1 MiB 1.68 987 11981 4970 6906 105 63.0 MiB 0.16 0.00 7.69321 -163.299 -7.69321 7.69321 0.98 0.00139867 0.00129772 0.101061 0.0938563 36 3181 41 6.79088e+06 229024 648988. 2245.63 4.06 0.441324 0.399989 25390 158009 -1 2374 17 1205 3157 195073 46104 6.99167 6.99167 -157.583 -6.99167 0 0 828058. 2865.25 0.25 0.12 0.22 -1 -1 0.25 0.051539 0.0469637 116 165 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_115.v common 29.05 vpr 63.11 MiB 0.05 7004 -1 -1 13 0.25 -1 -1 32812 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 32 32 277 309 1 206 82 17 17 289 -1 unnamed_device 24.1 MiB 1.18 1213 7558 1688 5341 529 63.1 MiB 0.12 0.00 7.72057 -163.412 -7.72057 7.72057 0.98 0.00154475 0.00143454 0.0695554 0.0646078 40 3346 23 6.79088e+06 242496 706193. 2443.58 23.98 0.712158 0.642238 26254 175826 -1 2947 19 1460 3890 245574 53981 6.86709 6.86709 -157.224 -6.86709 0 0 926341. 3205.33 0.27 0.14 0.26 -1 -1 0.27 0.0604294 0.0550448 130 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_116.v common 10.10 vpr 62.97 MiB 0.02 7072 -1 -1 11 0.19 -1 -1 32756 -1 -1 20 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 29 32 245 277 1 177 81 17 17 289 -1 unnamed_device 24.1 MiB 1.49 1035 10931 3004 6059 1868 63.0 MiB 0.14 0.00 6.92473 -133.923 -6.92473 6.92473 0.98 0.00133897 0.00124394 0.0877825 0.0815291 44 2555 16 6.79088e+06 269440 787024. 2723.27 4.75 0.472666 0.427518 27118 194962 -1 2083 16 869 2629 138771 30419 5.89932 5.89932 -125.47 -5.89932 0 0 997811. 3452.63 0.29 0.09 0.29 -1 -1 0.29 0.0466283 0.0425207 114 160 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_117.v common 23.40 vpr 63.65 MiB 0.04 6840 -1 -1 14 0.31 -1 -1 33412 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65176 32 32 316 348 1 233 85 17 17 289 -1 unnamed_device 24.7 MiB 1.23 1325 15151 4537 8677 1937 63.6 MiB 0.24 0.00 9.1052 -188.078 -9.1052 9.1052 0.98 0.00179231 0.00166574 0.151286 0.140598 36 4098 38 6.79088e+06 282912 648988. 2245.63 17.99 0.890881 0.808071 25390 158009 -1 3370 34 2310 6314 574830 206683 7.85206 7.85206 -178.328 -7.85206 0 0 828058. 2865.25 0.24 0.30 0.23 -1 -1 0.24 0.109934 0.0999479 157 222 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_118.v common 13.86 vpr 62.55 MiB 0.02 6832 -1 -1 12 0.16 -1 -1 32440 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 31 32 230 262 1 187 81 17 17 289 -1 unnamed_device 24.0 MiB 3.97 992 10931 4042 5653 1236 62.5 MiB 0.14 0.00 6.67023 -140.221 -6.67023 6.67023 0.98 0.00123182 0.00114247 0.0807746 0.074931 38 2836 31 6.79088e+06 242496 678818. 2348.85 6.33 0.528375 0.476848 25966 169698 -1 2246 16 1034 2371 137760 30842 5.95423 5.95423 -133.712 -5.95423 0 0 902133. 3121.57 0.26 0.09 0.19 -1 -1 0.26 0.0428382 0.0390763 107 139 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_119.v common 7.94 vpr 63.21 MiB 0.04 6952 -1 -1 13 0.26 -1 -1 32900 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64728 32 32 282 314 1 205 82 17 17 289 -1 unnamed_device 24.2 MiB 1.75 1211 8804 1975 6271 558 63.2 MiB 0.14 0.00 7.80836 -158.945 -7.80836 7.80836 0.99 0.00152713 0.00142274 0.0807773 0.0750702 42 3430 25 6.79088e+06 242496 744469. 2576.02 2.28 0.340756 0.309548 26542 182613 -1 2633 23 1235 3663 294991 100610 7.07777 7.07777 -153.313 -7.07777 0 0 949917. 3286.91 0.28 0.17 0.27 -1 -1 0.28 0.0710805 0.0647212 131 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_120.v common 10.50 vpr 62.77 MiB 0.03 6700 -1 -1 13 0.18 -1 -1 32708 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 235 267 1 182 81 17 17 289 -1 unnamed_device 23.9 MiB 1.74 871 7606 1961 4633 1012 62.8 MiB 0.10 0.00 7.30487 -159.471 -7.30487 7.30487 0.98 0.0012505 0.00116091 0.0581045 0.0539129 38 2747 43 6.79088e+06 229024 678818. 2348.85 5.14 0.458378 0.413468 25966 169698 -1 2088 17 1021 2506 123397 30730 6.57313 6.57313 -157.693 -6.57313 0 0 902133. 3121.57 0.26 0.09 0.24 -1 -1 0.26 0.045023 0.0411634 104 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_121.v common 20.98 vpr 63.45 MiB 0.05 6852 -1 -1 12 0.21 -1 -1 32700 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 265 297 1 190 83 17 17 289 -1 unnamed_device 24.5 MiB 2.27 1117 10343 2798 5496 2049 63.4 MiB 0.15 0.00 7.24652 -157.134 -7.24652 7.24652 0.98 0.00150157 0.00139498 0.0905084 0.0840839 38 2903 19 6.79088e+06 255968 678818. 2348.85 14.88 0.634493 0.572757 25966 169698 -1 2406 16 1093 3085 162552 36583 6.12222 6.12222 -145.372 -6.12222 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0514718 0.0469537 123 171 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_122.v common 11.08 vpr 63.81 MiB 0.04 7232 -1 -1 15 0.46 -1 -1 32912 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65340 32 32 344 376 1 257 88 17 17 289 -1 unnamed_device 24.7 MiB 2.20 1655 6328 1359 4323 646 63.8 MiB 0.12 0.00 9.54241 -197.152 -9.54241 9.54241 0.88 0.00199172 0.00184919 0.0727699 0.0676774 44 4246 28 6.79088e+06 323328 787024. 2723.27 4.78 0.419845 0.382053 27118 194962 -1 3496 17 1744 5180 293072 63363 8.3568 8.3568 -185.399 -8.3568 0 0 997811. 3452.63 0.29 0.16 0.29 -1 -1 0.29 0.0727713 0.0667372 176 250 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_123.v common 7.11 vpr 62.17 MiB 0.04 6548 -1 -1 10 0.10 -1 -1 32040 -1 -1 11 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63660 30 32 173 205 1 128 73 17 17 289 -1 unnamed_device 23.6 MiB 1.49 622 9801 4088 5460 253 62.2 MiB 0.10 0.00 5.09125 -114.065 -5.09125 5.09125 0.98 0.000877623 0.000813048 0.0596685 0.0553088 34 1784 22 6.79088e+06 148192 618332. 2139.56 2.16 0.21547 0.194075 25102 150614 -1 1475 13 633 1456 94235 21738 4.64375 4.64375 -110.083 -4.64375 0 0 787024. 2723.27 0.24 0.06 0.22 -1 -1 0.24 0.0256885 0.0232959 63 85 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_124.v common 8.20 vpr 62.70 MiB 0.04 6784 -1 -1 13 0.18 -1 -1 32552 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 30 32 229 261 1 178 79 17 17 289 -1 unnamed_device 24.1 MiB 1.42 935 11402 3156 7279 967 62.7 MiB 0.14 0.00 7.38119 -155.519 -7.38119 7.38119 0.98 0.00125931 0.00116863 0.0878784 0.0815589 36 2591 34 6.79088e+06 229024 648988. 2245.63 3.08 0.383321 0.347668 25390 158009 -1 1998 18 1114 2657 131128 32307 6.19723 6.19723 -143.191 -6.19723 0 0 828058. 2865.25 0.27 0.10 0.23 -1 -1 0.27 0.0472575 0.0430864 105 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_125.v common 10.78 vpr 62.95 MiB 0.02 6828 -1 -1 12 0.21 -1 -1 32492 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64460 32 32 261 293 1 202 81 17 17 289 -1 unnamed_device 24.1 MiB 1.96 1157 11456 3936 5585 1935 62.9 MiB 0.16 0.00 7.34961 -160.47 -7.34961 7.34961 0.98 0.00140191 0.00130206 0.0955153 0.0886576 38 3235 42 6.79088e+06 229024 678818. 2348.85 5.07 0.444755 0.402262 25966 169698 -1 2639 16 1421 3649 199275 46091 6.45548 6.45548 -153.947 -6.45548 0 0 902133. 3121.57 0.26 0.11 0.25 -1 -1 0.26 0.0480813 0.0438712 115 167 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_126.v common 8.48 vpr 62.30 MiB 0.02 6800 -1 -1 9 0.16 -1 -1 32532 -1 -1 20 25 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 25 32 184 216 1 139 77 17 17 289 -1 unnamed_device 23.6 MiB 1.03 733 10672 3175 6267 1230 62.3 MiB 0.11 0.00 5.43484 -102.938 -5.43484 5.43484 0.98 0.000995451 0.00092097 0.0679992 0.0631409 34 2162 27 6.79088e+06 269440 618332. 2139.56 3.96 0.323176 0.291487 25102 150614 -1 1716 18 745 1984 112311 26099 4.79254 4.79254 -103.267 -4.79254 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.0377313 0.0342416 87 111 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_127.v common 13.46 vpr 63.30 MiB 0.04 7020 -1 -1 12 0.26 -1 -1 32768 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 302 334 1 235 85 17 17 289 -1 unnamed_device 24.2 MiB 1.93 1367 10873 3115 6058 1700 63.3 MiB 0.17 0.00 7.83392 -167.412 -7.83392 7.83392 0.98 0.00163596 0.00151907 0.100307 0.0932357 44 4021 43 6.79088e+06 282912 787024. 2723.27 7.52 0.697382 0.631437 27118 194962 -1 2967 16 1495 4019 221225 49511 6.79572 6.79572 -156.384 -6.79572 0 0 997811. 3452.63 0.30 0.14 0.29 -1 -1 0.30 0.0612816 0.0563971 144 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_128.v common 8.55 vpr 63.52 MiB 0.06 6884 -1 -1 14 0.33 -1 -1 33016 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65048 31 32 295 327 1 216 86 17 17 289 -1 unnamed_device 24.7 MiB 0.99 1276 6701 1514 4692 495 63.5 MiB 0.11 0.00 9.054 -184.189 -9.054 9.054 0.98 0.00168562 0.00155425 0.0647738 0.0601849 36 3855 39 6.79088e+06 309856 648988. 2245.63 3.56 0.426141 0.386336 25390 158009 -1 2989 22 1499 4477 251228 56462 7.97736 7.97736 -176.793 -7.97736 0 0 828058. 2865.25 0.25 0.15 0.22 -1 -1 0.25 0.0749357 0.0682543 151 204 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 6.61 vpr 63.83 MiB 0.05 7300 -1 -1 1 0.03 -1 -1 30908 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 438 350 1 202 101 17 17 289 -1 unnamed_device 24.7 MiB 1.32 896 11381 2877 7599 905 63.8 MiB 0.16 0.00 4.28691 -143.363 -4.28691 4.28691 0.99 0.00133661 0.00124126 0.069396 0.0643776 30 2726 26 6.87369e+06 517032 556674. 1926.21 1.64 0.247876 0.224806 25186 138497 -1 1965 20 1586 2596 135571 34843 3.8594 3.8594 -142.45 -3.8594 0 0 706193. 2443.58 0.22 0.11 0.20 -1 -1 0.22 0.0524535 0.0474734 155 96 32 32 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 8.55 vpr 63.49 MiB 0.05 7272 -1 -1 1 0.05 -1 -1 30640 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65012 30 32 409 330 1 192 85 17 17 289 -1 unnamed_device 24.7 MiB 3.31 885 13477 4295 6291 2891 63.5 MiB 0.19 0.00 4.22285 -135.326 -4.22285 4.22285 0.98 0.00125393 0.00116509 0.0936512 0.0870243 32 3006 47 6.87369e+06 321398 586450. 2029.24 1.54 0.302308 0.274526 25474 144626 -1 2218 26 2294 3831 345229 79100 4.1993 4.1993 -147.214 -4.1993 0 0 744469. 2576.02 0.23 0.17 0.21 -1 -1 0.23 0.0622927 0.0562801 141 91 30 30 89 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 9.67 vpr 63.52 MiB 0.05 7364 -1 -1 1 0.03 -1 -1 30396 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65044 32 32 387 309 1 191 100 17 17 289 -1 unnamed_device 24.6 MiB 1.98 948 18428 5133 10477 2818 63.5 MiB 0.21 0.00 3.72926 -129.095 -3.72926 3.72926 1.01 0.00121568 0.00112885 0.099385 0.0920231 34 2606 21 6.87369e+06 503058 618332. 2139.56 3.98 0.48676 0.43932 25762 151098 -1 2031 21 1508 2339 185338 41765 3.5118 3.5118 -132.343 -3.5118 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0496547 0.0448952 145 65 54 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 7.31 vpr 63.59 MiB 0.04 7288 -1 -1 1 0.04 -1 -1 30524 -1 -1 23 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65120 29 32 343 267 1 184 84 17 17 289 -1 unnamed_device 24.7 MiB 1.45 926 15090 5282 7268 2540 63.6 MiB 0.20 0.00 4.1666 -130.173 -4.1666 4.1666 0.98 0.00112994 0.00105182 0.0956682 0.0890532 34 2471 28 6.87369e+06 321398 618332. 2139.56 2.28 0.326453 0.295898 25762 151098 -1 2025 22 1858 3196 233287 53844 3.9517 3.9517 -138.572 -3.9517 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0479833 0.0433501 136 34 87 29 29 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 8.13 vpr 63.59 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30420 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65116 32 32 376 288 1 202 85 17 17 289 -1 unnamed_device 24.7 MiB 2.21 1030 14965 5016 7973 1976 63.6 MiB 0.21 0.00 4.2175 -149.17 -4.2175 4.2175 1.01 0.00122438 0.00113856 0.102076 0.094967 34 2926 24 6.87369e+06 293451 618332. 2139.56 2.26 0.364363 0.330608 25762 151098 -1 2525 24 2324 4273 353082 79350 4.11 4.11 -158.573 -4.11 0 0 787024. 2723.27 0.24 0.17 0.22 -1 -1 0.24 0.056386 0.0510635 147 34 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 8.86 vpr 63.71 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30492 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65236 32 32 402 316 1 200 103 17 17 289 -1 unnamed_device 24.7 MiB 1.30 1073 20588 6520 11266 2802 63.7 MiB 0.25 0.00 3.56907 -125.93 -3.56907 3.56907 0.98 0.00126943 0.0011745 0.112622 0.104356 28 2545 21 6.87369e+06 544980 531479. 1839.03 3.97 0.476915 0.431719 24610 126494 -1 2256 22 1681 2727 197401 46860 3.02616 3.02616 -128.576 -3.02616 0 0 648988. 2245.63 0.20 0.13 0.18 -1 -1 0.20 0.0542473 0.0490594 154 64 63 32 63 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 8.88 vpr 63.35 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30788 -1 -1 20 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 27 32 269 226 1 146 79 17 17 289 -1 unnamed_device 24.4 MiB 1.98 742 12754 4384 6452 1918 63.4 MiB 0.15 0.00 3.56305 -106.515 -3.56305 3.56305 0.98 0.000894808 0.000831032 0.0699182 0.0649568 26 2047 24 6.87369e+06 279477 503264. 1741.40 3.51 0.298454 0.268463 24322 120374 -1 1784 17 1150 1845 148293 34482 3.27486 3.27486 -115.159 -3.27486 0 0 618332. 2139.56 0.20 0.08 0.17 -1 -1 0.20 0.0312377 0.028153 102 34 54 27 27 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 8.24 vpr 63.32 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30200 -1 -1 35 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 24.4 MiB 1.01 991 14273 4115 7548 2610 63.3 MiB 0.16 0.00 3.50391 -113.72 -3.50391 3.50391 0.98 0.00109266 0.00101795 0.0719187 0.0668818 34 2557 23 6.87369e+06 489084 618332. 2139.56 3.71 0.407651 0.367993 25762 151098 -1 2002 21 1329 2095 135449 33638 3.00726 3.00726 -113.025 -3.00726 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0446549 0.0403923 141 4 115 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 9.17 vpr 63.03 MiB 0.06 7216 -1 -1 1 0.03 -1 -1 30168 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 31 32 338 292 1 154 79 17 17 289 -1 unnamed_device 24.0 MiB 2.71 771 7177 1785 4818 574 63.0 MiB 0.10 0.00 3.10152 -107.288 -3.10152 3.10152 0.72 0.00105139 0.000975385 0.0474112 0.0439818 32 2201 48 6.87369e+06 223581 586450. 2029.24 3.55 0.41091 0.368473 25474 144626 -1 1902 18 1034 1660 146139 33515 2.80996 2.80996 -112.579 -2.80996 0 0 744469. 2576.02 0.23 0.09 0.21 -1 -1 0.23 0.037914 0.0342145 103 85 0 0 84 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 9.62 vpr 63.23 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30356 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 3.81 713 9196 2055 5947 1194 63.2 MiB 0.12 0.00 3.55695 -123.921 -3.55695 3.55695 0.98 0.00104369 0.000970218 0.0583852 0.0542501 34 2466 38 6.87369e+06 223581 618332. 2139.56 2.31 0.306185 0.275932 25762 151098 -1 1664 21 1595 2525 159277 40097 3.06826 3.06826 -124.738 -3.06826 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0428745 0.0387126 114 34 64 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 7.78 vpr 63.19 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30160 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 30 32 325 273 1 160 80 17 17 289 -1 unnamed_device 24.2 MiB 3.01 789 13496 3921 8098 1477 63.2 MiB 0.16 0.00 3.56085 -119.59 -3.56085 3.56085 0.98 0.00104726 0.000973367 0.0833814 0.0774492 32 2059 20 6.87369e+06 251529 586450. 2029.24 1.17 0.212603 0.193315 25474 144626 -1 1775 21 1456 2170 175824 40965 3.05126 3.05126 -122.211 -3.05126 0 0 744469. 2576.02 0.23 0.11 0.21 -1 -1 0.23 0.0425995 0.038407 109 63 30 30 60 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 10.70 vpr 63.29 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30484 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 331 280 1 161 96 17 17 289 -1 unnamed_device 24.3 MiB 1.62 835 11484 3090 7822 572 63.3 MiB 0.14 0.00 3.48301 -117.758 -3.48301 3.48301 0.98 0.00104692 0.000970751 0.0575375 0.0531861 28 2358 26 6.87369e+06 447163 531479. 1839.03 5.76 0.373505 0.335433 24610 126494 -1 2136 20 1269 2149 195207 43236 2.88196 2.88196 -123.992 -2.88196 0 0 648988. 2245.63 0.20 0.11 0.14 -1 -1 0.20 0.0409102 0.0368774 116 65 25 25 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 9.97 vpr 63.56 MiB 0.03 7248 -1 -1 1 0.04 -1 -1 30292 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65084 32 32 386 305 1 195 99 17 17 289 -1 unnamed_device 24.5 MiB 4.22 957 17427 5091 10321 2015 63.6 MiB 0.22 0.00 3.63579 -124.841 -3.63579 3.63579 0.98 0.00125608 0.00116527 0.0981431 0.0910721 34 2722 24 6.87369e+06 489084 618332. 2139.56 2.15 0.361902 0.328127 25762 151098 -1 2238 21 1948 3410 236748 57078 3.14356 3.14356 -124.704 -3.14356 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.050514 0.0456835 147 58 64 32 57 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 9.92 vpr 63.49 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30472 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65012 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.4 MiB 2.30 1042 21016 6526 11897 2593 63.5 MiB 0.26 0.00 4.38115 -150.928 -4.38115 4.38115 0.99 0.00128768 0.00119643 0.117575 0.109157 32 3114 35 6.87369e+06 517032 586450. 2029.24 3.86 0.504196 0.456591 25474 144626 -1 2479 25 2280 3594 291417 66217 3.9064 3.9064 -151.888 -3.9064 0 0 744469. 2576.02 0.23 0.16 0.21 -1 -1 0.23 0.0616923 0.055822 155 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 6.88 vpr 63.09 MiB 0.07 7180 -1 -1 1 0.04 -1 -1 30612 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 29 32 272 228 1 148 80 17 17 289 -1 unnamed_device 24.3 MiB 2.18 801 11776 3453 6762 1561 63.1 MiB 0.13 0.00 3.43775 -109.554 -3.43775 3.43775 0.98 0.000910113 0.000845648 0.0648861 0.060362 32 2096 20 6.87369e+06 265503 586450. 2029.24 1.18 0.177237 0.160665 25474 144626 -1 1830 22 1211 2010 172562 39155 2.86896 2.86896 -109.018 -2.86896 0 0 744469. 2576.02 0.23 0.10 0.21 -1 -1 0.23 0.0388813 0.0349658 102 29 58 29 24 24 -fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 11.96 vpr 63.78 MiB 0.06 7244 -1 -1 1 0.03 -1 -1 30368 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65312 32 32 401 315 1 200 85 17 17 289 -1 unnamed_device 24.9 MiB 3.03 1029 14221 5946 7079 1196 63.8 MiB 0.18 0.00 3.65105 -129.633 -3.65105 3.65105 0.98 0.00126787 0.00117808 0.0998464 0.0928381 38 2532 24 6.87369e+06 293451 678818. 2348.85 5.25 0.535486 0.484115 26626 170182 -1 2115 22 2101 3648 248422 62383 3.19656 3.19656 -129.298 -3.19656 0 0 902133. 3121.57 0.26 0.14 0.25 -1 -1 0.26 0.0549057 0.0495846 145 63 64 32 62 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 9.08 vpr 63.54 MiB 0.05 7256 -1 -1 1 0.03 -1 -1 30496 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65060 32 32 383 303 1 193 102 17 17 289 -1 unnamed_device 24.6 MiB 4.29 1063 17238 4632 10836 1770 63.5 MiB 0.20 0.00 3.56385 -127.172 -3.56385 3.56385 1.01 0.00122034 0.00113405 0.0917744 0.0850485 28 2462 24 6.87369e+06 531006 531479. 1839.03 1.25 0.250737 0.227962 24610 126494 -1 2251 20 1566 2394 178389 40080 3.06226 3.06226 -127.71 -3.06226 0 0 648988. 2245.63 0.20 0.11 0.18 -1 -1 0.20 0.0481239 0.0435501 148 57 64 32 56 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 9.27 vpr 63.34 MiB 0.04 6932 -1 -1 1 0.03 -1 -1 30096 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 32 32 339 284 1 165 93 17 17 289 -1 unnamed_device 24.6 MiB 2.40 827 13113 3535 8341 1237 63.3 MiB 0.16 0.00 2.94421 -107.149 -2.94421 2.94421 0.98 0.001079 0.00100164 0.0702714 0.065169 30 2065 20 6.87369e+06 405241 556674. 1926.21 3.40 0.405 0.364244 25186 138497 -1 1683 18 1104 1763 100596 24142 1.98452 1.98452 -96.2727 -1.98452 0 0 706193. 2443.58 0.22 0.08 0.19 -1 -1 0.22 0.0387125 0.0350032 117 65 29 29 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 7.48 vpr 62.71 MiB 0.04 6928 -1 -1 1 0.03 -1 -1 30204 -1 -1 14 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 30 32 226 208 1 119 76 17 17 289 -1 unnamed_device 23.7 MiB 0.87 546 8876 3650 4795 431 62.7 MiB 0.09 0.00 2.76391 -90.9223 -2.76391 2.76391 0.98 0.000765037 0.000709194 0.0440968 0.0408838 34 1433 21 6.87369e+06 195634 618332. 2139.56 3.24 0.27258 0.243064 25762 151098 -1 1234 22 857 1223 106870 25012 2.05582 2.05582 -85.6028 -2.05582 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.0335577 0.0300183 73 34 24 24 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 6.31 vpr 63.25 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30480 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 31 32 335 280 1 165 80 17 17 289 -1 unnamed_device 24.2 MiB 1.57 892 12636 4354 6390 1892 63.2 MiB 0.16 0.00 4.18343 -130.726 -4.18343 4.18343 0.98 0.00106118 0.000985335 0.0806143 0.0748586 32 2250 27 6.87369e+06 237555 586450. 2029.24 1.23 0.222948 0.202376 25474 144626 -1 1833 18 1037 1559 135765 29818 3.3895 3.3895 -126.653 -3.3895 0 0 744469. 2576.02 0.23 0.09 0.21 -1 -1 0.23 0.0385399 0.0348046 113 64 31 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 6.94 vpr 63.55 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30248 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 366 283 1 197 100 17 17 289 -1 unnamed_device 24.6 MiB 1.11 890 19124 5701 10377 3046 63.5 MiB 0.23 0.00 4.28899 -141.244 -4.28899 4.28899 0.99 0.00120987 0.00112535 0.102139 0.0948815 34 2751 36 6.87369e+06 503058 618332. 2139.56 2.23 0.385041 0.349435 25762 151098 -1 1987 23 1855 2693 205477 48145 3.9547 3.9547 -141.653 -3.9547 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0530978 0.0480128 150 34 91 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 13.74 vpr 63.76 MiB 0.03 7368 -1 -1 1 0.03 -1 -1 30552 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65288 32 32 460 375 1 199 104 17 17 289 -1 unnamed_device 24.9 MiB 2.90 954 19380 5897 10246 3237 63.8 MiB 0.24 0.00 3.83561 -129.445 -3.83561 3.83561 0.98 0.00138686 0.00128937 0.113983 0.105707 28 3201 37 6.87369e+06 558954 531479. 1839.03 7.22 0.499896 0.45143 24610 126494 -1 2584 22 1663 2507 244089 66135 4.3389 4.3389 -146.788 -4.3389 0 0 648988. 2245.63 0.20 0.15 0.18 -1 -1 0.20 0.0598462 0.0540297 154 124 0 0 125 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 7.62 vpr 62.52 MiB 0.03 6840 -1 -1 1 0.03 -1 -1 30688 -1 -1 16 26 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 26 32 198 186 1 109 74 17 17 289 -1 unnamed_device 23.9 MiB 2.01 576 9219 3764 4871 584 62.5 MiB 0.08 0.00 2.74191 -79.4562 -2.74191 2.74191 0.98 0.000668519 0.000618718 0.0413078 0.038241 26 1436 22 6.87369e+06 223581 503264. 1741.40 2.37 0.213468 0.190502 24322 120374 -1 1293 21 774 1183 105813 23701 2.28642 2.28642 -81.7768 -2.28642 0 0 618332. 2139.56 0.20 0.07 0.17 -1 -1 0.20 0.0276268 0.0247537 69 30 26 26 22 22 -fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 7.27 vpr 63.57 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30152 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 24.7 MiB 1.57 1044 9943 2672 6704 567 63.6 MiB 0.15 0.00 4.1666 -141.968 -4.1666 4.1666 0.99 0.00114315 0.00106413 0.0637979 0.05934 34 2846 29 6.87369e+06 293451 618332. 2139.56 2.10 0.2618 0.237165 25762 151098 -1 2165 21 1828 3059 198551 50142 4.1943 4.1943 -145.909 -4.1943 0 0 787024. 2723.27 0.26 0.12 0.22 -1 -1 0.26 0.0467554 0.0423348 141 3 122 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 7.13 vpr 62.53 MiB 0.04 6784 -1 -1 1 0.03 -1 -1 30432 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 23.9 MiB 0.61 510 12556 3038 8879 639 62.5 MiB 0.11 0.00 2.37678 -85.3657 -2.37678 2.37678 0.98 0.00070852 0.000655834 0.0572894 0.0530549 28 1458 25 6.87369e+06 167686 531479. 1839.03 3.16 0.259032 0.232241 24610 126494 -1 1280 17 733 931 89176 25317 1.86652 1.86652 -86.3013 -1.86652 0 0 648988. 2245.63 0.23 0.06 0.18 -1 -1 0.23 0.0245572 0.0220775 71 3 53 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 6.09 vpr 63.82 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30592 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65348 32 32 376 288 1 202 100 17 17 289 -1 unnamed_device 24.9 MiB 0.90 1077 18660 4798 12102 1760 63.8 MiB 0.23 0.00 4.29809 -149.349 -4.29809 4.29809 1.03 0.00122414 0.00112993 0.100951 0.0937807 32 3065 35 6.87369e+06 503058 586450. 2029.24 1.50 0.277572 0.252846 25474 144626 -1 2492 24 2040 3127 265448 60370 4.0632 4.0632 -155.321 -4.0632 0 0 744469. 2576.02 0.23 0.14 0.21 -1 -1 0.23 0.05557 0.0501925 155 34 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 5.80 vpr 63.43 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30104 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 24.5 MiB 1.05 1035 13556 3460 8646 1450 63.4 MiB 0.17 0.00 3.55285 -121.924 -3.55285 3.55285 0.99 0.00114712 0.0010677 0.0698952 0.0649413 32 2601 23 6.87369e+06 503058 586450. 2029.24 1.21 0.21801 0.19834 25474 144626 -1 2150 20 1536 2474 168085 40228 2.99626 2.99626 -120.292 -2.99626 0 0 744469. 2576.02 0.23 0.11 0.21 -1 -1 0.23 0.0458066 0.0414639 151 3 124 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 9.30 vpr 63.83 MiB 0.04 7204 -1 -1 1 0.03 -1 -1 30548 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 407 319 1 202 103 17 17 289 -1 unnamed_device 24.8 MiB 1.24 1071 14081 3700 9458 923 63.8 MiB 0.19 0.00 4.2699 -147.959 -4.2699 4.2699 0.98 0.00127982 0.00118932 0.0791804 0.073437 30 2752 24 6.87369e+06 544980 556674. 1926.21 4.48 0.500002 0.450977 25186 138497 -1 2227 21 1759 3020 182508 42543 3.6448 3.6448 -142.825 -3.6448 0 0 706193. 2443.58 0.22 0.12 0.19 -1 -1 0.22 0.052109 0.0471776 156 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 6.51 vpr 62.95 MiB 0.05 6860 -1 -1 1 0.03 -1 -1 30292 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64460 32 32 294 246 1 157 79 17 17 289 -1 unnamed_device 24.0 MiB 1.35 741 7346 1842 5043 461 62.9 MiB 0.10 0.00 3.07332 -108.287 -3.07332 3.07332 0.99 0.000976371 0.000906693 0.0449575 0.0417752 32 2205 36 6.87369e+06 209608 586450. 2029.24 1.72 0.234344 0.210953 25474 144626 -1 1895 20 1115 1816 164660 37371 3.20286 3.20286 -117.555 -3.20286 0 0 744469. 2576.02 0.23 0.10 0.21 -1 -1 0.23 0.0386823 0.034864 104 34 54 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 5.99 vpr 63.17 MiB 0.04 7184 -1 -1 1 0.03 -1 -1 30224 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 30 32 296 244 1 160 80 17 17 289 -1 unnamed_device 24.2 MiB 1.23 868 11260 4122 5381 1757 63.2 MiB 0.13 0.00 3.54295 -119.425 -3.54295 3.54295 1.01 0.000986141 0.000916626 0.0667017 0.0619515 32 2249 24 6.87369e+06 251529 586450. 2029.24 1.25 0.1945 0.176292 25474 144626 -1 1756 21 1400 2098 179028 40122 2.94596 2.94596 -117.481 -2.94596 0 0 744469. 2576.02 0.23 0.10 0.21 -1 -1 0.23 0.0403095 0.0363308 109 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 8.49 vpr 63.18 MiB 0.04 7128 -1 -1 1 0.03 -1 -1 30412 -1 -1 19 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 28 32 278 232 1 150 79 17 17 289 -1 unnamed_device 24.3 MiB 1.32 741 13092 5164 5931 1997 63.2 MiB 0.16 0.00 3.48175 -108.061 -3.48175 3.48175 0.98 0.000928352 0.000862366 0.075439 0.070114 34 1997 24 6.87369e+06 265503 618332. 2139.56 3.64 0.382858 0.344105 25762 151098 -1 1760 20 1271 2156 161172 38201 3.06026 3.06026 -112.751 -3.06026 0 0 787024. 2723.27 0.25 0.10 0.22 -1 -1 0.25 0.0368515 0.0332167 104 34 56 28 28 28 -fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 7.11 vpr 63.17 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 1.60 858 14700 5473 6996 2231 63.2 MiB 0.20 0.00 3.58201 -129.055 -3.58201 3.58201 0.98 0.00146053 0.00136134 0.0951959 0.0886448 34 2377 21 6.87369e+06 223581 618332. 2139.56 1.95 0.299079 0.271065 25762 151098 -1 1972 20 1470 2432 195064 43242 3.07626 3.07626 -128.201 -3.07626 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0388907 0.0351066 114 3 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 5.71 vpr 63.24 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 30332 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 31 32 303 249 1 163 95 17 17 289 -1 unnamed_device 24.4 MiB 1.07 909 12839 3118 8295 1426 63.2 MiB 0.14 0.00 3.52165 -121.124 -3.52165 3.52165 0.98 0.0010012 0.000930879 0.0621254 0.0576395 32 2377 26 6.87369e+06 447163 586450. 2029.24 1.22 0.195034 0.176667 25474 144626 -1 1929 21 1384 2265 184107 42474 2.96796 2.96796 -119.923 -2.96796 0 0 744469. 2576.02 0.22 0.11 0.19 -1 -1 0.22 0.0410761 0.0370152 119 34 61 31 31 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 9.42 vpr 63.27 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 30188 -1 -1 32 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 29 32 312 264 1 155 93 17 17 289 -1 unnamed_device 24.4 MiB 2.52 732 15003 3853 9045 2105 63.3 MiB 0.17 0.00 2.93321 -94.3568 -2.93321 2.93321 0.99 0.000999686 0.000925852 0.0760927 0.0705476 26 2064 25 6.87369e+06 447163 503264. 1741.40 3.47 0.318732 0.287095 24322 120374 -1 1746 24 1470 2495 199177 46390 2.41642 2.41642 -97.4255 -2.41642 0 0 618332. 2139.56 0.19 0.12 0.17 -1 -1 0.19 0.0456031 0.0409989 113 61 29 29 57 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 10.59 vpr 64.08 MiB 0.05 7220 -1 -1 1 0.04 -1 -1 30504 -1 -1 44 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65616 32 32 423 310 1 231 108 17 17 289 -1 unnamed_device 25.1 MiB 3.78 1323 20411 5678 12347 2386 64.1 MiB 0.28 0.00 4.2699 -148.689 -4.2699 4.2699 0.90 0.00122181 0.00112569 0.113465 0.105426 28 3672 31 6.87369e+06 614849 531479. 1839.03 3.16 0.317177 0.289129 24610 126494 -1 3087 23 2412 4365 424128 110292 4.3826 4.3826 -162.844 -4.3826 0 0 648988. 2245.63 0.21 0.20 0.18 -1 -1 0.21 0.0628534 0.0569193 184 29 128 32 27 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 7.79 vpr 63.71 MiB 0.04 7084 -1 -1 1 0.03 -1 -1 30548 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 403 317 1 200 103 17 17 289 -1 unnamed_device 24.6 MiB 2.84 1053 18419 4965 10740 2714 63.7 MiB 0.22 0.00 3.69025 -132.499 -3.69025 3.69025 0.98 0.00103314 0.000941814 0.100667 0.093543 32 2735 42 6.87369e+06 544980 586450. 2029.24 1.31 0.287508 0.261337 25474 144626 -1 2141 18 1692 2493 177926 40884 3.02916 3.02916 -128.868 -3.02916 0 0 744469. 2576.02 0.23 0.11 0.21 -1 -1 0.23 0.0463754 0.0420779 154 65 62 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 8.82 vpr 63.28 MiB 0.04 7192 -1 -1 1 0.03 -1 -1 30436 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64800 31 32 353 302 1 160 94 17 17 289 -1 unnamed_device 24.3 MiB 3.36 873 17134 5030 9795 2309 63.3 MiB 0.19 0.00 3.56907 -120.638 -3.56907 3.56907 0.99 0.00109115 0.00101316 0.0909121 0.0843498 34 1988 23 6.87369e+06 433189 618332. 2139.56 1.87 0.316456 0.285787 25762 151098 -1 1720 19 1092 1744 118105 28122 2.81766 2.81766 -111.111 -2.81766 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0406203 0.0366102 116 90 0 0 89 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 8.03 vpr 63.44 MiB 0.05 7324 -1 -1 1 0.03 -1 -1 30352 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 31 32 391 309 1 195 85 17 17 289 -1 unnamed_device 24.6 MiB 2.41 1012 8455 2161 5478 816 63.4 MiB 0.14 0.00 3.59121 -120.623 -3.59121 3.59121 0.98 0.00123508 0.00114818 0.0593121 0.0551384 34 2685 25 6.87369e+06 307425 618332. 2139.56 2.07 0.325429 0.2944 25762 151098 -1 2243 19 1648 2730 210963 48456 3.25006 3.25006 -123.466 -3.25006 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0469939 0.0425943 141 64 60 30 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 11.35 vpr 63.68 MiB 0.04 7332 -1 -1 1 0.03 -1 -1 30456 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65208 31 32 455 371 1 198 85 17 17 289 -1 unnamed_device 24.7 MiB 5.00 1069 16825 6934 7974 1917 63.7 MiB 0.25 0.00 4.97069 -151.821 -4.97069 4.97069 0.99 0.00137561 0.00127786 0.129341 0.120161 34 2708 26 6.87369e+06 307425 618332. 2139.56 2.62 0.429471 0.389054 25762 151098 -1 2346 20 1575 2608 219010 47769 4.26395 4.26395 -150.909 -4.26395 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0538528 0.0486913 145 124 0 0 124 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 8.27 vpr 63.52 MiB 0.05 7344 -1 -1 1 0.03 -1 -1 30396 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65044 31 32 413 333 1 195 85 17 17 289 -1 unnamed_device 24.6 MiB 2.45 992 12547 3655 8033 859 63.5 MiB 0.18 0.00 4.75154 -140.363 -4.75154 4.75154 0.98 0.00127904 0.0011883 0.0887223 0.0824125 34 2618 26 6.87369e+06 307425 618332. 2139.56 2.14 0.365608 0.331258 25762 151098 -1 2056 23 1594 2611 193173 45009 3.81876 3.81876 -136.744 -3.81876 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0565889 0.0511968 141 90 31 31 89 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 8.16 vpr 63.60 MiB 0.04 7140 -1 -1 1 0.03 -1 -1 30428 -1 -1 36 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65124 31 32 391 309 1 195 99 17 17 289 -1 unnamed_device 24.6 MiB 2.36 1065 19023 5641 10657 2725 63.6 MiB 0.23 0.00 3.57405 -123.706 -3.57405 3.57405 0.98 0.00124624 0.00114642 0.106465 0.098585 34 2588 29 6.87369e+06 503058 618332. 2139.56 2.10 0.379894 0.344464 25762 151098 -1 2084 22 1880 3250 219296 51795 2.94596 2.94596 -119.415 -2.94596 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0534831 0.0484446 148 64 60 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 6.51 vpr 63.89 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30696 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65424 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 24.9 MiB 1.76 1155 19618 5472 12434 1712 63.9 MiB 0.24 0.00 4.1996 -146.035 -4.1996 4.1996 0.72 0.00125968 0.00117048 0.107609 0.0998374 30 2958 23 6.87369e+06 531006 556674. 1926.21 1.36 0.266516 0.242826 25186 138497 -1 2309 19 1570 2428 163554 36586 3.9064 3.9064 -153.734 -3.9064 0 0 706193. 2443.58 0.22 0.11 0.19 -1 -1 0.22 0.0474189 0.0429786 156 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 11.31 vpr 64.35 MiB 0.05 7468 -1 -1 1 0.03 -1 -1 30828 -1 -1 42 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65896 32 32 496 380 1 234 106 17 17 289 -1 unnamed_device 25.3 MiB 3.00 1304 13356 3354 8810 1192 64.4 MiB 0.21 0.00 4.3641 -151.21 -4.3641 4.3641 0.98 0.00153371 0.00142534 0.0860444 0.0799857 32 3822 31 6.87369e+06 586901 586450. 2029.24 4.51 0.620559 0.560249 25474 144626 -1 2827 29 2623 4317 315879 78799 3.7561 3.7561 -149.468 -3.7561 0 0 744469. 2576.02 0.23 0.20 0.21 -1 -1 0.23 0.0829383 0.0749782 186 96 62 32 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 7.87 vpr 63.15 MiB 0.04 7064 -1 -1 1 0.04 -1 -1 30572 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 31 32 305 250 1 164 80 17 17 289 -1 unnamed_device 24.2 MiB 2.19 912 12636 4358 6898 1380 63.1 MiB 0.13 0.00 3.51475 -123.276 -3.51475 3.51475 1.09 0.000682111 0.000627646 0.0524465 0.0483256 32 2415 49 6.87369e+06 237555 586450. 2029.24 2.07 0.27636 0.24862 25474 144626 -1 1991 21 1422 2299 207263 45001 3.09956 3.09956 -125.694 -3.09956 0 0 744469. 2576.02 0.23 0.11 0.21 -1 -1 0.23 0.0414716 0.0373047 112 34 62 31 31 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 11.58 vpr 63.64 MiB 0.03 7308 -1 -1 1 0.05 -1 -1 30488 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65168 31 32 395 311 1 198 100 17 17 289 -1 unnamed_device 24.7 MiB 2.62 1030 19820 5893 11323 2604 63.6 MiB 0.26 0.00 4.2065 -140.971 -4.2065 4.2065 0.99 0.0012539 0.00116369 0.116624 0.108168 26 3219 42 6.87369e+06 517032 503264. 1741.40 5.39 0.47306 0.428187 24322 120374 -1 2730 25 2123 3382 339982 75260 4.52191 4.52191 -165.528 -4.52191 0 0 618332. 2139.56 0.20 0.18 0.17 -1 -1 0.20 0.0603858 0.0543775 152 64 62 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 9.39 vpr 63.88 MiB 0.04 7256 -1 -1 1 0.03 -1 -1 30544 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65412 32 32 397 313 1 198 99 17 17 289 -1 unnamed_device 24.9 MiB 1.91 1125 15147 4465 9540 1142 63.9 MiB 0.20 0.00 3.50375 -124.908 -3.50375 3.50375 0.99 0.00126234 0.0011737 0.0867753 0.0806532 30 2615 20 6.87369e+06 489084 556674. 1926.21 3.87 0.435668 0.393883 25186 138497 -1 2047 22 1534 2693 140187 33757 2.78966 2.78966 -116.866 -2.78966 0 0 706193. 2443.58 0.22 0.11 0.19 -1 -1 0.22 0.0533377 0.0482919 150 63 62 32 62 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 8.27 vpr 63.37 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 30432 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 24.4 MiB 1.79 962 16825 4488 11549 788 63.4 MiB 0.20 0.00 4.1996 -145.34 -4.1996 4.1996 0.99 0.000792292 0.000730706 0.0772803 0.0714827 34 3157 22 6.87369e+06 293451 618332. 2139.56 2.74 0.323392 0.292674 25762 151098 -1 2396 23 2220 3846 270655 67065 4.0367 4.0367 -157.406 -4.0367 0 0 787024. 2723.27 0.24 0.15 0.22 -1 -1 0.24 0.0554433 0.0502304 147 3 128 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 9.11 vpr 63.72 MiB 0.05 7300 -1 -1 1 0.03 -1 -1 30420 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65248 32 32 424 343 1 195 100 17 17 289 -1 unnamed_device 24.7 MiB 3.42 1065 20980 6969 11401 2610 63.7 MiB 0.25 0.00 3.58505 -126.902 -3.58505 3.58505 0.98 0.00129186 0.001199 0.120098 0.111397 34 2469 20 6.87369e+06 503058 618332. 2139.56 1.99 0.388689 0.352727 25762 151098 -1 2085 25 1827 2874 179951 43711 3.04926 3.04926 -123.282 -3.04926 0 0 787024. 2723.27 0.24 0.13 0.19 -1 -1 0.24 0.0605921 0.0547069 148 96 25 25 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 8.88 vpr 63.57 MiB 0.04 7088 -1 -1 1 0.03 -1 -1 30320 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65096 32 32 395 311 1 198 103 17 17 289 -1 unnamed_device 24.5 MiB 3.39 1034 16009 4261 10158 1590 63.6 MiB 0.20 0.00 3.64005 -127.969 -3.64005 3.64005 0.99 0.00130798 0.00121875 0.0899586 0.0837631 28 2571 32 6.87369e+06 544980 531479. 1839.03 1.97 0.270869 0.24704 24610 126494 -1 2270 23 1484 2775 199040 48876 3.42516 3.42516 -136.092 -3.42516 0 0 648988. 2245.63 0.20 0.13 0.20 -1 -1 0.20 0.0560464 0.0507892 152 61 64 32 60 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 7.92 vpr 63.71 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 30416 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 405 318 1 201 104 17 17 289 -1 unnamed_device 24.7 MiB 2.76 1111 18648 5077 11300 2271 63.7 MiB 0.23 0.00 3.58025 -127.27 -3.58025 3.58025 0.99 0.00130231 0.00120219 0.102272 0.0947779 32 3117 40 6.87369e+06 558954 586450. 2029.24 1.52 0.30224 0.274695 25474 144626 -1 2310 22 2000 3307 284060 64046 3.08856 3.08856 -123.355 -3.08856 0 0 744469. 2576.02 0.23 0.14 0.21 -1 -1 0.23 0.0544409 0.0492729 156 65 63 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 7.31 vpr 63.73 MiB 0.02 7072 -1 -1 1 0.04 -1 -1 30744 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65260 32 32 376 288 1 202 103 17 17 289 -1 unnamed_device 24.7 MiB 1.02 958 13599 3600 8151 1848 63.7 MiB 0.15 0.00 4.3249 -147.82 -4.3249 4.3249 0.98 0.00121682 0.00113107 0.0716327 0.0664574 34 3022 29 6.87369e+06 544980 618332. 2139.56 2.74 0.342003 0.309904 25762 151098 -1 2251 22 1963 3122 207067 53207 4.0177 4.0177 -153.594 -4.0177 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0519338 0.0469787 156 34 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 11.14 vpr 63.66 MiB 0.03 7204 -1 -1 1 0.04 -1 -1 30696 -1 -1 41 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65184 32 32 407 319 1 202 105 17 17 289 -1 unnamed_device 24.5 MiB 2.66 1138 19865 5157 12797 1911 63.7 MiB 0.24 0.00 4.20633 -143.385 -4.20633 4.20633 0.99 0.0012794 0.0011894 0.105072 0.0973586 28 2812 35 6.87369e+06 572927 531479. 1839.03 4.85 0.508266 0.459808 24610 126494 -1 2542 19 1958 3236 232865 56463 4.2903 4.2903 -159.074 -4.2903 0 0 648988. 2245.63 0.28 0.13 0.16 -1 -1 0.28 0.048253 0.043716 157 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 8.91 vpr 63.74 MiB 0.05 7464 -1 -1 1 0.04 -1 -1 30428 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65272 31 32 449 367 1 195 100 17 17 289 -1 unnamed_device 24.7 MiB 3.67 910 8684 1839 6215 630 63.7 MiB 0.13 0.00 4.22589 -134.122 -4.22589 4.22589 0.99 0.00118157 0.00108266 0.055177 0.0511462 30 2752 25 6.87369e+06 517032 556674. 1926.21 1.79 0.236106 0.213581 25186 138497 -1 2053 20 1379 2449 129700 33281 3.8074 3.8074 -136.498 -3.8074 0 0 706193. 2443.58 0.22 0.11 0.19 -1 -1 0.22 0.0525788 0.047436 150 122 0 0 122 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 9.26 vpr 63.75 MiB 0.02 7416 -1 -1 1 0.04 -1 -1 30480 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65276 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 24.7 MiB 3.15 1073 15709 4453 9637 1619 63.7 MiB 0.23 0.00 4.13359 -143.434 -4.13359 4.13359 0.99 0.00132585 0.00123134 0.115542 0.107372 34 3085 22 6.87369e+06 293451 618332. 2139.56 2.51 0.395158 0.358507 25762 151098 -1 2558 23 2117 3883 303226 70494 3.952 3.952 -150.053 -3.952 0 0 787024. 2723.27 0.24 0.16 0.22 -1 -1 0.24 0.0590131 0.0533083 145 94 32 32 94 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 5.95 vpr 63.40 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30660 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 312 255 1 167 96 17 17 289 -1 unnamed_device 24.6 MiB 1.14 917 13236 3861 8362 1013 63.4 MiB 0.14 0.00 3.51475 -125.811 -3.51475 3.51475 0.98 0.000718446 0.000663127 0.0576793 0.0534071 32 2369 29 6.87369e+06 447163 586450. 2029.24 1.27 0.197503 0.178705 25474 144626 -1 2048 22 1502 2388 195051 44741 3.08226 3.08226 -126.971 -3.08226 0 0 744469. 2576.02 0.25 0.11 0.20 -1 -1 0.25 0.0430929 0.0388216 121 34 63 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 7.81 vpr 63.34 MiB 0.04 7176 -1 -1 1 0.03 -1 -1 30408 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 370 314 1 166 80 17 17 289 -1 unnamed_device 24.6 MiB 2.92 946 12980 4388 6886 1706 63.3 MiB 0.18 0.00 3.54295 -128.782 -3.54295 3.54295 0.98 0.00113853 0.00105614 0.0888105 0.0824119 32 2549 24 6.87369e+06 223581 586450. 2029.24 1.27 0.236784 0.214961 25474 144626 -1 2196 24 1616 2581 255773 54322 3.07756 3.07756 -130.824 -3.07756 0 0 744469. 2576.02 0.23 0.14 0.21 -1 -1 0.23 0.0521401 0.0469814 112 94 0 0 94 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 8.98 vpr 64.11 MiB 0.05 7424 -1 -1 1 0.03 -1 -1 30836 -1 -1 44 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65652 32 32 469 351 1 236 108 17 17 289 -1 unnamed_device 24.8 MiB 2.07 1417 17327 4454 11447 1426 64.1 MiB 0.24 0.00 4.99284 -170.997 -4.99284 4.99284 1.01 0.00148336 0.0013812 0.103924 0.0965991 28 4003 47 6.87369e+06 614849 531479. 1839.03 3.25 0.355167 0.322905 24610 126494 -1 3356 21 2538 4405 430464 89497 4.95615 4.95615 -183.784 -4.95615 0 0 648988. 2245.63 0.20 0.19 0.18 -1 -1 0.20 0.0606135 0.054947 189 65 96 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 9.62 vpr 63.70 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 30428 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65224 32 32 368 284 1 198 99 17 17 289 -1 unnamed_device 24.7 MiB 2.65 1065 15831 3840 10210 1781 63.7 MiB 0.20 0.00 3.60769 -128.222 -3.60769 3.60769 0.98 0.0012164 0.00113121 0.087026 0.0808105 30 2367 19 6.87369e+06 489084 556674. 1926.21 3.46 0.485158 0.438477 25186 138497 -1 1991 18 1315 2128 103318 26163 3.01816 3.01816 -127.54 -3.01816 0 0 706193. 2443.58 0.22 0.09 0.19 -1 -1 0.22 0.0437257 0.0396015 150 34 92 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 5.45 vpr 63.24 MiB 0.04 7104 -1 -1 1 0.03 -1 -1 30356 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 30 32 296 244 1 160 93 17 17 289 -1 unnamed_device 24.2 MiB 0.71 821 15633 5296 7678 2659 63.2 MiB 0.17 0.00 3.50375 -115.855 -3.50375 3.50375 0.99 0.000995968 0.000913677 0.0757553 0.0702436 28 2080 22 6.87369e+06 433189 531479. 1839.03 1.33 0.199089 0.180665 24610 126494 -1 1774 22 1379 2147 164166 38367 2.87096 2.87096 -114.479 -2.87096 0 0 648988. 2245.63 0.20 0.10 0.13 -1 -1 0.20 0.0416878 0.03753 116 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 14.00 vpr 64.02 MiB 0.05 7556 -1 -1 1 0.04 -1 -1 30928 -1 -1 47 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65560 32 32 531 413 1 236 111 17 17 289 -1 unnamed_device 25.2 MiB 5.44 1186 22455 6542 12947 2966 64.0 MiB 0.30 0.00 4.91264 -166.988 -4.91264 4.91264 1.00 0.00159703 0.00148405 0.138887 0.12895 34 3183 26 6.87369e+06 656770 618332. 2139.56 4.71 0.578756 0.524655 25762 151098 -1 2568 23 2525 3955 317615 71312 4.59755 4.59755 -170.684 -4.59755 0 0 787024. 2723.27 0.25 0.17 0.22 -1 -1 0.25 0.0702688 0.0636143 190 127 32 32 128 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 11.05 vpr 63.64 MiB 0.04 7136 -1 -1 1 0.03 -1 -1 30404 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 32 32 376 288 1 202 104 17 17 289 -1 unnamed_device 24.8 MiB 2.93 985 19868 5842 10383 3643 63.6 MiB 0.22 0.00 4.23469 -143.901 -4.23469 4.23469 1.04 0.00122911 0.00114371 0.103249 0.0959407 34 2627 25 6.87369e+06 558954 618332. 2139.56 4.56 0.434615 0.393705 25762 151098 -1 2037 24 2089 3094 219066 51685 3.8063 3.8063 -146.756 -3.8063 0 0 787024. 2723.27 0.24 0.13 0.18 -1 -1 0.24 0.0562052 0.0508481 156 34 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 5.71 vpr 63.32 MiB 0.03 6984 -1 -1 1 0.03 -1 -1 30340 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 24.5 MiB 0.93 863 11641 2973 7602 1066 63.3 MiB 0.14 0.00 3.61805 -128.853 -3.61805 3.61805 1.01 0.000982111 0.000911159 0.0548498 0.0508847 30 2313 20 6.87369e+06 461137 556674. 1926.21 1.26 0.175365 0.158877 25186 138497 -1 1833 21 1352 2272 138158 32614 2.73936 2.73936 -119.013 -2.73936 0 0 706193. 2443.58 0.22 0.10 0.20 -1 -1 0.22 0.0402703 0.0363233 123 3 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 8.36 vpr 63.87 MiB 0.05 7340 -1 -1 1 0.03 -1 -1 30984 -1 -1 45 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65404 32 32 438 320 1 236 109 17 17 289 -1 unnamed_device 25.0 MiB 2.60 1252 21169 6025 12385 2759 63.9 MiB 0.30 0.00 4.96574 -169.764 -4.96574 4.96574 0.99 0.00142301 0.00132507 0.12858 0.120004 28 3541 24 6.87369e+06 628823 531479. 1839.03 2.10 0.31302 0.286171 24610 126494 -1 2953 23 2742 4807 408917 92642 4.94815 4.94815 -181.752 -4.94815 0 0 648988. 2245.63 0.20 0.14 0.18 -1 -1 0.20 0.0371538 0.0334546 189 34 128 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 6.99 vpr 63.20 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30288 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 1.56 800 11776 2730 8638 408 63.2 MiB 0.14 0.00 3.52575 -126.142 -3.52575 3.52575 0.99 0.000977734 0.000909125 0.0673657 0.0625953 34 2210 22 6.87369e+06 223581 618332. 2139.56 1.93 0.272368 0.246109 25762 151098 -1 1892 21 1583 2561 193558 44327 2.97896 2.97896 -127.198 -2.97896 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0403413 0.0363877 114 3 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 6.84 vpr 63.34 MiB 0.04 7000 -1 -1 1 0.03 -1 -1 30200 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 30 32 296 244 1 162 95 17 17 289 -1 unnamed_device 24.4 MiB 2.13 726 10247 2605 6820 822 63.3 MiB 0.12 0.00 3.56001 -114.521 -3.56001 3.56001 0.98 0.000977104 0.000907063 0.0486019 0.0450249 28 1988 22 6.87369e+06 461137 531479. 1839.03 1.27 0.172431 0.155771 24610 126494 -1 1867 24 1488 2382 192221 44782 3.09326 3.09326 -119.776 -3.09326 0 0 648988. 2245.63 0.21 0.13 0.18 -1 -1 0.21 0.0455401 0.0406269 118 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 14.53 vpr 63.51 MiB 0.04 7404 -1 -1 1 0.03 -1 -1 30348 -1 -1 35 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 29 32 393 319 1 185 96 17 17 289 -1 unnamed_device 24.6 MiB 3.09 838 14550 4269 7291 2990 63.5 MiB 0.19 0.00 3.60705 -111.262 -3.60705 3.60705 0.89 0.00121916 0.0011326 0.0841739 0.0781272 28 2679 24 6.87369e+06 489084 531479. 1839.03 8.01 0.492586 0.444196 24610 126494 -1 2154 23 1681 2972 268822 62877 3.42846 3.42846 -120.813 -3.42846 0 0 648988. 2245.63 0.20 0.14 0.18 -1 -1 0.20 0.0535351 0.0483313 141 88 29 29 85 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 8.16 vpr 63.50 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 30756 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.7 MiB 2.47 855 9385 2020 5887 1478 63.5 MiB 0.13 0.00 4.2388 -145.988 -4.2388 4.2388 0.98 0.00127728 0.00118742 0.0679349 0.0631972 32 3276 23 6.87369e+06 293451 586450. 2029.24 2.10 0.28886 0.261888 25474 144626 -1 2273 23 2228 3361 296493 70074 4.36361 4.36361 -163.712 -4.36361 0 0 744469. 2576.02 0.23 0.15 0.23 -1 -1 0.23 0.0567816 0.0514462 147 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 9.17 vpr 63.58 MiB 0.04 7256 -1 -1 1 0.03 -1 -1 30672 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65108 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.5 MiB 4.04 1101 18901 5415 11502 1984 63.6 MiB 0.23 0.00 4.27375 -150.325 -4.27375 4.27375 0.98 0.000795755 0.000734811 0.0998887 0.0926706 30 2727 28 6.87369e+06 517032 556674. 1926.21 1.44 0.271954 0.247327 25186 138497 -1 2370 21 1881 3186 205028 46397 3.7811 3.7811 -148.809 -3.7811 0 0 706193. 2443.58 0.22 0.13 0.19 -1 -1 0.22 0.0525194 0.0476007 155 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 8.53 vpr 63.39 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30560 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64908 32 32 345 287 1 168 97 17 17 289 -1 unnamed_device 24.5 MiB 2.86 834 17191 6478 8946 1767 63.4 MiB 0.19 0.00 3.58505 -126.386 -3.58505 3.58505 0.98 0.00109594 0.00101196 0.087313 0.0809574 34 2120 22 6.87369e+06 461137 618332. 2139.56 1.99 0.262316 0.237695 25762 151098 -1 1822 24 1704 2607 182569 44312 3.05726 3.05726 -124.092 -3.05726 0 0 787024. 2723.27 0.28 0.12 0.22 -1 -1 0.28 0.0512729 0.0462161 123 65 32 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 9.19 vpr 63.34 MiB 0.02 7232 -1 -1 1 0.05 -1 -1 30468 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 31 32 353 302 1 160 81 17 17 289 -1 unnamed_device 24.6 MiB 3.80 853 13381 4420 7135 1826 63.3 MiB 0.17 0.00 3.47075 -119.995 -3.47075 3.47075 0.98 0.001087 0.00100895 0.0859412 0.0797372 34 2229 21 6.87369e+06 251529 618332. 2139.56 1.88 0.307584 0.277668 25762 151098 -1 1877 23 1278 2303 177041 40660 2.95226 2.95226 -116.97 -2.95226 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0484156 0.0436296 108 90 0 0 89 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 8.09 vpr 63.48 MiB 0.05 7368 -1 -1 1 0.04 -1 -1 30364 -1 -1 34 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65008 30 32 374 297 1 189 96 17 17 289 -1 unnamed_device 24.6 MiB 2.75 920 16740 4557 9743 2440 63.5 MiB 0.21 0.00 3.58505 -116.136 -3.58505 3.58505 0.98 0.00118945 0.00110532 0.0935231 0.0868411 32 2571 25 6.87369e+06 475111 586450. 2029.24 1.73 0.295045 0.267994 25474 144626 -1 1847 21 1299 2127 133130 34557 3.04626 3.04626 -115.112 -3.04626 0 0 744469. 2576.02 0.23 0.10 0.21 -1 -1 0.23 0.0481826 0.0435128 143 60 60 30 57 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 7.35 vpr 63.46 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30492 -1 -1 35 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64980 28 32 332 260 1 180 95 17 17 289 -1 unnamed_device 24.6 MiB 1.47 910 12623 3390 8288 945 63.5 MiB 0.15 0.00 4.19891 -126.139 -4.19891 4.19891 0.99 0.00108108 0.00100565 0.0671783 0.0623734 26 2649 48 6.87369e+06 489084 503264. 1741.40 2.46 0.253862 0.229972 24322 120374 -1 2244 24 1651 2727 249845 55083 4.08 4.08 -139.751 -4.08 0 0 618332. 2139.56 0.20 0.13 0.17 -1 -1 0.20 0.0466449 0.0419959 139 34 84 28 28 28 -fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 10.19 vpr 63.42 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30164 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64944 30 32 325 273 1 161 80 17 17 289 -1 unnamed_device 24.4 MiB 2.89 881 11432 3949 5585 1898 63.4 MiB 0.15 0.00 3.58339 -121.207 -3.58339 3.58339 0.99 0.0010375 0.000963128 0.0712865 0.0662132 36 1986 24 6.87369e+06 251529 648988. 2245.63 3.76 0.399474 0.359127 26050 158493 -1 1809 20 1308 2194 150397 34518 3.10756 3.10756 -122.311 -3.10756 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0408131 0.0368161 110 63 30 30 60 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 8.70 vpr 63.35 MiB 0.04 7168 -1 -1 1 0.03 -1 -1 30464 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 361 308 1 163 81 17 17 289 -1 unnamed_device 24.3 MiB 3.25 903 14256 4854 7252 2150 63.4 MiB 0.18 0.00 3.47695 -121.703 -3.47695 3.47695 0.99 0.00111682 0.00103623 0.0933405 0.0866189 34 2230 22 6.87369e+06 237555 618332. 2139.56 1.88 0.327468 0.296298 25762 151098 -1 1875 22 1242 2094 156841 36282 2.94116 2.94116 -119.221 -2.94116 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0470195 0.0423711 110 91 0 0 91 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 8.69 vpr 63.56 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30400 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65084 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 24.6 MiB 1.06 962 16804 5065 8760 2979 63.6 MiB 0.20 0.00 4.2699 -140.915 -4.2699 4.2699 0.98 0.0011364 0.00105715 0.0850849 0.0791464 30 2908 21 6.87369e+06 517032 556674. 1926.21 4.06 0.416363 0.376546 25186 138497 -1 2038 22 1584 2479 135810 33854 3.7781 3.7781 -139.534 -3.7781 0 0 706193. 2443.58 0.22 0.11 0.19 -1 -1 0.22 0.0493151 0.0447213 151 4 124 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 9.27 vpr 63.67 MiB 0.04 7256 -1 -1 1 0.03 -1 -1 30532 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65196 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 24.6 MiB 3.88 1088 19380 5928 11114 2338 63.7 MiB 0.24 0.00 4.1996 -147.862 -4.1996 4.1996 0.99 0.00127947 0.0011892 0.107576 0.0998002 28 3135 29 6.87369e+06 531006 531479. 1839.03 1.78 0.285913 0.26023 24610 126494 -1 2735 23 2182 3880 316428 71700 4.2273 4.2273 -159.495 -4.2273 0 0 648988. 2245.63 0.20 0.16 0.18 -1 -1 0.20 0.0564958 0.0511037 156 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 14.76 vpr 63.71 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30460 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.6 MiB 3.78 1134 16551 4231 10536 1784 63.7 MiB 0.21 0.00 4.30289 -150.348 -4.30289 4.30289 0.98 0.00128365 0.00119367 0.0936367 0.0869641 28 3282 21 6.87369e+06 517032 531479. 1839.03 7.43 0.418733 0.379394 24610 126494 -1 2687 24 2293 3944 325962 74444 4.2636 4.2636 -162.686 -4.2636 0 0 648988. 2245.63 0.20 0.17 0.18 -1 -1 0.20 0.060308 0.0545676 155 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 10.77 vpr 63.50 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30384 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 399 315 1 198 103 17 17 289 -1 unnamed_device 24.4 MiB 2.72 1120 16732 4960 9705 2067 63.5 MiB 0.21 0.00 4.18791 -143.549 -4.18791 4.18791 0.98 0.00127748 0.00118619 0.0941212 0.0864762 32 3356 43 6.87369e+06 544980 586450. 2029.24 4.39 0.543998 0.490397 25474 144626 -1 2559 22 1832 3248 284080 65210 3.8987 3.8987 -146.064 -3.8987 0 0 744469. 2576.02 0.24 0.15 0.21 -1 -1 0.24 0.054459 0.0493416 152 65 60 30 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 7.17 vpr 63.02 MiB 0.04 7212 -1 -1 1 0.03 -1 -1 30544 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 30 32 296 244 1 160 81 17 17 289 -1 unnamed_device 24.1 MiB 2.37 762 13731 3861 8062 1808 63.0 MiB 0.17 0.00 3.50375 -116.253 -3.50375 3.50375 0.98 0.000980784 0.000911407 0.0795162 0.073895 32 2337 23 6.87369e+06 265503 586450. 2029.24 1.26 0.205582 0.186804 25474 144626 -1 1812 21 1356 2233 190042 43904 3.09326 3.09326 -121.189 -3.09326 0 0 744469. 2576.02 0.27 0.11 0.21 -1 -1 0.27 0.0405386 0.0365224 110 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 11.01 vpr 63.68 MiB 0.05 7308 -1 -1 1 0.03 -1 -1 30564 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65204 30 32 383 303 1 192 85 17 17 289 -1 unnamed_device 24.8 MiB 3.45 973 15709 4818 9015 1876 63.7 MiB 0.22 0.00 4.25789 -139.697 -4.25789 4.25789 1.00 0.0012408 0.00115504 0.11097 0.103239 34 2424 23 6.87369e+06 321398 618332. 2139.56 3.88 0.497585 0.450224 25762 151098 -1 2040 20 1814 2786 220825 49111 3.8576 3.8576 -141.361 -3.8576 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0480857 0.0435551 140 63 60 30 60 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 9.92 vpr 63.91 MiB 0.04 7400 -1 -1 1 0.03 -1 -1 30880 -1 -1 43 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65448 32 32 469 381 1 202 107 17 17 289 -1 unnamed_device 25.0 MiB 4.74 1154 14022 3627 9188 1207 63.9 MiB 0.19 0.00 4.3139 -148.916 -4.3139 4.3139 0.98 0.00140134 0.00130113 0.08079 0.0749731 32 3115 26 6.87369e+06 600875 586450. 2029.24 1.49 0.270197 0.245287 25474 144626 -1 2590 26 2316 3899 503195 156049 3.7891 3.7891 -150.342 -3.7891 0 0 744469. 2576.02 0.23 0.23 0.20 -1 -1 0.23 0.0686422 0.0617799 158 127 0 0 128 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 6.54 vpr 63.57 MiB 0.05 7268 -1 -1 1 0.03 -1 -1 30492 -1 -1 33 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65096 31 32 425 341 1 197 96 17 17 289 -1 unnamed_device 24.6 MiB 1.21 1028 18273 6109 9512 2652 63.6 MiB 0.23 0.00 4.21733 -142.23 -4.21733 4.21733 1.02 0.00129898 0.00120682 0.111317 0.103267 28 2854 23 6.87369e+06 461137 531479. 1839.03 1.71 0.278537 0.253655 24610 126494 -1 2433 22 2116 3496 265898 61198 3.9987 3.9987 -150.3 -3.9987 0 0 648988. 2245.63 0.20 0.14 0.18 -1 -1 0.20 0.0551173 0.0498121 149 94 31 31 93 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 9.81 vpr 63.43 MiB 0.05 7324 -1 -1 1 0.03 -1 -1 30476 -1 -1 32 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 30 32 404 328 1 188 94 17 17 289 -1 unnamed_device 24.5 MiB 2.21 935 16921 4888 8942 3091 63.4 MiB 0.23 0.00 3.55591 -115.746 -3.55591 3.55591 0.98 0.00125187 0.00116328 0.10167 0.0943139 34 2436 20 6.87369e+06 447163 618332. 2139.56 3.96 0.489994 0.442444 25762 151098 -1 1957 21 1666 2787 196382 47581 2.97126 2.97126 -114.211 -2.97126 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0511346 0.0462009 141 92 26 26 90 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 10.91 vpr 63.60 MiB 0.04 7192 -1 -1 1 0.03 -1 -1 30516 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65124 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.7 MiB 4.66 1090 14593 4195 9072 1326 63.6 MiB 0.21 0.00 4.1996 -148.343 -4.1996 4.1996 0.98 0.00128411 0.00119326 0.104178 0.0968872 34 3189 24 6.87369e+06 293451 618332. 2139.56 2.56 0.378695 0.343602 25762 151098 -1 2623 22 2207 3817 326059 73269 4.1633 4.1633 -154.606 -4.1633 0 0 787024. 2723.27 0.24 0.16 0.22 -1 -1 0.24 0.055862 0.0507079 147 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 6.84 vpr 63.56 MiB 0.04 7328 -1 -1 1 0.03 -1 -1 30336 -1 -1 36 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 29 32 387 316 1 181 97 17 17 289 -1 unnamed_device 24.6 MiB 2.06 933 12751 3451 8328 972 63.6 MiB 0.16 0.00 3.59125 -113.631 -3.59125 3.59125 0.98 0.00121345 0.0011174 0.0722171 0.066945 26 2582 25 6.87369e+06 503058 503264. 1741.40 1.30 0.229697 0.208316 24322 120374 -1 2353 21 1775 2884 265760 61879 3.18076 3.18076 -120.91 -3.18076 0 0 618332. 2139.56 0.20 0.13 0.17 -1 -1 0.20 0.04895 0.0442365 138 88 26 26 85 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 6.47 vpr 63.05 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30324 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 1.06 860 12292 3298 7764 1230 63.1 MiB 0.15 0.00 3.53195 -127.337 -3.53195 3.53195 0.98 0.000991955 0.000922882 0.0738595 0.0685873 34 2333 22 6.87369e+06 223581 618332. 2139.56 1.92 0.278822 0.252023 25762 151098 -1 2052 22 1614 2456 208981 47263 3.18556 3.18556 -132.915 -3.18556 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0428657 0.0386959 114 3 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 12.61 vpr 63.59 MiB 0.06 7140 -1 -1 1 0.03 -1 -1 30464 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65112 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.6 MiB 4.67 1090 19841 5460 12561 1820 63.6 MiB 0.25 0.00 4.3249 -149.687 -4.3249 4.3249 0.98 0.00130992 0.00121906 0.113901 0.105958 34 2740 24 6.87369e+06 517032 618332. 2139.56 4.22 0.471816 0.427582 25762 151098 -1 2215 22 1936 3085 205750 50153 3.7971 3.7971 -147.678 -3.7971 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0554449 0.0502009 155 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 9.58 vpr 63.55 MiB 0.04 7256 -1 -1 1 0.03 -1 -1 30464 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65080 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.6 MiB 4.08 1089 15151 6141 8127 883 63.6 MiB 0.22 0.00 4.2388 -152.365 -4.2388 4.2388 0.98 0.0012807 0.00118961 0.108183 0.100531 34 2825 24 6.87369e+06 293451 618332. 2139.56 2.11 0.320388 0.291524 25762 151098 -1 2397 22 2182 3485 285035 62715 4.0317 4.0317 -156.669 -4.0317 0 0 787024. 2723.27 0.24 0.15 0.22 -1 -1 0.24 0.0571025 0.0516678 147 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 8.71 vpr 63.40 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30580 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 24.4 MiB 3.49 885 16708 5068 9384 2256 63.4 MiB 0.18 0.00 3.50501 -121.174 -3.50501 3.50501 0.99 0.00100921 0.000936344 0.0817068 0.075699 34 2095 23 6.87369e+06 419215 618332. 2139.56 1.68 0.259432 0.23408 25762 151098 -1 1797 23 1205 1996 155490 35653 2.92096 2.92096 -114.135 -2.92096 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.044451 0.0400046 112 55 32 32 54 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 7.38 vpr 62.92 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30560 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 24.0 MiB 1.32 726 9368 2169 6075 1124 62.9 MiB 0.12 0.00 3.51475 -119.248 -3.51475 3.51475 0.98 0.000951574 0.000885044 0.054351 0.0506083 30 2026 22 6.87369e+06 237555 556674. 1926.21 2.59 0.293003 0.263788 25186 138497 -1 1719 20 1275 2089 119933 27997 3.12156 3.12156 -122.852 -3.12156 0 0 706193. 2443.58 0.22 0.09 0.20 -1 -1 0.22 0.0379222 0.0341999 112 4 93 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 7.57 vpr 63.55 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30328 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65076 32 32 381 303 1 194 99 17 17 289 -1 unnamed_device 24.6 MiB 2.81 1023 18795 5443 10816 2536 63.6 MiB 0.22 0.00 4.29699 -143.771 -4.29699 4.29699 0.98 0.00122478 0.00113785 0.103016 0.0956535 28 2623 21 6.87369e+06 489084 531479. 1839.03 1.24 0.255357 0.232624 24610 126494 -1 2351 23 1758 2638 187245 43291 3.8686 3.8686 -145.237 -3.8686 0 0 648988. 2245.63 0.20 0.12 0.18 -1 -1 0.20 0.053921 0.0487613 144 59 60 32 58 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 6.53 vpr 63.71 MiB 0.04 7444 -1 -1 1 0.03 -1 -1 30320 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65244 32 32 406 330 1 191 97 17 17 289 -1 unnamed_device 24.8 MiB 1.21 1098 17191 5138 9984 2069 63.7 MiB 0.22 0.00 4.21185 -141.335 -4.21185 4.21185 0.98 0.00105644 0.000978468 0.100383 0.0930999 28 2834 43 6.87369e+06 461137 531479. 1839.03 1.72 0.303314 0.275539 24610 126494 -1 2368 26 1938 3054 244770 54279 4.3386 4.3386 -154.941 -4.3386 0 0 648988. 2245.63 0.20 0.15 0.18 -1 -1 0.20 0.0617484 0.055751 142 88 28 28 88 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 13.46 vpr 64.02 MiB 0.04 7264 -1 -1 1 0.03 -1 -1 30496 -1 -1 41 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65552 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 25.1 MiB 1.08 1421 17642 5571 10308 1763 64.0 MiB 0.25 0.00 4.86064 -164.755 -4.86064 4.86064 0.98 0.00132848 0.00123617 0.0986686 0.0916355 28 3890 33 6.87369e+06 572927 531479. 1839.03 8.73 0.533397 0.483173 24610 126494 -1 3246 23 2363 3817 431920 87801 5.26335 5.26335 -183.738 -5.26335 0 0 648988. 2245.63 0.20 0.19 0.18 -1 -1 0.20 0.0594047 0.0539503 183 3 156 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 7.89 vpr 63.43 MiB 0.06 7252 -1 -1 1 0.03 -1 -1 30480 -1 -1 32 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 30 32 371 295 1 188 94 17 17 289 -1 unnamed_device 24.6 MiB 2.54 1005 13939 3832 8899 1208 63.4 MiB 0.18 0.00 3.60295 -120.353 -3.60295 3.60295 0.98 0.0011803 0.00109468 0.0796454 0.0738379 32 2502 23 6.87369e+06 447163 586450. 2029.24 1.76 0.274025 0.248087 25474 144626 -1 2069 21 1723 2859 201811 47765 3.02726 3.02726 -119.605 -3.02726 0 0 744469. 2576.02 0.23 0.12 0.21 -1 -1 0.23 0.0479391 0.0432712 141 59 60 30 56 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 5.46 vpr 63.06 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30624 -1 -1 20 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 27 32 269 226 1 145 79 17 17 289 -1 unnamed_device 24.1 MiB 0.86 681 12247 4957 6112 1178 63.1 MiB 0.14 0.00 3.57611 -105.524 -3.57611 3.57611 0.98 0.000900382 0.000836817 0.0673526 0.0625954 32 1831 22 6.87369e+06 279477 586450. 2029.24 1.15 0.181596 0.1647 25474 144626 -1 1513 20 1196 1691 148700 33230 2.96826 2.96826 -105.67 -2.96826 0 0 744469. 2576.02 0.23 0.09 0.21 -1 -1 0.23 0.0355114 0.0319726 102 34 54 27 27 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 18.36 vpr 64.29 MiB 0.05 7448 -1 -1 1 0.03 -1 -1 30704 -1 -1 42 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65836 32 32 493 378 1 233 106 17 17 289 -1 unnamed_device 24.9 MiB 2.55 1290 11856 2585 8478 793 64.3 MiB 0.18 0.00 4.1886 -144.956 -4.1886 4.1886 1.01 0.00152173 0.00141357 0.0774849 0.0719093 28 4355 47 6.87369e+06 586901 531479. 1839.03 12.08 0.533362 0.481573 24610 126494 -1 3220 25 2719 4921 465986 101051 4.1823 4.1823 -156.68 -4.1823 0 0 648988. 2245.63 0.20 0.21 0.18 -1 -1 0.20 0.0696619 0.0629728 184 95 62 31 95 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 9.55 vpr 63.77 MiB 0.04 7460 -1 -1 1 0.04 -1 -1 30592 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65300 31 32 455 371 1 198 86 17 17 289 -1 unnamed_device 24.8 MiB 3.78 1008 15584 4068 9789 1727 63.8 MiB 0.21 0.00 4.97514 -152.566 -4.97514 4.97514 0.99 0.00133005 0.00123262 0.115178 0.107003 34 2750 24 6.87369e+06 321398 618332. 2139.56 2.14 0.404038 0.365914 25762 151098 -1 2260 22 1711 2729 222780 51416 4.39715 4.39715 -156.871 -4.39715 0 0 787024. 2723.27 0.24 0.13 0.21 -1 -1 0.24 0.0572857 0.0516976 144 124 0 0 124 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 8.91 vpr 63.45 MiB 0.03 7264 -1 -1 1 0.03 -1 -1 30428 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 355 304 1 161 80 17 17 289 -1 unnamed_device 24.5 MiB 3.52 845 12120 3376 6849 1895 63.4 MiB 0.16 0.00 3.7386 -118.219 -3.7386 3.7386 0.98 0.00110426 0.00102441 0.0814261 0.0755266 34 2245 22 6.87369e+06 223581 618332. 2139.56 1.85 0.310359 0.280349 25762 151098 -1 1982 19 1120 1764 152766 34669 3.17986 3.17986 -121.763 -3.17986 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0413569 0.0372923 107 89 0 0 89 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 8.43 vpr 63.36 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30384 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 32 32 364 282 1 196 98 17 17 289 -1 unnamed_device 24.4 MiB 1.09 1081 19448 5671 11859 1918 63.4 MiB 0.24 0.00 4.20169 -143.405 -4.20169 4.20169 0.81 0.00119085 0.00110729 0.106309 0.0987094 32 3319 42 6.87369e+06 475111 586450. 2029.24 3.95 0.510376 0.461412 25474 144626 -1 2406 24 1706 2468 225661 51345 4.0159 4.0159 -145.454 -4.0159 0 0 744469. 2576.02 0.23 0.13 0.21 -1 -1 0.23 0.0544675 0.0492679 147 34 90 30 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 10.22 vpr 63.95 MiB 0.05 7396 -1 -1 1 0.03 -1 -1 30744 -1 -1 40 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65480 31 32 443 336 1 224 103 17 17 289 -1 unnamed_device 25.1 MiB 1.88 1009 19865 5999 9806 4060 63.9 MiB 0.25 0.00 4.27909 -139.575 -4.27909 4.27909 0.98 0.00141283 0.00130576 0.119361 0.110849 36 2668 22 6.87369e+06 558954 648988. 2245.63 4.62 0.548278 0.49591 26050 158493 -1 2094 23 2035 3002 173282 44014 3.9127 3.9127 -137.51 -3.9127 0 0 828058. 2865.25 0.25 0.13 0.23 -1 -1 0.25 0.0621032 0.056175 176 64 87 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 7.68 vpr 63.56 MiB 0.03 7140 -1 -1 1 0.03 -1 -1 30408 -1 -1 36 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 30 32 373 297 1 188 98 17 17 289 -1 unnamed_device 24.7 MiB 1.80 1081 17873 5123 10262 2488 63.6 MiB 0.22 0.00 3.55039 -117.277 -3.55039 3.55039 0.99 0.00117377 0.00109021 0.096603 0.0897049 32 3037 46 6.87369e+06 503058 586450. 2029.24 2.22 0.340756 0.308983 25474 144626 -1 2331 22 1753 3056 253184 58084 3.09956 3.09956 -116.124 -3.09956 0 0 744469. 2576.02 0.23 0.13 0.21 -1 -1 0.23 0.0502663 0.0454256 144 61 58 30 58 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 11.50 vpr 63.92 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30508 -1 -1 46 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65456 32 32 407 319 1 202 110 17 17 289 -1 unnamed_device 24.7 MiB 2.52 1127 20887 5685 13197 2005 63.9 MiB 0.25 0.00 4.26133 -148.87 -4.26133 4.26133 1.00 0.00128473 0.00119371 0.105014 0.0973901 26 3203 28 6.87369e+06 642796 503264. 1741.40 5.33 0.467468 0.42322 24322 120374 -1 2725 24 2332 3999 348122 78448 4.2903 4.2903 -165.617 -4.2903 0 0 618332. 2139.56 0.19 0.17 0.17 -1 -1 0.19 0.0591552 0.0535539 160 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 9.79 vpr 63.61 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30616 -1 -1 42 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65136 32 32 405 318 1 201 106 17 17 289 -1 unnamed_device 24.4 MiB 2.79 1124 19356 5960 11281 2115 63.6 MiB 0.23 0.00 3.52575 -126.289 -3.52575 3.52575 0.98 0.0012773 0.00118683 0.102712 0.0953415 28 2633 20 6.87369e+06 586901 531479. 1839.03 3.38 0.450055 0.407544 24610 126494 -1 2348 24 1800 2906 204711 46103 3.16556 3.16556 -130.647 -3.16556 0 0 648988. 2245.63 0.20 0.13 0.18 -1 -1 0.20 0.0589785 0.0532588 157 65 63 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 6.89 vpr 63.18 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30468 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 29 32 287 238 1 155 80 17 17 289 -1 unnamed_device 24.2 MiB 1.64 779 12808 4806 6279 1723 63.2 MiB 0.15 0.00 3.53195 -113.473 -3.53195 3.53195 1.00 0.000954326 0.000886884 0.0735157 0.0683326 34 1759 22 6.87369e+06 265503 618332. 2139.56 1.74 0.272905 0.246351 25762 151098 -1 1492 18 1251 1726 124817 27702 2.83486 2.83486 -111.973 -2.83486 0 0 787024. 2723.27 0.24 0.07 0.22 -1 -1 0.24 0.0253865 0.0227559 107 34 58 29 29 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 7.70 vpr 63.44 MiB 0.04 7112 -1 -1 1 0.03 -1 -1 30136 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 334 290 1 154 79 17 17 289 -1 unnamed_device 24.5 MiB 2.40 831 13092 4612 6447 2033 63.4 MiB 0.16 0.00 3.7386 -116.045 -3.7386 3.7386 0.99 0.00104722 0.000970512 0.0831079 0.0770436 34 1980 22 6.87369e+06 209608 618332. 2139.56 1.79 0.301276 0.271972 25762 151098 -1 1785 19 1099 1596 133069 28912 3.19986 3.19986 -114.973 -3.19986 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0393108 0.0353979 101 82 0 0 82 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 14.99 vpr 63.51 MiB 0.04 7208 -1 -1 1 0.03 -1 -1 30380 -1 -1 39 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65032 31 32 365 281 1 197 102 17 17 289 -1 unnamed_device 24.6 MiB 1.64 1129 19618 5686 11712 2220 63.5 MiB 0.25 0.00 4.1955 -141.345 -4.1955 4.1955 0.98 0.0011842 0.00110002 0.101231 0.0940266 26 3278 47 6.87369e+06 544980 503264. 1741.40 9.76 0.5136 0.46486 24322 120374 -1 2754 23 2205 3686 376480 77619 4.154 4.154 -156.531 -4.154 0 0 618332. 2139.56 0.19 0.17 0.17 -1 -1 0.19 0.0527007 0.0476944 152 34 93 31 31 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 9.96 vpr 63.14 MiB 0.04 7160 -1 -1 1 0.03 -1 -1 30372 -1 -1 32 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 29 32 297 254 1 148 93 17 17 289 -1 unnamed_device 24.1 MiB 3.18 802 17103 5488 9192 2423 63.1 MiB 0.18 0.00 3.47765 -107.239 -3.47765 3.47765 0.99 0.000964264 0.000886797 0.0806903 0.0747063 26 2054 23 6.87369e+06 447163 503264. 1741.40 3.35 0.336412 0.302706 24322 120374 -1 1871 24 1350 2216 190015 43681 3.38116 3.38116 -115.579 -3.38116 0 0 618332. 2139.56 0.19 0.11 0.17 -1 -1 0.19 0.0439784 0.039495 108 56 29 29 52 26 -fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 9.04 vpr 63.08 MiB 0.05 6920 -1 -1 1 0.03 -1 -1 30268 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.0 MiB 3.42 751 9884 2209 6799 876 63.1 MiB 0.13 0.00 3.54365 -123.521 -3.54365 3.54365 1.00 0.00103428 0.000960618 0.0620319 0.0576765 34 2392 23 6.87369e+06 223581 618332. 2139.56 2.05 0.266869 0.241084 25762 151098 -1 1827 20 1598 2586 178583 45436 3.36586 3.36586 -133.333 -3.36586 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0422063 0.0381575 114 34 64 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 8.01 vpr 63.63 MiB 0.05 7404 -1 -1 1 0.03 -1 -1 30468 -1 -1 35 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65160 31 32 387 307 1 193 98 17 17 289 -1 unnamed_device 24.7 MiB 2.43 1001 17198 4714 10441 2043 63.6 MiB 0.21 0.00 3.61625 -124.149 -3.61625 3.61625 0.98 0.00124108 0.00114201 0.0974477 0.0903077 34 2353 21 6.87369e+06 489084 618332. 2139.56 1.95 0.353142 0.320089 25762 151098 -1 1936 23 1913 2913 191772 44672 2.93196 2.93196 -120.744 -2.93196 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0539271 0.0487448 146 64 58 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 9.52 vpr 63.18 MiB 0.04 7148 -1 -1 1 0.03 -1 -1 30356 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 31 32 308 262 1 154 79 17 17 289 -1 unnamed_device 24.2 MiB 2.90 705 11402 3952 5571 1879 63.2 MiB 0.14 0.00 3.12958 -106.498 -3.12958 3.12958 0.98 0.00100291 0.000931889 0.0700349 0.0650818 30 1783 22 6.87369e+06 223581 556674. 1926.21 3.26 0.386418 0.347375 25186 138497 -1 1461 20 839 1414 82562 20213 2.61736 2.61736 -108.233 -2.61736 0 0 706193. 2443.58 0.22 0.08 0.19 -1 -1 0.22 0.038915 0.0350368 103 55 31 31 53 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 9.75 vpr 63.66 MiB 0.04 7196 -1 -1 1 0.03 -1 -1 30436 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65184 32 32 383 307 1 190 101 17 17 289 -1 unnamed_device 24.7 MiB 2.56 1015 17256 4774 9685 2797 63.7 MiB 0.20 0.00 3.53695 -121.382 -3.53695 3.53695 0.98 0.00120637 0.00111999 0.0916863 0.0850721 30 2407 22 6.87369e+06 517032 556674. 1926.21 3.68 0.402093 0.36362 25186 138497 -1 1961 17 1055 1700 93911 22381 2.76766 2.76766 -113.117 -2.76766 0 0 706193. 2443.58 0.22 0.08 0.19 -1 -1 0.22 0.0415546 0.0376476 143 65 52 26 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 8.06 vpr 63.97 MiB 0.05 7468 -1 -1 1 0.03 -1 -1 30424 -1 -1 39 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65504 31 32 422 339 1 196 102 17 17 289 -1 unnamed_device 24.9 MiB 3.17 920 10574 2369 7004 1201 64.0 MiB 0.15 0.00 3.59921 -120.128 -3.59921 3.59921 0.98 0.0013024 0.00121025 0.0609065 0.0565403 32 2627 24 6.87369e+06 544980 586450. 2029.24 1.30 0.229365 0.207947 25474 144626 -1 1986 24 2076 3056 227596 54813 3.14046 3.14046 -119.415 -3.14046 0 0 744469. 2576.02 0.23 0.14 0.21 -1 -1 0.23 0.0597081 0.0539416 151 93 31 31 92 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 7.88 vpr 63.39 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30292 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 333 279 1 164 81 17 17 289 -1 unnamed_device 24.4 MiB 2.60 840 13206 3885 7374 1947 63.4 MiB 0.16 0.00 3.10562 -111.258 -3.10562 3.10562 0.99 0.000394406 0.000362557 0.0793101 0.0737863 34 2223 21 6.87369e+06 237555 618332. 2139.56 1.77 0.298519 0.269734 25762 151098 -1 1844 22 1272 2028 151984 35900 3.04656 3.04656 -117.878 -3.04656 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0449452 0.0404973 110 61 32 32 60 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 7.75 vpr 63.34 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30132 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 339 283 1 166 80 17 17 289 -1 unnamed_device 24.5 MiB 3.02 885 10744 2853 7291 600 63.3 MiB 0.14 0.00 3.52165 -124.831 -3.52165 3.52165 0.94 0.00107893 0.00100119 0.0700015 0.0649864 32 2526 22 6.87369e+06 223581 586450. 2029.24 1.26 0.206194 0.187056 25474 144626 -1 2094 18 1310 2207 202627 44749 3.10126 3.10126 -128.155 -3.10126 0 0 744469. 2576.02 0.23 0.11 0.21 -1 -1 0.23 0.039002 0.0352455 112 63 32 32 62 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 8.44 vpr 63.62 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30680 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65152 32 32 407 319 1 202 104 17 17 289 -1 unnamed_device 24.5 MiB 2.68 1034 13768 3498 9086 1184 63.6 MiB 0.18 0.00 4.29009 -146.616 -4.29009 4.29009 0.98 0.00127011 0.00118023 0.0753858 0.069958 32 3055 45 6.87369e+06 558954 586450. 2029.24 2.19 0.334329 0.302784 25474 144626 -1 2298 20 1948 3071 210899 50121 3.6671 3.6671 -144.752 -3.6671 0 0 744469. 2576.02 0.23 0.12 0.21 -1 -1 0.23 0.0499268 0.0452221 157 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 7.28 vpr 63.55 MiB 0.03 7300 -1 -1 1 0.03 -1 -1 30516 -1 -1 34 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65080 29 32 367 293 1 185 95 17 17 289 -1 unnamed_device 24.7 MiB 2.20 889 11111 2716 7727 668 63.6 MiB 0.17 0.00 3.59107 -113.02 -3.59107 3.59107 0.99 0.00116738 0.00108548 0.0745662 0.0692708 26 2719 36 6.87369e+06 475111 503264. 1741.40 1.61 0.250667 0.227445 24322 120374 -1 2221 23 1524 2525 214209 53727 3.29986 3.29986 -121.325 -3.29986 0 0 618332. 2139.56 0.20 0.13 0.17 -1 -1 0.20 0.0517261 0.0467355 140 62 56 29 58 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 11.09 vpr 63.89 MiB 0.03 7368 -1 -1 1 0.03 -1 -1 30752 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65420 32 32 469 381 1 202 104 17 17 289 -1 unnamed_device 25.0 MiB 4.73 962 19136 5921 10212 3003 63.9 MiB 0.25 0.00 4.29009 -146.603 -4.29009 4.29009 0.98 0.00141277 0.00131179 0.114216 0.106019 34 2901 24 6.87369e+06 558954 618332. 2139.56 2.64 0.416453 0.377221 25762 151098 -1 2215 21 2040 3358 235302 56125 3.8424 3.8424 -149.412 -3.8424 0 0 787024. 2723.27 0.24 0.14 0.22 -1 -1 0.24 0.0572553 0.0516837 157 127 0 0 128 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 6.76 vpr 63.09 MiB 0.04 6888 -1 -1 1 0.02 -1 -1 30476 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64600 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 24.2 MiB 0.99 806 7008 1536 4934 538 63.1 MiB 0.09 0.00 3.09052 -107.057 -3.09052 3.09052 0.98 0.000906969 0.0008435 0.039811 0.0370495 30 1972 22 6.87369e+06 223581 556674. 1926.21 2.50 0.275093 0.247196 25186 138497 -1 1568 19 817 1376 83363 19407 2.68766 2.68766 -109.355 -2.68766 0 0 706193. 2443.58 0.22 0.07 0.19 -1 -1 0.22 0.034224 0.0308266 104 4 85 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 7.59 vpr 63.80 MiB 0.03 7276 -1 -1 1 0.03 -1 -1 30380 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65332 32 32 418 338 1 194 101 17 17 289 -1 unnamed_device 24.8 MiB 1.74 980 17961 5545 9859 2557 63.8 MiB 0.22 0.00 4.28709 -142.511 -4.28709 4.28709 0.99 0.00129797 0.00120548 0.101691 0.0943613 34 2533 23 6.87369e+06 517032 618332. 2139.56 2.26 0.365084 0.330621 25762 151098 -1 2029 19 1532 2253 156241 37496 3.7513 3.7513 -139.187 -3.7513 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0485335 0.0439661 147 92 28 28 92 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 9.47 vpr 63.39 MiB 0.02 7008 -1 -1 1 0.04 -1 -1 30348 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 24.6 MiB 4.03 956 12808 4156 7121 1531 63.4 MiB 0.17 0.00 3.59615 -131.562 -3.59615 3.59615 1.00 0.00115933 0.00107519 0.0887314 0.082327 34 2236 22 6.87369e+06 223581 618332. 2139.56 1.89 0.329235 0.297728 25762 151098 -1 1976 22 1593 2330 173023 39911 3.11046 3.11046 -132.551 -3.11046 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0495297 0.0446758 114 96 0 0 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 7.83 vpr 63.64 MiB 0.04 7260 -1 -1 1 0.03 -1 -1 30340 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 32 32 401 316 1 199 103 17 17 289 -1 unnamed_device 24.8 MiB 2.65 1032 13358 3327 9257 774 63.6 MiB 0.17 0.00 3.59107 -126.232 -3.59107 3.59107 0.98 0.00127716 0.00118756 0.0738409 0.068531 28 2736 38 6.87369e+06 544980 531479. 1839.03 1.65 0.267488 0.242744 24610 126494 -1 2264 21 1614 2453 191202 44339 3.22186 3.22186 -129.465 -3.22186 0 0 648988. 2245.63 0.20 0.12 0.18 -1 -1 0.20 0.0518717 0.0469541 153 65 61 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 9.66 vpr 64.10 MiB 0.05 7356 -1 -1 1 0.03 -1 -1 30812 -1 -1 47 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65640 32 32 500 382 1 236 111 17 17 289 -1 unnamed_device 25.0 MiB 4.17 1138 13943 3305 9918 720 64.1 MiB 0.20 0.00 4.94796 -166.013 -4.94796 4.94796 0.98 0.00154348 0.00143533 0.0848834 0.0787223 32 3644 29 6.87369e+06 656770 586450. 2029.24 1.82 0.283473 0.257377 25474 144626 -1 2766 22 2464 4108 391557 85193 4.68355 4.68355 -174.069 -4.68355 0 0 744469. 2576.02 0.23 0.18 0.21 -1 -1 0.23 0.0654202 0.0592268 190 96 64 32 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 8.12 vpr 62.83 MiB 0.03 6860 -1 -1 1 0.03 -1 -1 30224 -1 -1 14 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 30 32 246 229 1 118 76 17 17 289 -1 unnamed_device 24.0 MiB 2.10 614 9036 2336 6266 434 62.8 MiB 0.09 0.00 2.80201 -90.6781 -2.80201 2.80201 1.01 0.000804468 0.000745936 0.0474138 0.0439828 26 1712 31 6.87369e+06 195634 503264. 1741.40 2.76 0.248918 0.222218 24322 120374 -1 1460 15 678 942 91568 21189 2.23032 2.23032 -95.6045 -2.23032 0 0 618332. 2139.56 0.20 0.05 0.17 -1 -1 0.20 0.0203307 0.0181753 72 56 0 0 53 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 5.77 vpr 63.30 MiB 0.07 7064 -1 -1 1 0.03 -1 -1 30496 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 30 32 296 244 1 158 80 17 17 289 -1 unnamed_device 24.4 MiB 0.98 761 12120 5037 6663 420 63.3 MiB 0.15 0.00 3.55905 -117.266 -3.55905 3.55905 1.01 0.000982929 0.000913254 0.0729226 0.0677984 32 2013 26 6.87369e+06 251529 586450. 2029.24 1.23 0.205506 0.186485 25474 144626 -1 1619 22 1564 2257 190358 43028 3.17176 3.17176 -119.194 -3.17176 0 0 744469. 2576.02 0.23 0.11 0.21 -1 -1 0.23 0.0422392 0.0380618 109 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 7.17 vpr 63.34 MiB 0.04 7028 -1 -1 1 0.03 -1 -1 30064 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.4 MiB 1.56 871 12464 4691 5640 2133 63.3 MiB 0.16 0.00 3.52575 -126.323 -3.52575 3.52575 0.97 0.00104322 0.000969734 0.073475 0.0682339 34 2670 24 6.87369e+06 223581 618332. 2139.56 2.08 0.292997 0.264766 25762 151098 -1 2210 21 1672 2939 239911 55845 3.24686 3.24686 -132.559 -3.24686 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0425858 0.0384245 114 34 64 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 5.24 vpr 62.91 MiB 0.03 6980 -1 -1 1 0.03 -1 -1 30360 -1 -1 37 25 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 25 32 251 214 1 139 94 17 17 289 -1 unnamed_device 24.0 MiB 0.72 742 15004 4316 8330 2358 62.9 MiB 0.14 0.00 3.44875 -93.4787 -3.44875 3.44875 0.98 0.000838039 0.000778897 0.0614939 0.0568011 30 1607 21 6.87369e+06 517032 556674. 1926.21 1.12 0.164575 0.148595 25186 138497 -1 1382 20 912 1515 78641 19457 2.68766 2.68766 -92.7847 -2.68766 0 0 706193. 2443.58 0.24 0.07 0.19 -1 -1 0.24 0.033506 0.0301232 105 34 50 25 25 25 -fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 8.98 vpr 63.69 MiB 0.05 7324 -1 -1 1 0.03 -1 -1 30540 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65216 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 24.5 MiB 3.08 1048 13105 3502 8476 1127 63.7 MiB 0.20 0.00 4.14459 -143.334 -4.14459 4.14459 0.99 0.0013273 0.00123327 0.0971502 0.0902962 34 2945 23 6.87369e+06 293451 618332. 2139.56 2.19 0.37711 0.341752 25762 151098 -1 2362 21 1932 3545 240880 56872 3.7061 3.7061 -146.327 -3.7061 0 0 787024. 2723.27 0.25 0.13 0.22 -1 -1 0.25 0.0544364 0.0492589 145 94 32 32 94 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 8.15 vpr 63.80 MiB 0.04 7348 -1 -1 1 0.03 -1 -1 30492 -1 -1 40 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65332 31 32 421 339 1 195 103 17 17 289 -1 unnamed_device 24.8 MiB 2.43 970 12635 3084 8691 860 63.8 MiB 0.19 0.00 3.61805 -122.805 -3.61805 3.61805 0.98 0.00128967 0.00119622 0.0757856 0.0700111 34 2382 25 6.87369e+06 558954 618332. 2139.56 2.12 0.353986 0.319834 25762 151098 -1 1988 21 1917 2930 191299 46719 2.92396 2.92396 -118.178 -2.92396 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0529174 0.0478638 151 94 29 29 93 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 8.03 vpr 63.61 MiB 0.06 7160 -1 -1 1 0.03 -1 -1 30776 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65136 32 32 438 350 1 295 93 17 17 289 -1 unnamed_device 24.5 MiB 1.99 1423 18363 6491 9531 2341 63.6 MiB 0.25 0.00 5.12584 -175.071 -5.12584 5.12584 0.98 0.00135051 0.00125641 0.12132 0.112796 34 3808 26 6.89349e+06 408721 618332. 2139.56 2.26 0.358766 0.326112 25762 151098 -1 2978 23 2687 3239 245700 54677 4.65275 4.65275 -174.482 -4.65275 0 0 787024. 2723.27 0.24 0.15 0.22 -1 -1 0.24 0.0593716 0.0536845 192 96 32 32 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 7.69 vpr 63.59 MiB 0.05 7328 -1 -1 1 0.03 -1 -1 30696 -1 -1 29 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65112 30 32 409 330 1 261 91 17 17 289 -1 unnamed_device 24.4 MiB 1.73 1164 10291 2498 6711 1082 63.6 MiB 0.15 0.00 5.38747 -162.07 -5.38747 5.38747 0.99 0.00125734 0.00116863 0.066842 0.0621365 36 3222 24 6.89349e+06 408721 648988. 2245.63 2.35 0.334686 0.302454 26050 158493 -1 2615 20 1986 2758 190283 42521 4.42668 4.42668 -152.772 -4.42668 0 0 828058. 2865.25 0.25 0.12 0.23 -1 -1 0.25 0.0494195 0.0447398 177 91 30 30 89 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 7.85 vpr 63.48 MiB 0.05 7136 -1 -1 1 0.04 -1 -1 30496 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65000 32 32 387 309 1 253 89 17 17 289 -1 unnamed_device 24.6 MiB 2.05 1242 15533 4163 9385 1985 63.5 MiB 0.21 0.00 4.07746 -141.47 -4.07746 4.07746 0.99 0.00121522 0.00112909 0.0982299 0.0912605 34 3089 29 6.89349e+06 352346 618332. 2139.56 2.15 0.366151 0.331701 25762 151098 -1 2441 20 1629 2012 145564 32723 3.5782 3.5782 -138.252 -3.5782 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0477379 0.0432095 167 65 54 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 7.88 vpr 63.27 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30516 -1 -1 25 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 29 32 343 267 1 209 86 17 17 289 -1 unnamed_device 24.4 MiB 2.14 970 11615 3398 7414 803 63.3 MiB 0.16 0.00 4.55805 -138.177 -4.55805 4.55805 0.99 0.00112175 0.00104373 0.0712291 0.0662134 34 2467 23 6.89349e+06 352346 618332. 2139.56 2.17 0.307954 0.278762 25762 151098 -1 1938 23 1753 2673 163110 37931 3.70926 3.70926 -132.867 -3.70926 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0496879 0.0449037 148 34 87 29 29 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 9.35 vpr 63.46 MiB 0.04 7156 -1 -1 1 0.03 -1 -1 30372 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64980 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 24.6 MiB 2.29 1348 11398 3143 6769 1486 63.5 MiB 0.18 0.00 5.03124 -172.569 -5.03124 5.03124 0.99 0.00123511 0.00114945 0.0749962 0.069756 36 3240 30 6.89349e+06 338252 648988. 2245.63 3.42 0.355123 0.322097 26050 158493 -1 2786 21 2213 3835 264350 58997 4.38525 4.38525 -170.358 -4.38525 0 0 828058. 2865.25 0.25 0.14 0.23 -1 -1 0.25 0.0506742 0.0459389 163 34 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 7.95 vpr 63.71 MiB 0.04 7212 -1 -1 1 0.03 -1 -1 30460 -1 -1 41 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 402 316 1 257 105 17 17 289 -1 unnamed_device 24.7 MiB 2.13 1504 20359 5925 11930 2504 63.7 MiB 0.26 0.00 4.44565 -148.692 -4.44565 4.44565 0.99 0.0012722 0.00118211 0.107587 0.0998974 34 3568 22 6.89349e+06 577847 618332. 2139.56 2.16 0.375014 0.340284 25762 151098 -1 2913 22 1996 3201 225204 50485 3.50575 3.50575 -139.015 -3.50575 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0544335 0.0492683 179 64 63 32 63 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 6.06 vpr 62.89 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30652 -1 -1 21 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 27 32 269 226 1 164 80 17 17 289 -1 unnamed_device 24.0 MiB 1.42 736 14528 4306 9196 1026 62.9 MiB 0.16 0.00 3.83226 -109.478 -3.83226 3.83226 0.98 0.00111867 0.00102938 0.0792554 0.0736363 30 2004 33 6.89349e+06 295971 556674. 1926.21 1.22 0.20817 0.188695 25186 138497 -1 1617 20 1157 1681 96912 23589 3.00146 3.00146 -107.805 -3.00146 0 0 706193. 2443.58 0.22 0.08 0.19 -1 -1 0.22 0.0353535 0.0318243 112 34 54 27 27 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 6.68 vpr 63.21 MiB 0.03 7196 -1 -1 1 0.03 -1 -1 30220 -1 -1 35 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 24.2 MiB 0.98 921 14273 4376 7304 2593 63.2 MiB 0.16 0.00 3.53335 -112.444 -3.53335 3.53335 0.98 0.00107853 0.0010021 0.0705934 0.0655013 34 2570 23 6.89349e+06 493284 618332. 2139.56 2.19 0.297353 0.268763 25762 151098 -1 1982 21 1306 2276 169790 44108 2.64751 2.64751 -106.224 -2.64751 0 0 787024. 2723.27 0.28 0.11 0.22 -1 -1 0.28 0.0441959 0.0399072 141 4 115 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 9.57 vpr 63.35 MiB 0.03 7204 -1 -1 1 0.03 -1 -1 30284 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 31 32 338 292 1 226 84 17 17 289 -1 unnamed_device 24.5 MiB 1.81 958 7221 1428 5393 400 63.4 MiB 0.10 0.00 3.63689 -118.334 -3.63689 3.63689 0.98 0.00105505 0.000979594 0.0446638 0.0410775 36 2278 23 6.89349e+06 295971 648988. 2245.63 4.41 0.365246 0.326941 26050 158493 -1 1916 19 1326 1607 107721 25942 2.98051 2.98051 -117.062 -2.98051 0 0 828058. 2865.25 0.25 0.09 0.23 -1 -1 0.25 0.039768 0.0358818 141 85 0 0 84 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 7.00 vpr 63.07 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30332 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 314 256 1 193 83 17 17 289 -1 unnamed_device 24.1 MiB 1.67 907 7463 1702 5402 359 63.1 MiB 0.11 0.00 3.77475 -131.313 -3.77475 3.77475 0.98 0.00104255 0.000969395 0.0455375 0.0423176 34 2496 25 6.89349e+06 267783 618332. 2139.56 1.93 0.268293 0.241884 25762 151098 -1 1962 21 1593 2076 154827 36229 3.22376 3.22376 -131.542 -3.22376 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0442562 0.0399683 127 34 64 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 7.58 vpr 63.25 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30192 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 30 32 325 273 1 203 83 17 17 289 -1 unnamed_device 24.2 MiB 2.06 945 6923 1685 4939 299 63.2 MiB 0.10 0.00 4.3573 -138.042 -4.3573 4.3573 0.98 0.00104395 0.000969725 0.0425455 0.0395318 34 2510 35 6.89349e+06 295971 618332. 2139.56 1.97 0.281204 0.25276 25762 151098 -1 2033 20 1643 2190 156456 35882 3.74735 3.74735 -138.987 -3.74735 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0410313 0.0370062 135 63 30 30 60 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 8.17 vpr 63.23 MiB 0.02 7108 -1 -1 1 0.04 -1 -1 30556 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 331 280 1 215 84 17 17 289 -1 unnamed_device 24.4 MiB 1.88 879 15822 5947 6978 2897 63.2 MiB 0.18 0.00 3.8521 -121.987 -3.8521 3.8521 0.98 0.00104539 0.000969684 0.0929902 0.0862642 36 2345 24 6.89349e+06 281877 648988. 2245.63 2.79 0.317708 0.287035 26050 158493 -1 1796 19 1172 1312 94358 22827 3.11391 3.11391 -113.528 -3.11391 0 0 828058. 2865.25 0.25 0.08 0.23 -1 -1 0.25 0.0395823 0.035707 135 65 25 25 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 10.32 vpr 63.44 MiB 0.03 7256 -1 -1 1 0.03 -1 -1 30336 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 386 305 1 240 89 17 17 289 -1 unnamed_device 24.5 MiB 1.46 1132 13751 4297 6849 2605 63.4 MiB 0.18 0.00 4.33609 -144.609 -4.33609 4.33609 0.99 0.00123872 0.00115182 0.089107 0.082816 40 2605 23 6.89349e+06 352346 706193. 2443.58 5.27 0.488307 0.441046 26914 176310 -1 2231 20 1619 2250 220434 47450 3.5608 3.5608 -134.872 -3.5608 0 0 926341. 3205.33 0.27 0.12 0.26 -1 -1 0.27 0.0487566 0.0441022 161 58 64 32 57 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 8.58 vpr 63.41 MiB 0.03 7248 -1 -1 1 0.03 -1 -1 30640 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 407 319 1 264 92 17 17 289 -1 unnamed_device 24.5 MiB 2.00 1321 17480 4867 10322 2291 63.4 MiB 0.26 0.00 5.11569 -169.051 -5.11569 5.11569 1.03 0.0014463 0.00134009 0.114099 0.106252 34 3544 29 6.89349e+06 394628 618332. 2139.56 2.78 0.361406 0.32864 25762 151098 -1 2774 19 2114 2811 211336 47805 4.56195 4.56195 -168.831 -4.56195 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0489906 0.0444518 175 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 6.75 vpr 62.78 MiB 0.03 7104 -1 -1 1 0.03 -1 -1 30704 -1 -1 21 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 29 32 272 228 1 171 82 17 17 289 -1 unnamed_device 23.8 MiB 1.49 818 11296 2810 7489 997 62.8 MiB 0.12 0.00 3.60615 -110.973 -3.60615 3.60615 0.99 0.000909434 0.000845476 0.060188 0.0559325 34 2085 24 6.89349e+06 295971 618332. 2139.56 1.84 0.254042 0.228791 25762 151098 -1 1780 19 1122 1536 115778 27370 3.14356 3.14356 -111.784 -3.14356 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.034878 0.0314548 112 29 58 29 24 24 -fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 9.21 vpr 63.48 MiB 0.03 7260 -1 -1 1 0.03 -1 -1 30452 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65000 32 32 401 315 1 256 89 17 17 289 -1 unnamed_device 24.5 MiB 2.71 1331 17315 6030 8650 2635 63.5 MiB 0.25 0.00 4.31019 -149.022 -4.31019 4.31019 1.01 0.00128307 0.00118349 0.114539 0.10628 34 3707 36 6.89349e+06 352346 618332. 2139.56 2.63 0.413214 0.37451 25762 151098 -1 2920 23 2569 3967 294982 64999 3.80665 3.80665 -144.919 -3.80665 0 0 787024. 2723.27 0.25 0.15 0.22 -1 -1 0.25 0.0551125 0.0499005 174 63 64 32 62 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 7.13 vpr 63.65 MiB 0.04 7236 -1 -1 1 0.03 -1 -1 30316 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65176 32 32 383 303 1 236 89 17 17 289 -1 unnamed_device 24.7 MiB 1.24 1195 12959 3577 7748 1634 63.6 MiB 0.16 0.00 3.72345 -132.536 -3.72345 3.72345 1.11 0.000801589 0.000740027 0.058529 0.0540489 34 2857 25 6.89349e+06 352346 618332. 2139.56 2.17 0.322252 0.29068 25762 151098 -1 2336 21 1768 2188 155970 35601 3.15356 3.15356 -127.742 -3.15356 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0503384 0.0455417 160 57 64 32 56 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 7.92 vpr 63.35 MiB 0.04 7216 -1 -1 1 0.03 -1 -1 30124 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 32 32 339 284 1 224 86 17 17 289 -1 unnamed_device 24.5 MiB 2.26 1016 15395 4898 7558 2939 63.3 MiB 0.19 0.00 3.65519 -124.98 -3.65519 3.65519 0.98 0.00108282 0.00100286 0.0910679 0.0844955 36 3016 45 6.89349e+06 310065 648988. 2245.63 2.06 0.314128 0.284144 26050 158493 -1 2161 17 1573 2069 145745 33287 2.80416 2.80416 -115.683 -2.80416 0 0 828058. 2865.25 0.25 0.09 0.23 -1 -1 0.25 0.0373984 0.0338311 139 65 29 29 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 6.29 vpr 62.65 MiB 0.04 6960 -1 -1 1 0.03 -1 -1 30152 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 30 32 226 208 1 143 77 17 17 289 -1 unnamed_device 24.2 MiB 1.14 571 8227 1989 5670 568 62.7 MiB 0.08 0.00 3.06366 -95.2969 -3.06366 3.06366 0.99 0.000769012 0.000712765 0.0408288 0.0378502 34 1554 20 6.89349e+06 211408 618332. 2139.56 1.73 0.192409 0.171915 25762 151098 -1 1195 16 655 754 56837 13990 2.11707 2.11707 -84.9586 -2.11707 0 0 787024. 2723.27 0.24 0.05 0.22 -1 -1 0.24 0.0255662 0.0229952 85 34 24 24 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 7.26 vpr 63.12 MiB 0.04 7280 -1 -1 1 0.04 -1 -1 30516 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 31 32 335 280 1 217 85 17 17 289 -1 unnamed_device 24.0 MiB 1.67 1128 13663 4696 6887 2080 63.1 MiB 0.17 0.00 4.28999 -147.715 -4.28999 4.28999 0.99 0.0010598 0.000984059 0.0808278 0.075001 34 2734 29 6.89349e+06 310065 618332. 2139.56 2.06 0.317686 0.286903 25762 151098 -1 2171 21 1521 2013 135325 31803 3.4245 3.4245 -136.014 -3.4245 0 0 787024. 2723.27 0.25 0.05 0.22 -1 -1 0.25 0.0199996 0.0179579 141 64 31 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 6.90 vpr 63.38 MiB 0.04 7108 -1 -1 1 0.03 -1 -1 30208 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64900 32 32 366 283 1 228 104 17 17 289 -1 unnamed_device 24.5 MiB 1.32 1108 20112 5949 11325 2838 63.4 MiB 0.23 0.00 4.59713 -153.571 -4.59713 4.59713 0.99 0.00121286 0.00111808 0.101937 0.0945411 34 2694 22 6.89349e+06 563754 618332. 2139.56 1.99 0.322856 0.292228 25762 151098 -1 2286 21 2025 2882 218618 48135 3.98144 3.98144 -148.484 -3.98144 0 0 787024. 2723.27 0.24 0.13 0.17 -1 -1 0.24 0.0495176 0.0448846 166 34 91 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 8.26 vpr 63.78 MiB 0.03 7280 -1 -1 1 0.04 -1 -1 30640 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65308 32 32 460 375 1 309 95 17 17 289 -1 unnamed_device 24.9 MiB 1.86 1494 19967 6137 11054 2776 63.8 MiB 0.27 0.00 4.36459 -147.604 -4.36459 4.36459 0.99 0.0013857 0.00128798 0.127025 0.117951 36 3447 24 6.89349e+06 436909 648988. 2245.63 2.68 0.422801 0.382612 26050 158493 -1 2814 22 2156 2475 182595 41185 4.08056 4.08056 -146.66 -4.08056 0 0 828058. 2865.25 0.25 0.13 0.23 -1 -1 0.25 0.0591529 0.0533987 201 124 0 0 125 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 5.56 vpr 62.39 MiB 0.03 6840 -1 -1 1 0.03 -1 -1 30564 -1 -1 18 26 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 26 32 198 186 1 129 76 17 17 289 -1 unnamed_device 23.7 MiB 1.31 673 10476 3641 5320 1515 62.4 MiB 0.10 0.00 2.84541 -82.0128 -2.84541 2.84541 0.99 0.000669693 0.000619828 0.0459398 0.0425382 30 1519 18 6.89349e+06 253689 556674. 1926.21 0.92 0.114917 0.103811 25186 138497 -1 1300 14 458 589 49111 10218 1.98531 1.98531 -76.0034 -1.98531 0 0 706193. 2443.58 0.24 0.05 0.21 -1 -1 0.24 0.0205234 0.0185677 77 30 26 26 22 22 -fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 6.67 vpr 63.10 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 30192 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 24.1 MiB 1.29 999 9757 2585 6607 565 63.1 MiB 0.14 0.00 4.12784 -138.698 -4.12784 4.12784 0.98 0.00113204 0.00105355 0.0620127 0.057684 30 2932 31 6.89349e+06 295971 556674. 1926.21 1.87 0.224027 0.203536 25186 138497 -1 2151 21 1342 2407 149577 35042 3.75825 3.75825 -145.955 -3.75825 0 0 706193. 2443.58 0.26 0.12 0.17 -1 -1 0.26 0.0489384 0.0441212 141 3 122 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 7.05 vpr 62.40 MiB 0.02 6876 -1 -1 1 0.03 -1 -1 30312 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63896 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 23.8 MiB 0.51 505 8236 1869 5918 449 62.4 MiB 0.08 0.00 2.24722 -82.618 -2.24722 2.24722 0.98 0.000711493 0.000659683 0.0382591 0.0354579 34 1351 21 6.89349e+06 169126 618332. 2139.56 3.24 0.256387 0.22901 25762 151098 -1 1141 19 707 1028 65953 17172 1.88146 1.88146 -84.6117 -1.88146 0 0 787024. 2723.27 0.26 0.06 0.22 -1 -1 0.26 0.0266524 0.0239493 71 3 53 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 9.14 vpr 63.46 MiB 0.04 7128 -1 -1 1 0.03 -1 -1 30724 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64980 32 32 376 288 1 233 89 17 17 289 -1 unnamed_device 24.6 MiB 1.36 1083 14147 4068 9141 938 63.5 MiB 0.20 0.00 4.6633 -160.25 -4.6633 4.6633 0.99 0.00121632 0.00113166 0.0900703 0.0838038 34 2875 39 6.89349e+06 352346 618332. 2139.56 4.16 0.522282 0.472356 25762 151098 -1 2161 21 1756 2392 159103 38335 3.84556 3.84556 -151.384 -3.84556 0 0 787024. 2723.27 0.25 0.11 0.19 -1 -1 0.25 0.0497131 0.045021 161 34 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 8.83 vpr 63.30 MiB 0.05 7228 -1 -1 1 0.03 -1 -1 30120 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 24.2 MiB 0.88 894 11004 2536 7514 954 63.3 MiB 0.14 0.00 3.4709 -118.467 -3.4709 3.4709 0.98 0.00115217 0.00106255 0.0571512 0.0530344 28 2660 25 6.89349e+06 507378 531479. 1839.03 4.44 0.426004 0.384487 24610 126494 -1 2282 22 1518 2433 150701 38067 2.86981 2.86981 -121.465 -2.86981 0 0 648988. 2245.63 0.24 0.11 0.18 -1 -1 0.24 0.042361 0.0382322 151 3 124 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 8.05 vpr 63.51 MiB 0.03 7192 -1 -1 1 0.03 -1 -1 30688 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65032 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.5 MiB 2.21 1339 13155 3540 7510 2105 63.5 MiB 0.19 0.00 4.61325 -160.256 -4.61325 4.61325 0.98 0.00128468 0.00118974 0.0872196 0.081074 34 3506 23 6.89349e+06 366440 618332. 2139.56 2.22 0.354114 0.320762 25762 151098 -1 2700 22 2491 3598 244968 55018 3.77346 3.77346 -151.494 -3.77346 0 0 787024. 2723.27 0.24 0.14 0.22 -1 -1 0.24 0.0541645 0.0491166 174 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 8.11 vpr 63.28 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30224 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 294 246 1 188 81 17 17 289 -1 unnamed_device 24.3 MiB 2.16 861 14256 5425 7077 1754 63.3 MiB 0.17 0.00 3.57625 -122.891 -3.57625 3.57625 0.99 0.000982989 0.00091211 0.0821084 0.0762297 34 2812 39 6.89349e+06 239595 618332. 2139.56 2.43 0.264877 0.239221 25762 151098 -1 1978 22 1614 2362 187733 41950 2.86796 2.86796 -120.002 -2.86796 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0420167 0.0378285 118 34 54 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 7.50 vpr 62.98 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30224 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 30 32 296 244 1 182 81 17 17 289 -1 unnamed_device 23.9 MiB 1.81 1065 12331 4521 6770 1040 63.0 MiB 0.15 0.00 4.27029 -139.787 -4.27029 4.27029 1.03 0.000986743 0.000915861 0.0719797 0.0668999 34 2673 23 6.89349e+06 267783 618332. 2139.56 2.11 0.281186 0.253521 25762 151098 -1 2214 21 1555 2455 211368 44077 3.6172 3.6172 -139.777 -3.6172 0 0 787024. 2723.27 0.25 0.12 0.22 -1 -1 0.25 0.0453869 0.0411062 121 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 6.94 vpr 62.99 MiB 0.03 7116 -1 -1 1 0.03 -1 -1 30300 -1 -1 21 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 28 32 278 232 1 173 81 17 17 289 -1 unnamed_device 24.1 MiB 2.22 765 11106 3048 7362 696 63.0 MiB 0.14 0.00 4.28325 -126.024 -4.28325 4.28325 1.03 0.000919289 0.000853754 0.0608608 0.0565431 30 2277 23 6.89349e+06 295971 556674. 1926.21 1.24 0.180256 0.16323 25186 138497 -1 1697 22 1124 1846 107453 26074 3.55595 3.55595 -122.845 -3.55595 0 0 706193. 2443.58 0.22 0.09 0.19 -1 -1 0.22 0.0393755 0.0354289 115 34 56 28 28 28 -fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 6.82 vpr 63.00 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30316 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 1.31 856 14700 5411 7261 2028 63.0 MiB 0.18 0.00 3.66161 -130.921 -3.66161 3.66161 0.98 0.000990862 0.000921703 0.0867485 0.0807477 34 2199 31 6.89349e+06 225501 618332. 2139.56 1.95 0.288675 0.260955 25762 151098 -1 1911 21 1526 2466 190785 40898 3.02436 3.02436 -124.857 -3.02436 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0403479 0.0363884 114 3 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 9.11 vpr 63.07 MiB 0.04 7024 -1 -1 1 0.03 -1 -1 30448 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 31 32 303 249 1 191 82 17 17 289 -1 unnamed_device 24.1 MiB 1.56 976 14322 4714 7465 2143 63.1 MiB 0.18 0.00 3.81397 -130.472 -3.81397 3.81397 0.99 0.00101146 0.000940407 0.0840802 0.0781669 34 2355 47 6.89349e+06 267783 618332. 2139.56 4.07 0.42877 0.386094 25762 151098 -1 1984 19 1199 1751 106965 25800 2.89006 2.89006 -119.888 -2.89006 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.0379512 0.0342685 121 34 61 31 31 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 7.09 vpr 63.21 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30240 -1 -1 23 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 29 32 312 264 1 201 84 17 17 289 -1 unnamed_device 24.4 MiB 1.74 1053 14724 4750 7690 2284 63.2 MiB 0.18 0.00 3.61135 -116.611 -3.61135 3.61135 0.99 0.000998175 0.00092639 0.0831485 0.0771995 34 2443 32 6.89349e+06 324158 618332. 2139.56 1.83 0.306482 0.276611 25762 151098 -1 2024 17 1157 1544 105081 24188 2.68976 2.68976 -107.899 -2.68976 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.034682 0.031309 130 61 29 29 57 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 8.84 vpr 63.70 MiB 0.04 7420 -1 -1 1 0.03 -1 -1 30432 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65232 32 32 423 310 1 254 91 17 17 289 -1 unnamed_device 24.4 MiB 1.84 1309 18247 5425 10282 2540 63.7 MiB 0.27 0.00 4.62495 -157.212 -4.62495 4.62495 0.99 0.00140444 0.00130833 0.127972 0.119207 34 3527 43 6.89349e+06 380534 618332. 2139.56 3.25 0.462463 0.420388 25762 151098 -1 2849 22 2199 3629 314410 65952 4.16326 4.16326 -156.747 -4.16326 0 0 787024. 2723.27 0.24 0.16 0.22 -1 -1 0.24 0.0594553 0.0539185 184 29 128 32 27 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 10.94 vpr 63.62 MiB 0.04 7264 -1 -1 1 0.03 -1 -1 30644 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65148 32 32 403 317 1 260 89 17 17 289 -1 unnamed_device 24.7 MiB 2.32 1141 14147 3989 7288 2870 63.6 MiB 0.20 0.00 4.18754 -143.488 -4.18754 4.18754 0.98 0.00109842 0.00100916 0.0941576 0.0874929 36 3303 23 6.89349e+06 352346 648988. 2245.63 4.92 0.52014 0.469849 26050 158493 -1 2637 24 2774 3846 302269 66564 3.96065 3.96065 -152.967 -3.96065 0 0 828058. 2865.25 0.26 0.16 0.23 -1 -1 0.26 0.0584132 0.0527895 173 65 62 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 7.01 vpr 63.23 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30540 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64752 31 32 353 302 1 229 85 17 17 289 -1 unnamed_device 24.3 MiB 1.36 1094 14965 4631 8028 2306 63.2 MiB 0.18 0.00 3.69435 -123.755 -3.69435 3.69435 0.99 0.00109125 0.0010111 0.0901711 0.0836776 34 2569 27 6.89349e+06 310065 618332. 2139.56 2.06 0.325623 0.294207 25762 151098 -1 2176 21 1418 1485 120060 27202 3.07481 3.07481 -119.491 -3.07481 0 0 787024. 2723.27 0.24 0.09 0.23 -1 -1 0.24 0.0442944 0.0399399 143 90 0 0 89 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 8.11 vpr 63.72 MiB 0.04 7196 -1 -1 1 0.03 -1 -1 30456 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65248 31 32 391 309 1 246 89 17 17 289 -1 unnamed_device 24.8 MiB 2.45 1248 13157 3309 8741 1107 63.7 MiB 0.20 0.00 4.45339 -147.016 -4.45339 4.45339 0.98 0.00124723 0.00115903 0.0856149 0.0795723 34 3168 23 6.89349e+06 366440 618332. 2139.56 2.06 0.343522 0.311321 25762 151098 -1 2634 20 1819 2605 205853 57101 3.6 3.6 -140.793 -3.6 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.04895 0.0443433 170 64 60 30 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 11.26 vpr 63.71 MiB 0.05 7444 -1 -1 1 0.03 -1 -1 30532 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65240 31 32 455 371 1 307 94 17 17 289 -1 unnamed_device 24.8 MiB 2.31 1502 16069 5112 8143 2814 63.7 MiB 0.24 0.00 5.11799 -165.069 -5.11799 5.11799 0.98 0.00148153 0.00139024 0.10899 0.101466 36 3806 46 6.89349e+06 436909 648988. 2245.63 5.22 0.586183 0.529073 26050 158493 -1 2837 20 2136 2382 208412 45298 4.60875 4.60875 -161.2 -4.60875 0 0 828058. 2865.25 0.25 0.13 0.23 -1 -1 0.25 0.0540525 0.0488537 201 124 0 0 124 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 10.72 vpr 63.62 MiB 0.05 7376 -1 -1 1 0.03 -1 -1 30348 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65152 31 32 413 333 1 269 91 17 17 289 -1 unnamed_device 24.6 MiB 2.61 1430 16615 4445 10446 1724 63.6 MiB 0.24 0.00 5.49016 -175.123 -5.49016 5.49016 0.99 0.00126788 0.00117773 0.106695 0.0990679 42 2998 21 6.89349e+06 394628 744469. 2576.02 4.38 0.516171 0.466599 27202 183097 -1 2527 18 1784 2416 157716 37686 4.61124 4.61124 -162.779 -4.61124 0 0 949917. 3286.91 0.26 0.10 0.27 -1 -1 0.26 0.0408607 0.0370624 181 90 31 31 89 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 10.16 vpr 63.48 MiB 0.03 7400 -1 -1 1 0.04 -1 -1 30436 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65004 31 32 391 309 1 249 90 17 17 289 -1 unnamed_device 24.6 MiB 2.07 1345 14763 4031 8768 1964 63.5 MiB 0.23 0.00 3.73835 -129.663 -3.73835 3.73835 0.98 0.00131125 0.00122222 0.105726 0.0983165 40 2688 21 6.89349e+06 380534 706193. 2443.58 4.32 0.501296 0.453592 26914 176310 -1 2643 21 2144 2994 252190 52777 3.20476 3.20476 -128.412 -3.20476 0 0 926341. 3205.33 0.27 0.13 0.26 -1 -1 0.27 0.0510994 0.0462666 168 64 60 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 8.21 vpr 63.48 MiB 0.03 7256 -1 -1 1 0.03 -1 -1 30512 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65004 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.5 MiB 2.23 1277 12127 3340 7626 1161 63.5 MiB 0.18 0.00 4.64285 -160.85 -4.64285 4.64285 0.99 0.00126187 0.00117305 0.0781517 0.0726308 34 3290 35 6.89349e+06 380534 618332. 2139.56 2.41 0.373407 0.338184 25762 151098 -1 2661 21 2146 2877 209355 47173 4.07096 4.07096 -156.999 -4.07096 0 0 787024. 2723.27 0.26 0.13 0.22 -1 -1 0.26 0.0535546 0.0486537 178 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 12.41 vpr 63.72 MiB 0.04 7440 -1 -1 1 0.03 -1 -1 30652 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65252 32 32 496 380 1 321 95 17 17 289 -1 unnamed_device 25.0 MiB 2.61 1586 15215 4372 9081 1762 63.7 MiB 0.27 0.01 5.09938 -172.571 -5.09938 5.09938 0.99 0.00185176 0.00172065 0.113493 0.10554 34 5293 44 6.89349e+06 436909 618332. 2139.56 5.96 0.497229 0.450525 25762 151098 -1 3744 22 3467 5023 479154 101354 4.89939 4.89939 -183.417 -4.89939 0 0 787024. 2723.27 0.24 0.21 0.21 -1 -1 0.24 0.066082 0.0597066 220 96 62 32 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 6.96 vpr 63.13 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 30628 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 31 32 305 250 1 192 83 17 17 289 -1 unnamed_device 24.2 MiB 1.75 830 6023 1193 4490 340 63.1 MiB 0.09 0.00 3.9423 -130.606 -3.9423 3.9423 0.98 0.00100057 0.000929522 0.0360011 0.0334683 34 2121 21 6.89349e+06 281877 618332. 2139.56 1.77 0.243009 0.218538 25762 151098 -1 1789 18 1352 1784 121136 28518 3.11851 3.11851 -122.256 -3.11851 0 0 787024. 2723.27 0.24 0.08 0.24 -1 -1 0.24 0.0363032 0.0327851 127 34 62 31 31 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 10.59 vpr 63.45 MiB 0.05 7304 -1 -1 1 0.03 -1 -1 30392 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64976 31 32 395 311 1 251 90 17 17 289 -1 unnamed_device 24.7 MiB 2.00 1300 17376 7374 9051 951 63.5 MiB 0.23 0.00 5.04154 -162.723 -5.04154 5.04154 1.00 0.00125704 0.00116872 0.111486 0.103581 36 3224 30 6.89349e+06 380534 648988. 2245.63 4.89 0.503253 0.455416 26050 158493 -1 2374 18 1502 1873 141419 31653 4.13755 4.13755 -147.797 -4.13755 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0455567 0.0413132 168 64 62 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 10.75 vpr 63.51 MiB 0.05 7368 -1 -1 1 0.03 -1 -1 30576 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 397 313 1 254 91 17 17 289 -1 unnamed_device 24.6 MiB 2.54 1335 15391 6333 8071 987 63.5 MiB 0.22 0.00 4.35365 -146.749 -4.35365 4.35365 0.98 0.00125229 0.00116424 0.0979801 0.0909866 36 3505 32 6.89349e+06 380534 648988. 2245.63 4.55 0.385249 0.348882 26050 158493 -1 2785 21 1755 2763 208609 46088 3.5861 3.5861 -137.769 -3.5861 0 0 828058. 2865.25 0.25 0.13 0.23 -1 -1 0.25 0.0515703 0.0466486 172 63 62 32 62 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 7.54 vpr 63.16 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 24.2 MiB 1.49 954 14593 3799 10158 636 63.2 MiB 0.20 0.00 4.3344 -147.889 -4.3344 4.3344 0.99 0.00116537 0.00108425 0.0927002 0.0861993 34 3089 26 6.89349e+06 295971 618332. 2139.56 2.40 0.346037 0.3141 25762 151098 -1 2259 23 2075 3647 241997 57325 4.0429 4.0429 -156.204 -4.0429 0 0 787024. 2723.27 0.24 0.14 0.22 -1 -1 0.24 0.0520643 0.0471101 147 3 128 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 10.19 vpr 63.56 MiB 0.04 7328 -1 -1 1 0.03 -1 -1 30432 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 424 343 1 279 92 17 17 289 -1 unnamed_device 24.5 MiB 1.90 1256 18722 6037 9946 2739 63.6 MiB 0.25 0.00 4.28929 -144.626 -4.28929 4.28929 0.99 0.0012935 0.00120185 0.121128 0.112608 36 3168 26 6.89349e+06 394628 648988. 2245.63 4.61 0.515353 0.466186 26050 158493 -1 2662 20 1705 2025 142589 33541 3.2992 3.2992 -130.28 -3.2992 0 0 828058. 2865.25 0.25 0.11 0.23 -1 -1 0.25 0.050956 0.0461428 185 96 25 25 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 11.27 vpr 63.50 MiB 0.04 7376 -1 -1 1 0.03 -1 -1 30404 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 395 311 1 255 91 17 17 289 -1 unnamed_device 24.6 MiB 2.55 1250 17635 5254 9154 3227 63.5 MiB 0.23 0.00 4.34019 -149.388 -4.34019 4.34019 0.96 0.00125961 0.00116613 0.111569 0.103659 40 2411 23 6.89349e+06 380534 706193. 2443.58 5.05 0.636275 0.574783 26914 176310 -1 2196 24 1784 2736 186416 43409 3.622 3.622 -142.377 -3.622 0 0 926341. 3205.33 0.27 0.13 0.26 -1 -1 0.27 0.0576334 0.0521434 169 61 64 32 60 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 8.19 vpr 63.46 MiB 0.03 7248 -1 -1 1 0.04 -1 -1 30528 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64980 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 24.4 MiB 2.14 1385 9679 2314 6454 911 63.5 MiB 0.15 0.00 3.76725 -134.837 -3.76725 3.76725 0.98 0.00128 0.00118932 0.0638901 0.0593775 34 3443 27 6.89349e+06 380534 618332. 2139.56 2.53 0.343918 0.310997 25762 151098 -1 2873 19 2360 3225 249224 53546 3.27221 3.27221 -135.35 -3.27221 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0484974 0.0439989 175 65 63 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 7.40 vpr 63.27 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 30636 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64788 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 24.4 MiB 1.61 1185 16468 4573 9508 2387 63.3 MiB 0.22 0.00 4.67735 -160.896 -4.67735 4.67735 0.98 0.00121297 0.00112734 0.105681 0.0982378 34 2954 22 6.89349e+06 338252 618332. 2139.56 2.23 0.361563 0.328198 25762 151098 -1 2294 21 1950 2876 202082 45204 4.02876 4.02876 -156.855 -4.02876 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.049991 0.0452801 161 34 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 7.29 vpr 63.50 MiB 0.02 7260 -1 -1 1 0.04 -1 -1 30588 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.4 MiB 1.55 1202 9883 2469 6353 1061 63.5 MiB 0.15 0.00 4.59905 -158.426 -4.59905 4.59905 0.99 0.00103973 0.000966125 0.0639997 0.0595226 34 3336 42 6.89349e+06 380534 618332. 2139.56 2.21 0.312195 0.282547 25762 151098 -1 2687 21 2219 2796 201461 46877 4.22446 4.22446 -162.952 -4.22446 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0518013 0.0468997 177 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 7.96 vpr 63.74 MiB 0.04 7424 -1 -1 1 0.03 -1 -1 30624 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65268 31 32 449 367 1 300 94 17 17 289 -1 unnamed_device 24.8 MiB 1.85 1470 18625 5645 10509 2471 63.7 MiB 0.26 0.00 5.04279 -156.823 -5.04279 5.04279 0.98 0.00134821 0.00125169 0.12082 0.112261 34 3546 43 6.89349e+06 436909 618332. 2139.56 2.44 0.441763 0.399052 25762 151098 -1 2842 19 1811 2146 154808 35448 4.18785 4.18785 -148.269 -4.18785 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.050828 0.0459691 195 122 0 0 122 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 9.01 vpr 63.68 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30592 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65208 32 32 432 346 1 287 91 17 17 289 -1 unnamed_device 24.6 MiB 2.58 1477 9271 2383 5997 891 63.7 MiB 0.16 0.00 4.63225 -158.944 -4.63225 4.63225 0.99 0.00132705 0.00123331 0.0656441 0.0611137 34 4071 47 6.89349e+06 380534 618332. 2139.56 2.80 0.364976 0.329929 25762 151098 -1 3140 20 2394 3500 241561 55660 4.08856 4.08856 -156.525 -4.08856 0 0 787024. 2723.27 0.24 0.14 0.22 -1 -1 0.24 0.052955 0.0479884 190 94 32 32 94 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 7.01 vpr 62.95 MiB 0.04 7032 -1 -1 1 0.03 -1 -1 30584 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64460 32 32 312 255 1 198 85 17 17 289 -1 unnamed_device 24.0 MiB 1.63 1085 16081 5241 8837 2003 62.9 MiB 0.19 0.00 3.72665 -133.239 -3.72665 3.72665 0.98 0.00101789 0.000945642 0.0906136 0.0841763 34 2415 21 6.89349e+06 295971 618332. 2139.56 1.84 0.301651 0.273076 25762 151098 -1 1950 19 1247 1741 112825 26211 2.87006 2.87006 -123.32 -2.87006 0 0 787024. 2723.27 0.25 0.09 0.22 -1 -1 0.25 0.0396428 0.0358196 127 34 63 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 7.69 vpr 63.41 MiB 0.04 7112 -1 -1 1 0.03 -1 -1 30412 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 370 314 1 249 86 17 17 289 -1 unnamed_device 24.5 MiB 1.73 1274 11237 2756 7210 1271 63.4 MiB 0.16 0.00 4.24529 -146.219 -4.24529 4.24529 0.98 0.00114472 0.00106182 0.0708478 0.0657102 34 3143 46 6.89349e+06 310065 618332. 2139.56 2.42 0.354068 0.319035 25762 151098 -1 2456 22 1985 2324 175730 38348 3.42545 3.42545 -138.476 -3.42545 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.048671 0.0439039 153 94 0 0 94 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 14.06 vpr 63.74 MiB 0.05 7288 -1 -1 1 0.03 -1 -1 30796 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65268 32 32 469 351 1 298 94 17 17 289 -1 unnamed_device 24.8 MiB 1.96 1533 17347 6035 9228 2084 63.7 MiB 0.28 0.00 5.35299 -181.211 -5.35299 5.35299 0.98 0.00147401 0.00137102 0.123631 0.114993 34 4721 42 6.89349e+06 422815 618332. 2139.56 8.26 0.681625 0.61653 25762 151098 -1 3526 20 2698 3702 281818 62920 5.1519 5.1519 -191.222 -5.1519 0 0 787024. 2723.27 0.24 0.15 0.22 -1 -1 0.24 0.0585167 0.0531201 209 65 96 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 7.93 vpr 63.35 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30472 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 368 284 1 225 87 17 17 289 -1 unnamed_device 24.5 MiB 1.89 1129 14295 3942 8428 1925 63.4 MiB 0.20 0.00 3.82 -132.539 -3.82 3.82 0.99 0.00119969 0.00111525 0.0921818 0.0856525 34 3149 50 6.89349e+06 324158 618332. 2139.56 2.43 0.407765 0.369281 25762 151098 -1 2406 21 1796 2580 213057 47646 3.63576 3.63576 -139.826 -3.63576 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0509037 0.0462024 156 34 92 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 6.65 vpr 63.08 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30260 -1 -1 32 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 30 32 296 244 1 183 94 17 17 289 -1 unnamed_device 24.1 MiB 1.27 909 12874 3346 8814 714 63.1 MiB 0.15 0.00 4.39149 -134.806 -4.39149 4.39149 0.98 0.000990242 0.000919719 0.0628959 0.0583442 34 2196 24 6.89349e+06 451003 618332. 2139.56 1.90 0.276637 0.249266 25762 151098 -1 1771 21 1051 1777 107811 27360 3.556 3.556 -127.528 -3.556 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0412605 0.0372304 129 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 10.08 vpr 63.81 MiB 0.05 7512 -1 -1 1 0.04 -1 -1 30944 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65340 32 32 531 413 1 356 99 17 17 289 -1 unnamed_device 25.1 MiB 2.54 1761 16059 4299 10191 1569 63.8 MiB 0.27 0.00 5.69513 -191.49 -5.69513 5.69513 1.05 0.00159811 0.00148583 0.116197 0.108008 34 4649 37 6.89349e+06 493284 618332. 2139.56 3.66 0.493335 0.447507 25762 151098 -1 3594 24 3172 3913 274301 63414 5.66524 5.66524 -202.729 -5.66524 0 0 787024. 2723.27 0.24 0.17 0.22 -1 -1 0.24 0.0733968 0.0664125 239 127 32 32 128 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 7.61 vpr 63.39 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 30616 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64908 32 32 376 288 1 225 87 17 17 289 -1 unnamed_device 24.5 MiB 1.35 1115 15639 5251 8363 2025 63.4 MiB 0.21 0.00 4.42849 -155.095 -4.42849 4.42849 0.98 0.00122866 0.00114341 0.103146 0.0959389 34 2888 50 6.89349e+06 324158 618332. 2139.56 2.64 0.416763 0.377917 25762 151098 -1 2345 22 2306 3172 244262 53303 4.09336 4.09336 -152.474 -4.09336 0 0 787024. 2723.27 0.24 0.14 0.22 -1 -1 0.24 0.05235 0.0474203 159 34 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 5.42 vpr 63.32 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 30396 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64844 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 24.3 MiB 0.75 847 11641 2851 7878 912 63.3 MiB 0.14 0.00 3.73565 -131.22 -3.73565 3.73565 0.99 0.000986396 0.000915978 0.0544826 0.0506847 30 2193 26 6.89349e+06 465097 556674. 1926.21 1.29 0.181845 0.164554 25186 138497 -1 1797 20 1182 1929 119769 26931 2.71766 2.71766 -118.342 -2.71766 0 0 706193. 2443.58 0.24 0.05 0.20 -1 -1 0.24 0.0213685 0.019151 123 3 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 10.74 vpr 63.73 MiB 0.05 7440 -1 -1 1 0.04 -1 -1 30980 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 438 320 1 267 93 17 17 289 -1 unnamed_device 24.7 MiB 2.06 1317 12693 3634 7764 1295 63.7 MiB 0.20 0.00 5.35589 -179.726 -5.35589 5.35589 0.98 0.00142509 0.00132813 0.0899624 0.083813 36 3513 23 6.89349e+06 408721 648988. 2245.63 5.23 0.540993 0.489791 26050 158493 -1 2967 19 2273 3426 282834 58393 4.8012 4.8012 -179.731 -4.8012 0 0 828058. 2865.25 0.25 0.15 0.23 -1 -1 0.25 0.0544077 0.0493462 194 34 128 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 9.07 vpr 63.07 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30480 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 1.35 687 12292 3131 7794 1367 63.1 MiB 0.13 0.00 3.61335 -125.578 -3.61335 3.61335 0.98 0.000989978 0.00092124 0.0728143 0.0677227 36 2171 21 6.89349e+06 225501 648988. 2245.63 4.36 0.371378 0.334468 26050 158493 -1 1680 20 1381 2251 148694 35268 3.12326 3.12326 -127.01 -3.12326 0 0 828058. 2865.25 0.24 0.09 0.12 -1 -1 0.24 0.0385801 0.0347744 114 3 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 6.73 vpr 63.33 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 30480 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 24.4 MiB 1.25 800 11281 2617 7555 1109 63.3 MiB 0.13 0.00 3.71935 -120.327 -3.71935 3.71935 0.79 0.0009921 0.000922796 0.0662652 0.0616515 34 2390 30 6.89349e+06 267783 618332. 2139.56 2.16 0.243045 0.219646 25762 151098 -1 1807 23 1412 1901 149913 36631 3.12056 3.12056 -120.206 -3.12056 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.043808 0.0395121 121 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 7.64 vpr 63.56 MiB 0.05 7476 -1 -1 1 0.04 -1 -1 30436 -1 -1 31 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65084 29 32 393 319 1 253 92 17 17 289 -1 unnamed_device 24.6 MiB 2.01 1254 13547 3444 8490 1613 63.6 MiB 0.19 0.00 4.15454 -130.214 -4.15454 4.15454 1.00 0.00123689 0.00115088 0.0840893 0.078203 34 2905 22 6.89349e+06 436909 618332. 2139.56 2.01 0.338977 0.306866 25762 151098 -1 2420 23 1859 2468 163511 38191 3.459 3.459 -128.503 -3.459 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.055733 0.0504318 171 88 29 29 85 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 8.23 vpr 63.57 MiB 0.04 7224 -1 -1 1 0.03 -1 -1 30736 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65100 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.6 MiB 2.05 1076 9537 2232 6898 407 63.6 MiB 0.15 0.00 5.13146 -169.785 -5.13146 5.13146 0.98 0.00127165 0.00118163 0.0634912 0.0589913 36 2959 22 6.89349e+06 366440 648988. 2245.63 2.58 0.328161 0.296748 26050 158493 -1 2286 22 2249 3178 188602 46004 4.64975 4.64975 -167.55 -4.64975 0 0 828058. 2865.25 0.25 0.13 0.23 -1 -1 0.25 0.0550288 0.0498761 178 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 8.16 vpr 63.90 MiB 0.04 7208 -1 -1 1 0.03 -1 -1 30604 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65436 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.9 MiB 2.07 1296 18180 5634 10019 2527 63.9 MiB 0.26 0.00 5.12859 -176.097 -5.12859 5.12859 0.98 0.00127936 0.00118922 0.119545 0.111092 34 3512 26 6.89349e+06 366440 618332. 2139.56 2.37 0.398095 0.361382 25762 151098 -1 2807 22 2402 3379 259780 55900 4.43835 4.43835 -171.785 -4.43835 0 0 787024. 2723.27 0.24 0.15 0.22 -1 -1 0.24 0.0561662 0.0509125 175 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 9.34 vpr 63.34 MiB 0.04 7228 -1 -1 1 0.03 -1 -1 30524 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 345 287 1 218 85 17 17 289 -1 unnamed_device 24.5 MiB 1.49 1015 9757 2248 6823 686 63.3 MiB 0.14 0.00 4.30029 -148.521 -4.30029 4.30029 0.98 0.00108286 0.00100476 0.0619571 0.0575448 36 2552 25 6.89349e+06 295971 648988. 2245.63 4.36 0.383567 0.345082 26050 158493 -1 2076 23 1440 1615 117390 26897 3.3494 3.3494 -136.71 -3.3494 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0480721 0.0433597 141 65 32 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 7.58 vpr 63.33 MiB 0.04 7188 -1 -1 1 0.03 -1 -1 30476 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 31 32 353 302 1 231 85 17 17 289 -1 unnamed_device 24.4 MiB 1.80 1096 5665 1172 4284 209 63.3 MiB 0.10 0.00 4.25519 -136.378 -4.25519 4.25519 0.99 0.00108829 0.00101001 0.0452644 0.0420419 34 2893 26 6.89349e+06 310065 618332. 2139.56 2.26 0.288102 0.258866 25762 151098 -1 2315 20 1622 2053 162238 35883 3.2632 3.2632 -127.579 -3.2632 0 0 787024. 2723.27 0.26 0.10 0.22 -1 -1 0.26 0.0431373 0.0388968 146 90 0 0 89 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 8.39 vpr 63.45 MiB 0.05 7256 -1 -1 1 0.03 -1 -1 30588 -1 -1 29 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 30 32 374 297 1 236 91 17 17 289 -1 unnamed_device 24.5 MiB 2.29 1163 18043 6463 9066 2514 63.4 MiB 0.24 0.00 3.98631 -131.256 -3.98631 3.98631 1.12 0.0012521 0.00116036 0.113625 0.10599 36 2688 21 6.89349e+06 408721 648988. 2245.63 2.33 0.355097 0.323159 26050 158493 -1 2289 18 1458 2087 141000 31703 3.12951 3.12951 -122.74 -3.12951 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0430283 0.0389783 164 60 60 30 57 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 8.63 vpr 63.17 MiB 0.04 7208 -1 -1 1 0.03 -1 -1 30428 -1 -1 26 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 28 32 332 260 1 203 86 17 17 289 -1 unnamed_device 24.4 MiB 1.24 901 12749 3235 8752 762 63.2 MiB 0.16 0.00 4.55505 -133.271 -4.55505 4.55505 0.98 0.00108238 0.00100705 0.0757553 0.070477 34 2528 28 6.89349e+06 366440 618332. 2139.56 3.87 0.43389 0.391566 25762 151098 -1 2014 20 1576 2314 145295 35460 3.90486 3.90486 -133.323 -3.90486 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0427975 0.038674 144 34 84 28 28 28 -fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 7.76 vpr 63.09 MiB 0.04 7140 -1 -1 1 0.03 -1 -1 30348 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 30 32 325 273 1 208 83 17 17 289 -1 unnamed_device 24.0 MiB 2.16 1085 9443 2576 6116 751 63.1 MiB 0.13 0.00 4.29542 -138.034 -4.29542 4.29542 0.99 0.00103875 0.000964485 0.0570783 0.0529906 36 2474 21 6.89349e+06 295971 648988. 2245.63 2.13 0.261702 0.235799 26050 158493 -1 2109 18 1565 2159 152138 34492 4.05654 4.05654 -142.558 -4.05654 0 0 828058. 2865.25 0.25 0.09 0.23 -1 -1 0.25 0.0377331 0.0340385 136 63 30 30 60 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 7.55 vpr 63.46 MiB 0.04 7288 -1 -1 1 0.03 -1 -1 30312 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64980 32 32 361 308 1 245 85 17 17 289 -1 unnamed_device 24.6 MiB 1.68 1214 10129 2604 6568 957 63.5 MiB 0.14 0.00 3.7829 -130.041 -3.7829 3.7829 0.99 0.00113287 0.00105242 0.0642723 0.0596476 34 3197 35 6.89349e+06 295971 618332. 2139.56 2.28 0.321938 0.290083 25762 151098 -1 2423 22 1857 2180 154026 36456 3.01561 3.01561 -119.84 -3.01561 0 0 787024. 2723.27 0.27 0.11 0.21 -1 -1 0.27 0.0473347 0.0426921 150 91 0 0 91 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 7.07 vpr 63.44 MiB 0.03 7072 -1 -1 1 0.03 -1 -1 30200 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 24.4 MiB 0.87 1028 15180 4436 8407 2337 63.4 MiB 0.19 0.00 4.35993 -144.85 -4.35993 4.35993 0.98 0.00113529 0.00105646 0.0770177 0.0716416 28 3228 25 6.89349e+06 521472 531479. 1839.03 2.69 0.221315 0.201335 24610 126494 -1 2473 20 1787 2963 239561 52372 4.0067 4.0067 -150.069 -4.0067 0 0 648988. 2245.63 0.21 0.12 0.19 -1 -1 0.21 0.0447655 0.0405535 151 4 124 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 7.51 vpr 63.52 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30616 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65044 32 32 407 319 1 257 90 17 17 289 -1 unnamed_device 24.5 MiB 1.49 1305 12351 3315 7817 1219 63.5 MiB 0.18 0.00 4.94724 -169.098 -4.94724 4.94724 0.98 0.00122027 0.0011287 0.0814287 0.0756923 34 3371 40 6.89349e+06 366440 618332. 2139.56 2.40 0.38805 0.351325 25762 151098 -1 2719 23 1943 2582 177929 42483 4.48365 4.48365 -165.166 -4.48365 0 0 787024. 2723.27 0.27 0.13 0.21 -1 -1 0.27 0.0576775 0.0521341 173 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 8.11 vpr 63.80 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30548 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65328 32 32 407 319 1 256 90 17 17 289 -1 unnamed_device 24.8 MiB 1.95 1432 15366 4335 9387 1644 63.8 MiB 0.22 0.00 5.00868 -172.431 -5.00868 5.00868 0.98 0.00129871 0.00120669 0.102259 0.0949194 34 3633 29 6.89349e+06 366440 618332. 2139.56 2.54 0.331836 0.301355 25762 151098 -1 2830 23 2541 3623 272831 60026 4.65479 4.65479 -171.973 -4.65479 0 0 787024. 2723.27 0.24 0.15 0.20 -1 -1 0.24 0.0571137 0.0516851 171 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 9.61 vpr 63.56 MiB 0.04 7240 -1 -1 1 0.03 -1 -1 30456 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 399 315 1 257 91 17 17 289 -1 unnamed_device 24.5 MiB 2.70 1315 8455 1941 6044 470 63.6 MiB 0.14 0.00 4.23794 -144.857 -4.23794 4.23794 0.99 0.00127335 0.00118484 0.0558005 0.0518898 34 4039 45 6.89349e+06 380534 618332. 2139.56 3.30 0.36988 0.334185 25762 151098 -1 2943 22 2065 3015 293643 62230 3.73005 3.73005 -144.273 -3.73005 0 0 787024. 2723.27 0.24 0.15 0.22 -1 -1 0.24 0.0537466 0.0486389 172 65 60 30 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 7.53 vpr 62.96 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30384 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64476 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 24.0 MiB 1.89 822 13556 3700 7881 1975 63.0 MiB 0.16 0.00 3.95826 -124.717 -3.95826 3.95826 1.02 0.000688835 0.000635279 0.0724522 0.0672646 34 2344 20 6.89349e+06 267783 618332. 2139.56 2.08 0.274947 0.248174 25762 151098 -1 1968 23 1339 1865 147245 33120 3.3165 3.3165 -122.046 -3.3165 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0435234 0.0392492 122 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 7.90 vpr 63.35 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30500 -1 -1 26 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 30 32 383 303 1 241 88 17 17 289 -1 unnamed_device 24.4 MiB 2.25 1213 9253 2556 5823 874 63.3 MiB 0.14 0.00 4.87058 -156.054 -4.87058 4.87058 1.00 0.00121371 0.00112775 0.060712 0.0563636 34 3042 24 6.89349e+06 366440 618332. 2139.56 2.10 0.32069 0.289465 25762 151098 -1 2557 21 2174 3009 227953 50322 4.44765 4.44765 -158.355 -4.44765 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0500207 0.0452923 165 63 60 30 60 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 7.89 vpr 63.86 MiB 0.03 7380 -1 -1 1 0.03 -1 -1 30896 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65388 32 32 469 381 1 316 94 17 17 289 -1 unnamed_device 24.8 MiB 1.68 1479 11170 3037 7343 790 63.9 MiB 0.17 0.00 4.57601 -155.886 -4.57601 4.57601 0.99 0.00138276 0.00128323 0.0778031 0.0723149 34 4023 39 6.89349e+06 422815 618332. 2139.56 2.63 0.350066 0.315834 25762 151098 -1 3026 22 2129 2171 174474 39968 4.18485 4.18485 -159.068 -4.18485 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0593123 0.0535374 204 127 0 0 128 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 7.76 vpr 63.67 MiB 0.05 7396 -1 -1 1 0.03 -1 -1 30484 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65200 31 32 425 341 1 280 92 17 17 289 -1 unnamed_device 24.6 MiB 1.85 1357 18515 5570 10360 2585 63.7 MiB 0.25 0.00 5.04454 -166.93 -5.04454 5.04454 0.98 0.00129566 0.00120346 0.119341 0.11086 34 3587 24 6.89349e+06 408721 618332. 2139.56 2.29 0.348762 0.316878 25762 151098 -1 2730 20 2172 2752 178093 42585 4.75925 4.75925 -170.719 -4.75925 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.051254 0.0463152 186 94 31 31 93 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 8.39 vpr 63.47 MiB 0.04 7264 -1 -1 1 0.03 -1 -1 30536 -1 -1 28 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64996 30 32 404 328 1 261 90 17 17 289 -1 unnamed_device 24.4 MiB 2.40 1272 11145 3099 7385 661 63.5 MiB 0.17 0.00 4.33029 -138.243 -4.33029 4.33029 1.00 0.00125005 0.00116212 0.071888 0.0667727 34 3380 30 6.89349e+06 394628 618332. 2139.56 2.46 0.348708 0.315068 25762 151098 -1 2565 22 2099 2992 209047 50292 3.8257 3.8257 -137.142 -3.8257 0 0 787024. 2723.27 0.24 0.13 0.17 -1 -1 0.24 0.0536024 0.0485546 175 92 26 26 90 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 8.65 vpr 63.58 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30524 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65108 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.6 MiB 2.16 1381 17577 5400 9797 2380 63.6 MiB 0.25 0.00 5.10907 -172.718 -5.10907 5.10907 0.99 0.00127931 0.00118939 0.11425 0.106045 34 3521 28 6.89349e+06 366440 618332. 2139.56 2.79 0.396774 0.359949 25762 151098 -1 2796 20 2210 3114 232015 49651 4.45255 4.45255 -167.863 -4.45255 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0506542 0.0458946 177 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 10.47 vpr 63.50 MiB 0.04 7372 -1 -1 1 0.04 -1 -1 30432 -1 -1 30 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 29 32 387 316 1 251 91 17 17 289 -1 unnamed_device 24.5 MiB 2.44 1289 17431 5289 9749 2393 63.5 MiB 0.23 0.00 4.47765 -137.075 -4.47765 4.47765 0.98 0.00120295 0.00111841 0.105573 0.0980815 36 2843 29 6.89349e+06 422815 648988. 2245.63 4.41 0.478977 0.432815 26050 158493 -1 2448 16 1438 1964 134502 29649 3.545 3.545 -123.546 -3.545 0 0 828058. 2865.25 0.25 0.09 0.23 -1 -1 0.25 0.0397514 0.0360541 170 88 26 26 85 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 6.38 vpr 62.91 MiB 0.04 6996 -1 -1 1 0.03 -1 -1 30404 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 23.9 MiB 0.84 883 14872 4496 9235 1141 62.9 MiB 0.18 0.00 3.60415 -130.285 -3.60415 3.60415 1.00 0.000988579 0.000919314 0.0867778 0.0806484 34 2348 23 6.89349e+06 225501 618332. 2139.56 2.02 0.292334 0.264617 25762 151098 -1 1945 23 1556 2537 191916 43831 2.90086 2.90086 -126.44 -2.90086 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0432531 0.0389858 114 3 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 10.34 vpr 63.54 MiB 0.03 7244 -1 -1 1 0.03 -1 -1 30440 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 407 319 1 259 91 17 17 289 -1 unnamed_device 24.5 MiB 1.81 1311 16411 5462 8005 2944 63.5 MiB 0.23 0.00 5.31517 -177.727 -5.31517 5.31517 0.98 0.00129269 0.00120286 0.106917 0.0994117 36 3434 24 6.89349e+06 380534 648988. 2245.63 4.86 0.515081 0.466369 26050 158493 -1 2723 21 2234 3055 227335 50266 4.61675 4.61675 -172.667 -4.61675 0 0 828058. 2865.25 0.25 0.13 0.23 -1 -1 0.25 0.052898 0.0479679 174 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 9.28 vpr 63.60 MiB 0.04 7240 -1 -1 1 0.03 -1 -1 30416 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 407 319 1 263 89 17 17 289 -1 unnamed_device 24.6 MiB 2.50 1301 10979 2667 7606 706 63.6 MiB 0.17 0.00 5.01095 -168.936 -5.01095 5.01095 0.98 0.00122757 0.0011353 0.0744507 0.0691723 34 3883 46 6.89349e+06 352346 618332. 2139.56 3.12 0.340249 0.307194 25762 151098 -1 3072 23 2814 3924 386709 79001 4.66705 4.66705 -172.835 -4.66705 0 0 787024. 2723.27 0.24 0.17 0.22 -1 -1 0.24 0.0577831 0.0523732 176 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 7.25 vpr 63.13 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30428 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 315 267 1 204 83 17 17 289 -1 unnamed_device 24.1 MiB 1.82 973 13043 3975 6991 2077 63.1 MiB 0.16 0.00 3.58222 -118.01 -3.58222 3.58222 0.99 0.00101974 0.000947287 0.0759456 0.0705352 34 2419 24 6.89349e+06 267783 618332. 2139.56 1.93 0.290042 0.26184 25762 151098 -1 1965 19 1055 1281 102329 22550 2.9678 2.9678 -113.76 -2.9678 0 0 787024. 2723.27 0.25 0.09 0.22 -1 -1 0.25 0.0417681 0.0375963 128 55 32 32 54 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 7.50 vpr 62.88 MiB 0.04 6888 -1 -1 1 0.02 -1 -1 30428 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 24.0 MiB 1.06 719 6444 1413 4474 557 62.9 MiB 0.09 0.00 3.59935 -121.473 -3.59935 3.59935 0.98 0.000953522 0.000887068 0.0381584 0.0354646 28 2152 26 6.89349e+06 239595 531479. 1839.03 3.07 0.320867 0.287779 24610 126494 -1 2035 19 1357 2117 169950 37974 3.15296 3.15296 -129.57 -3.15296 0 0 648988. 2245.63 0.20 0.10 0.18 -1 -1 0.20 0.0362284 0.0326842 112 4 93 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 7.65 vpr 63.62 MiB 0.05 7268 -1 -1 1 0.03 -1 -1 30456 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65152 32 32 381 303 1 240 89 17 17 289 -1 unnamed_device 24.7 MiB 1.63 1298 18107 5148 10871 2088 63.6 MiB 0.24 0.00 4.34669 -144.598 -4.34669 4.34669 0.98 0.0012149 0.001129 0.114394 0.106302 34 2889 26 6.89349e+06 352346 618332. 2139.56 2.39 0.378383 0.343005 25762 151098 -1 2326 20 1673 2098 149009 34006 3.6032 3.6032 -138.998 -3.6032 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0476672 0.0431552 158 59 60 32 58 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 8.34 vpr 63.49 MiB 0.04 7420 -1 -1 1 0.03 -1 -1 30508 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 406 330 1 263 90 17 17 289 -1 unnamed_device 24.5 MiB 2.01 1266 15567 5192 7236 3139 63.5 MiB 0.22 0.00 5.08869 -159.08 -5.08869 5.08869 1.04 0.0012549 0.00116268 0.106011 0.0981254 34 3594 24 6.89349e+06 366440 618332. 2139.56 2.64 0.375868 0.340231 25762 151098 -1 2679 18 1829 2171 186378 41444 4.55255 4.55255 -160.941 -4.55255 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0456107 0.04133 170 88 28 28 88 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 6.83 vpr 63.54 MiB 0.03 7396 -1 -1 1 0.04 -1 -1 30496 -1 -1 41 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65060 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 24.6 MiB 0.95 1297 11961 2982 7937 1042 63.5 MiB 0.17 0.00 4.87442 -165.154 -4.87442 4.87442 0.98 0.00133888 0.00124377 0.0679379 0.063152 34 3447 27 6.89349e+06 577847 618332. 2139.56 2.34 0.358238 0.325004 25762 151098 -1 2784 21 2109 3564 250014 57141 4.46129 4.46129 -165.606 -4.46129 0 0 787024. 2723.27 0.24 0.14 0.22 -1 -1 0.24 0.0548799 0.0498481 183 3 156 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 7.95 vpr 63.21 MiB 0.05 7280 -1 -1 1 0.04 -1 -1 30560 -1 -1 27 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 30 32 371 295 1 235 89 17 17 289 -1 unnamed_device 24.3 MiB 2.17 1092 10979 2817 6746 1416 63.2 MiB 0.16 0.00 3.839 -121.777 -3.839 3.839 0.98 0.00117392 0.00109112 0.0684721 0.0636329 34 2750 24 6.89349e+06 380534 618332. 2139.56 2.25 0.319967 0.289185 25762 151098 -1 2212 19 1890 2694 189676 42972 3.08851 3.08851 -116.565 -3.08851 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0441884 0.040014 160 59 60 30 56 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 6.71 vpr 62.96 MiB 0.04 7180 -1 -1 1 0.03 -1 -1 30644 -1 -1 22 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64476 27 32 269 226 1 168 81 17 17 289 -1 unnamed_device 24.1 MiB 1.41 891 13031 4385 6839 1807 63.0 MiB 0.14 0.00 4.27455 -123.837 -4.27455 4.27455 0.98 0.000906663 0.000842176 0.069567 0.0646088 34 1905 20 6.89349e+06 310065 618332. 2139.56 1.79 0.260947 0.235538 25762 151098 -1 1690 23 1263 1864 143780 31545 3.6923 3.6923 -119.882 -3.6923 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0397868 0.0357684 112 34 54 27 27 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 9.89 vpr 64.41 MiB 0.05 7424 -1 -1 1 0.03 -1 -1 30720 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65952 32 32 493 378 1 323 96 17 17 289 -1 unnamed_device 25.1 MiB 2.41 1698 16521 4103 10154 2264 64.4 MiB 0.27 0.00 5.18181 -174.668 -5.18181 5.18181 0.98 0.0015254 0.0014194 0.118444 0.110203 34 4824 48 6.89349e+06 451003 618332. 2139.56 3.69 0.505552 0.457941 25762 151098 -1 3407 21 2531 3608 271884 58881 4.72025 4.72025 -168.233 -4.72025 0 0 787024. 2723.27 0.24 0.15 0.22 -1 -1 0.24 0.0626991 0.0568102 219 95 62 31 95 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 8.79 vpr 63.73 MiB 0.05 7424 -1 -1 1 0.03 -1 -1 30516 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 31 32 455 371 1 306 94 17 17 289 -1 unnamed_device 24.9 MiB 2.47 1472 15004 3471 10071 1462 63.7 MiB 0.22 0.00 5.05307 -164.793 -5.05307 5.05307 0.75 0.00136948 0.00127244 0.0996708 0.0925388 36 3349 24 6.89349e+06 436909 648988. 2245.63 2.90 0.392755 0.355359 26050 158493 -1 2823 20 2123 2466 182409 41176 4.52455 4.52455 -166.142 -4.52455 0 0 828058. 2865.25 0.25 0.12 0.23 -1 -1 0.25 0.0554139 0.050114 201 124 0 0 124 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 10.29 vpr 63.37 MiB 0.03 7288 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 355 304 1 244 85 17 17 289 -1 unnamed_device 24.5 MiB 1.72 1086 15895 5952 7404 2539 63.4 MiB 0.20 0.00 4.35779 -139.935 -4.35779 4.35779 0.98 0.00110535 0.00102575 0.0970721 0.0900923 36 2929 38 6.89349e+06 295971 648988. 2245.63 5.00 0.448162 0.404028 26050 158493 -1 2240 19 1655 1916 161006 35242 3.6363 3.6363 -139.706 -3.6363 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.042602 0.0384969 149 89 0 0 89 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 7.94 vpr 63.37 MiB 0.04 7016 -1 -1 1 0.03 -1 -1 30484 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 364 282 1 225 87 17 17 289 -1 unnamed_device 24.4 MiB 2.02 1129 14295 4007 8660 1628 63.4 MiB 0.20 0.00 4.63878 -154.018 -4.63878 4.63878 0.98 0.00115753 0.00107319 0.0912801 0.084818 34 3049 33 6.89349e+06 324158 618332. 2139.56 2.37 0.362546 0.328444 25762 151098 -1 2310 19 1294 1813 134206 33161 3.87676 3.87676 -148.22 -3.87676 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.044757 0.0405495 151 34 90 30 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 7.89 vpr 63.51 MiB 0.04 7408 -1 -1 1 0.03 -1 -1 30752 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65032 31 32 443 336 1 280 94 17 17 289 -1 unnamed_device 24.7 MiB 1.86 1343 18838 5810 10490 2538 63.5 MiB 0.29 0.00 4.61515 -155.312 -4.61515 4.61515 0.99 0.0014035 0.00130685 0.127521 0.118701 34 3458 25 6.89349e+06 436909 618332. 2139.56 2.28 0.429169 0.38964 25762 151098 -1 2648 21 2215 3071 207930 47158 3.95986 3.95986 -150.572 -3.95986 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0577189 0.0522891 195 64 87 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 8.19 vpr 63.36 MiB 0.03 7140 -1 -1 1 0.03 -1 -1 30436 -1 -1 28 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 30 32 373 297 1 235 90 17 17 289 -1 unnamed_device 24.4 MiB 2.14 1242 16773 5664 8452 2657 63.4 MiB 0.22 0.00 4.37249 -137.399 -4.37249 4.37249 0.98 0.00109806 0.00101343 0.100904 0.0937775 36 2997 29 6.89349e+06 394628 648988. 2245.63 2.47 0.365724 0.331611 26050 158493 -1 2532 18 1518 2385 178199 37698 3.6895 3.6895 -134.571 -3.6895 0 0 828058. 2865.25 0.25 0.11 0.23 -1 -1 0.25 0.0428586 0.0388159 162 61 58 30 58 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 8.09 vpr 63.75 MiB 0.06 7240 -1 -1 1 0.03 -1 -1 30540 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65280 32 32 407 319 1 260 92 17 17 289 -1 unnamed_device 24.8 MiB 1.67 1384 17066 6142 9147 1777 63.8 MiB 0.25 0.00 5.13217 -171.938 -5.13217 5.13217 0.98 0.00128333 0.00119331 0.109122 0.10141 34 3511 25 6.89349e+06 394628 618332. 2139.56 2.66 0.390034 0.354116 25762 151098 -1 2747 23 2259 3080 260903 55766 4.27385 4.27385 -162.769 -4.27385 0 0 787024. 2723.27 0.24 0.14 0.22 -1 -1 0.24 0.0567912 0.0514543 173 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 7.95 vpr 63.48 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 30468 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65000 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 24.5 MiB 2.00 1428 17431 4990 10284 2157 63.5 MiB 0.24 0.00 3.82792 -135.136 -3.82792 3.82792 0.99 0.00127812 0.0011882 0.112389 0.104467 34 3391 29 6.89349e+06 380534 618332. 2139.56 2.30 0.394329 0.357726 25762 151098 -1 2924 21 2224 3061 234431 52543 3.17656 3.17656 -134.009 -3.17656 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0532376 0.0482549 175 65 63 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 6.61 vpr 62.92 MiB 0.04 7204 -1 -1 1 0.03 -1 -1 30448 -1 -1 21 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 29 32 287 238 1 178 82 17 17 289 -1 unnamed_device 24.0 MiB 1.29 801 14322 5270 6630 2422 62.9 MiB 0.16 0.00 3.809 -119.904 -3.809 3.809 0.98 0.00096486 0.000897464 0.0799562 0.0743444 34 1980 27 6.89349e+06 295971 618332. 2139.56 1.85 0.286365 0.258647 25762 151098 -1 1671 21 1552 2041 148453 33340 3.02985 3.02985 -113.565 -3.02985 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0392352 0.0353461 118 34 58 29 29 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 7.72 vpr 63.28 MiB 0.04 7192 -1 -1 1 0.03 -1 -1 30204 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 334 290 1 222 84 17 17 289 -1 unnamed_device 24.5 MiB 1.79 1028 8502 1925 6217 360 63.3 MiB 0.12 0.00 4.34059 -128.583 -4.34059 4.34059 0.99 0.00104372 0.000968428 0.051098 0.0474007 34 2941 47 6.89349e+06 281877 618332. 2139.56 2.42 0.312892 0.280907 25762 151098 -1 2175 24 1909 2260 181733 41908 3.53925 3.53925 -123.24 -3.53925 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0475874 0.0428282 135 82 0 0 82 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 7.39 vpr 63.40 MiB 0.05 7348 -1 -1 1 0.03 -1 -1 30536 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 31 32 365 281 1 225 87 17 17 289 -1 unnamed_device 24.6 MiB 1.34 1184 15255 6384 8070 801 63.4 MiB 0.21 0.00 4.58005 -151.573 -4.58005 4.58005 1.01 0.00119599 0.00111267 0.09739 0.0906053 36 2862 20 6.89349e+06 338252 648988. 2245.63 2.37 0.344733 0.312857 26050 158493 -1 2237 20 1733 2508 175432 38753 3.98186 3.98186 -150.23 -3.98186 0 0 828058. 2865.25 0.26 0.11 0.23 -1 -1 0.26 0.0469617 0.0425978 154 34 93 31 31 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 8.99 vpr 63.23 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30404 -1 -1 21 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64744 29 32 297 254 1 193 82 17 17 289 -1 unnamed_device 24.3 MiB 1.37 958 13610 5420 5754 2436 63.2 MiB 0.16 0.00 3.4949 -108.08 -3.4949 3.4949 0.98 0.00096291 0.000894684 0.0762002 0.0708264 36 2121 21 6.89349e+06 295971 648988. 2245.63 4.15 0.354422 0.318742 26050 158493 -1 1902 17 1132 1326 100584 22699 2.93591 2.93591 -108.789 -2.93591 0 0 828058. 2865.25 0.25 0.07 0.23 -1 -1 0.25 0.0332284 0.0299643 123 56 29 29 52 26 -fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 7.60 vpr 63.44 MiB 0.04 7124 -1 -1 1 0.03 -1 -1 30328 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 32 32 314 256 1 194 82 17 17 289 -1 unnamed_device 24.5 MiB 1.81 991 12186 3867 6660 1659 63.4 MiB 0.15 0.00 3.839 -135.491 -3.839 3.839 0.98 0.00104358 0.000969345 0.0736062 0.0683866 34 2579 27 6.89349e+06 253689 618332. 2139.56 2.27 0.302493 0.273505 25762 151098 -1 2124 21 1745 2448 209685 43159 3.22191 3.22191 -129.637 -3.22191 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0425214 0.0383512 127 34 64 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 7.43 vpr 63.26 MiB 0.03 7296 -1 -1 1 0.03 -1 -1 30412 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64780 31 32 387 307 1 242 90 17 17 289 -1 unnamed_device 24.2 MiB 1.88 1211 12351 3377 8033 941 63.3 MiB 0.17 0.00 4.27594 -141.751 -4.27594 4.27594 1.00 0.00122464 0.00113774 0.0797672 0.0741486 34 3018 20 6.89349e+06 380534 618332. 2139.56 1.95 0.282987 0.256944 25762 151098 -1 2561 21 2080 2835 217706 49382 3.7316 3.7316 -143.183 -3.7316 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0503215 0.0455381 164 64 58 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 7.41 vpr 63.10 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30540 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 31 32 308 262 1 197 84 17 17 289 -1 unnamed_device 24.4 MiB 1.57 1059 8685 2032 5995 658 63.1 MiB 0.11 0.00 3.20612 -110.242 -3.20612 3.20612 0.98 0.000997831 0.000926496 0.0491706 0.045682 34 2452 44 6.89349e+06 295971 618332. 2139.56 2.39 0.295122 0.265095 25762 151098 -1 2110 17 1036 1278 97203 22203 2.93621 2.93621 -110.268 -2.93621 0 0 787024. 2723.27 0.24 0.07 0.22 -1 -1 0.24 0.0342932 0.0309498 125 55 31 31 53 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 7.64 vpr 63.35 MiB 0.05 7260 -1 -1 1 0.03 -1 -1 30516 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 383 307 1 242 89 17 17 289 -1 unnamed_device 24.5 MiB 1.75 1275 17711 6428 9355 1928 63.4 MiB 0.24 0.00 4.24029 -141.492 -4.24029 4.24029 0.98 0.00121376 0.00112786 0.111885 0.103885 34 3020 20 6.89349e+06 352346 618332. 2139.56 2.25 0.36095 0.327665 25762 151098 -1 2509 20 1641 2336 208041 42693 3.5641 3.5641 -135.855 -3.5641 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0478838 0.043329 162 65 52 26 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 8.41 vpr 63.75 MiB 0.05 7396 -1 -1 1 0.03 -1 -1 30388 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65280 31 32 422 339 1 277 94 17 17 289 -1 unnamed_device 24.7 MiB 2.37 1343 17134 5604 8974 2556 63.8 MiB 0.24 0.00 5.0297 -160.896 -5.0297 5.0297 0.98 0.0013106 0.00121454 0.108325 0.100581 34 3704 27 6.89349e+06 436909 618332. 2139.56 2.34 0.332953 0.302477 25762 151098 -1 2894 18 2223 3162 244232 52929 4.16609 4.16609 -155.69 -4.16609 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0491524 0.0445738 185 93 31 31 92 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 8.05 vpr 63.28 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30360 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 333 279 1 216 85 17 17 289 -1 unnamed_device 24.5 MiB 2.43 1150 11245 3098 7003 1144 63.3 MiB 0.15 0.00 3.53115 -123.341 -3.53115 3.53115 0.98 0.00105851 0.000982949 0.0666862 0.0618951 34 3022 27 6.89349e+06 295971 618332. 2139.56 2.13 0.29692 0.26777 25762 151098 -1 2451 19 1509 2046 151970 33695 3.26926 3.26926 -123.448 -3.26926 0 0 787024. 2723.27 0.26 0.10 0.22 -1 -1 0.26 0.0401867 0.036286 137 61 32 32 60 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 9.24 vpr 63.43 MiB 0.03 7044 -1 -1 1 0.04 -1 -1 30092 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 32 32 339 283 1 218 83 17 17 289 -1 unnamed_device 24.6 MiB 1.39 960 9803 2241 6661 901 63.4 MiB 0.13 0.00 3.817 -127.178 -3.817 3.817 0.98 0.00108044 0.00100335 0.0612998 0.056913 36 2337 23 6.89349e+06 267783 648988. 2245.63 4.37 0.388321 0.34916 26050 158493 -1 1923 21 1480 1767 110592 27779 3.05446 3.05446 -122.319 -3.05446 0 0 828058. 2865.25 0.25 0.09 0.23 -1 -1 0.25 0.0443378 0.0399871 138 63 32 32 62 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 7.41 vpr 63.52 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 30820 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65048 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.5 MiB 1.61 1238 13147 2986 8190 1971 63.5 MiB 0.18 0.00 4.60895 -158.911 -4.60895 4.60895 0.99 0.00126974 0.00117965 0.0852012 0.079136 34 3303 22 6.89349e+06 380534 618332. 2139.56 2.18 0.292681 0.265696 25762 151098 -1 2615 20 2148 2635 201100 44763 3.85946 3.85946 -152.611 -3.85946 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0499151 0.0452364 178 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 6.55 vpr 63.34 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30496 -1 -1 26 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 29 32 367 293 1 231 87 17 17 289 -1 unnamed_device 24.4 MiB 1.86 1165 15639 4840 8583 2216 63.3 MiB 0.21 0.00 3.69045 -118.464 -3.69045 3.69045 0.99 0.00116695 0.00108503 0.0982606 0.0913436 30 2493 21 6.89349e+06 366440 556674. 1926.21 1.17 0.244183 0.222455 25186 138497 -1 2048 22 1565 2117 122502 28169 2.97676 2.97676 -113.932 -2.97676 0 0 706193. 2443.58 0.22 0.10 0.19 -1 -1 0.22 0.0499546 0.0451269 157 62 56 29 58 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 10.74 vpr 63.84 MiB 0.05 7368 -1 -1 1 0.03 -1 -1 30672 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65372 32 32 469 381 1 315 93 17 17 289 -1 unnamed_device 24.8 MiB 1.94 1517 16893 4853 9389 2651 63.8 MiB 0.24 0.00 4.95684 -167.658 -4.95684 4.95684 0.99 0.0014126 0.00131337 0.117483 0.109202 40 3129 21 6.89349e+06 408721 706193. 2443.58 5.06 0.642281 0.579889 26914 176310 -1 2894 20 2497 2922 242421 51725 4.35225 4.35225 -160.857 -4.35225 0 0 926341. 3205.33 0.27 0.13 0.26 -1 -1 0.27 0.0553313 0.0500149 203 127 0 0 128 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 7.64 vpr 62.77 MiB 0.03 6928 -1 -1 1 0.03 -1 -1 30308 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 24.0 MiB 0.83 798 6670 1580 4567 523 62.8 MiB 0.09 0.00 2.99217 -104.93 -2.99217 2.99217 0.99 0.000908753 0.00084514 0.0380544 0.0354173 32 2188 30 6.89349e+06 225501 586450. 2029.24 3.42 0.286219 0.256876 25474 144626 -1 1722 23 1169 1938 151235 35034 2.70061 2.70061 -112.542 -2.70061 0 0 744469. 2576.02 0.23 0.10 0.21 -1 -1 0.23 0.0400015 0.0359681 104 4 85 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 8.69 vpr 63.51 MiB 0.03 7320 -1 -1 1 0.03 -1 -1 30432 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 418 338 1 273 92 17 17 289 -1 unnamed_device 24.5 MiB 2.31 1436 17687 5331 10067 2289 63.5 MiB 0.25 0.00 5.59526 -182.613 -5.59526 5.59526 0.99 0.00129734 0.00120558 0.113646 0.105513 34 3497 28 6.89349e+06 394628 618332. 2139.56 2.71 0.402231 0.364638 25762 151098 -1 2916 24 2502 3263 277011 59151 5.13454 5.13454 -182.206 -5.13454 0 0 787024. 2723.27 0.24 0.15 0.22 -1 -1 0.24 0.059455 0.0537447 179 92 28 28 92 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 8.92 vpr 63.45 MiB 0.04 7148 -1 -1 1 0.03 -1 -1 30244 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 376 318 1 259 88 17 17 289 -1 unnamed_device 24.5 MiB 2.11 1228 17248 5165 9655 2428 63.4 MiB 0.23 0.00 4.94918 -162.793 -4.94918 4.94918 0.99 0.00120307 0.0011201 0.10951 0.101917 36 3177 34 6.89349e+06 338252 648988. 2245.63 3.14 0.381072 0.345483 26050 158493 -1 2630 21 2532 3172 247012 54427 4.04924 4.04924 -157.808 -4.04924 0 0 828058. 2865.25 0.26 0.13 0.22 -1 -1 0.26 0.0474457 0.0428653 161 96 0 0 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 7.86 vpr 63.59 MiB 0.03 7348 -1 -1 1 0.03 -1 -1 30396 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65112 32 32 401 316 1 253 89 17 17 289 -1 unnamed_device 24.6 MiB 1.92 1223 15335 4617 8313 2405 63.6 MiB 0.21 0.00 3.74935 -130.887 -3.74935 3.74935 0.99 0.00126697 0.00117748 0.100978 0.0938818 34 3058 23 6.89349e+06 352346 618332. 2139.56 2.34 0.372257 0.337879 25762 151098 -1 2544 18 1656 2222 173820 38048 3.2337 3.2337 -129.976 -3.2337 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0462134 0.0418871 170 65 61 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 9.30 vpr 63.95 MiB 0.04 7428 -1 -1 1 0.03 -1 -1 30828 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65480 32 32 500 382 1 323 97 17 17 289 -1 unnamed_device 24.8 MiB 1.89 1555 21409 7403 11274 2732 63.9 MiB 0.33 0.00 5.15944 -175.489 -5.15944 5.15944 0.99 0.00153997 0.0014323 0.153017 0.142345 36 3759 40 6.89349e+06 465097 648988. 2245.63 3.60 0.531079 0.482909 26050 158493 -1 3154 22 2807 3273 268319 57600 4.90035 4.90035 -176.904 -4.90035 0 0 828058. 2865.25 0.25 0.16 0.23 -1 -1 0.25 0.0678204 0.061395 224 96 64 32 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 6.10 vpr 62.93 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30080 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 30 32 246 229 1 160 78 17 17 289 -1 unnamed_device 24.1 MiB 1.14 857 12860 4315 6531 2014 62.9 MiB 0.12 0.00 3.11018 -96.6789 -3.11018 3.11018 0.99 0.000806675 0.000747282 0.0641298 0.059417 34 1818 23 6.89349e+06 225501 618332. 2139.56 1.63 0.232364 0.208429 25762 151098 -1 1591 20 764 791 67420 15210 2.32206 2.32206 -92.3009 -2.32206 0 0 787024. 2723.27 0.24 0.06 0.22 -1 -1 0.24 0.03179 0.0284641 93 56 0 0 53 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 6.74 vpr 63.37 MiB 0.03 7092 -1 -1 1 0.03 -1 -1 30388 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 30 32 296 244 1 181 83 17 17 289 -1 unnamed_device 24.4 MiB 1.43 936 13763 4424 7248 2091 63.4 MiB 0.16 0.00 4.23979 -138.455 -4.23979 4.23979 0.98 0.000984164 0.000914646 0.0775691 0.0721167 34 2117 18 6.89349e+06 295971 618332. 2139.56 1.83 0.276055 0.249656 25762 151098 -1 1759 20 1558 2320 162158 36344 3.31965 3.31965 -127.139 -3.31965 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0387513 0.0349499 124 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 8.38 vpr 63.14 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30144 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 314 256 1 199 82 17 17 289 -1 unnamed_device 24.2 MiB 2.21 1009 8448 2021 6048 379 63.1 MiB 0.13 0.00 4.33609 -148.866 -4.33609 4.33609 0.99 0.00104443 0.000970073 0.0519871 0.0482963 36 2763 22 6.89349e+06 253689 648988. 2245.63 2.59 0.270404 0.243637 26050 158493 -1 2330 21 1713 2925 207000 45724 3.608 3.608 -146.041 -3.608 0 0 828058. 2865.25 0.25 0.12 0.23 -1 -1 0.25 0.0424235 0.0382097 129 34 64 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 6.37 vpr 62.72 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30460 -1 -1 24 25 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 25 32 251 214 1 162 81 17 17 289 -1 unnamed_device 23.9 MiB 1.23 638 13031 3446 7568 2017 62.7 MiB 0.14 0.00 3.8441 -98.0419 -3.8441 3.8441 0.99 0.000844109 0.000785253 0.064442 0.0599038 34 1771 19 6.89349e+06 338252 618332. 2139.56 1.73 0.235855 0.212237 25762 151098 -1 1491 22 1039 1406 94582 22863 3.22801 3.22801 -99.5094 -3.22801 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.0357122 0.0319998 107 34 50 25 25 25 -fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 8.73 vpr 63.95 MiB 0.03 7324 -1 -1 1 0.04 -1 -1 30544 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65484 32 32 432 346 1 288 92 17 17 289 -1 unnamed_device 25.1 MiB 2.55 1455 17273 5876 8561 2836 63.9 MiB 0.25 0.00 4.52275 -153.489 -4.52275 4.52275 1.00 0.00132768 0.00123357 0.114234 0.106157 36 3884 27 6.89349e+06 394628 648988. 2245.63 2.45 0.340699 0.309515 26050 158493 -1 3186 21 2679 3869 307077 65612 3.82666 3.82666 -150.714 -3.82666 0 0 828058. 2865.25 0.25 0.15 0.23 -1 -1 0.25 0.0552286 0.0499979 190 94 32 32 94 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 8.44 vpr 63.54 MiB 0.04 7404 -1 -1 1 0.03 -1 -1 30340 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65068 31 32 421 339 1 274 90 17 17 289 -1 unnamed_device 24.5 MiB 2.37 1331 13758 3863 8023 1872 63.5 MiB 0.20 0.00 4.9912 -162.029 -4.9912 4.9912 0.99 0.00126616 0.00117331 0.0913566 0.0848934 34 3369 24 6.89349e+06 380534 618332. 2139.56 2.44 0.370303 0.335258 25762 151098 -1 2745 20 2169 3067 228082 52797 4.30709 4.30709 -159.639 -4.30709 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0512687 0.0464537 183 94 29 29 93 31 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 5.22 vpr 63.83 MiB 0.03 7104 -1 -1 14 0.34 -1 -1 36588 -1 -1 26 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 280 312 1 203 90 17 17 289 -1 unnamed_device 25.0 MiB 0.26 1396 5718 1043 4241 434 63.8 MiB 0.05 0.00 8.33526 -166.471 -8.33526 8.33526 0.85 0.000298132 0.000238364 0.0117609 0.00981176 -1 -1 -1 -1 28 3716 42 6.55708e+06 313430 500653. 1732.36 1.65 0.0689479 0.0577638 21310 115450 -1 3004 21 1526 4795 248684 58174 7.4395 7.4395 -161.842 -7.4395 0 0 612192. 2118.31 0.23 0.07 0.10 -1 -1 0.23 0.0202595 0.017917 186 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 6.05 vpr 64.09 MiB 0.02 6952 -1 -1 14 0.37 -1 -1 36552 -1 -1 30 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65624 30 32 277 309 1 214 92 17 17 289 -1 unnamed_device 25.3 MiB 0.48 1292 9821 2314 6313 1194 64.1 MiB 0.07 0.00 7.97266 -161.847 -7.97266 7.97266 0.86 0.000279394 0.000221618 0.0166927 0.0134901 -1 -1 -1 -1 28 4133 49 6.55708e+06 361650 500653. 1732.36 1.94 0.0776588 0.0645059 21310 115450 -1 3143 20 1590 4541 279442 69927 7.1579 7.1579 -156.969 -7.1579 0 0 612192. 2118.31 0.54 0.07 0.11 -1 -1 0.54 0.0181305 0.0160094 189 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 7.42 vpr 64.04 MiB 0.02 6880 -1 -1 11 0.26 -1 -1 36548 -1 -1 25 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65572 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 25.3 MiB 0.40 1387 5633 1032 4013 588 64.0 MiB 0.05 0.00 6.70549 -144.379 -6.70549 6.70549 0.83 0.000279145 0.000222543 0.0107434 0.00891549 -1 -1 -1 -1 38 3367 24 6.55708e+06 301375 638502. 2209.35 3.88 0.124863 0.104095 23326 155178 -1 2938 15 1203 3923 204412 45867 5.90278 5.90278 -137.681 -5.90278 0 0 851065. 2944.86 0.30 0.06 0.12 -1 -1 0.30 0.0163744 0.0147263 180 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 5.60 vpr 64.01 MiB 0.02 7068 -1 -1 12 0.42 -1 -1 36704 -1 -1 29 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65548 29 32 269 301 1 203 90 17 17 289 -1 unnamed_device 25.2 MiB 0.44 1235 6522 1332 4656 534 64.0 MiB 0.05 0.00 7.67294 -144.969 -7.67294 7.67294 0.83 0.000278308 0.000221884 0.0118876 0.00978677 -1 -1 -1 -1 32 3833 44 6.55708e+06 349595 554710. 1919.41 1.83 0.0860144 0.0720033 22174 131602 -1 3094 42 2072 6957 632362 219498 7.25558 7.25558 -144.225 -7.25558 0 0 701300. 2426.64 0.26 0.15 0.11 -1 -1 0.26 0.0286853 0.0246033 185 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 5.92 vpr 63.16 MiB 0.02 6896 -1 -1 13 0.40 -1 -1 36720 -1 -1 31 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 317 349 1 246 95 17 17 289 -1 unnamed_device 24.4 MiB 0.45 1620 8303 2009 5589 705 63.2 MiB 0.07 0.00 7.84931 -165.878 -7.84931 7.84931 0.93 0.000321232 0.00025629 0.0164354 0.0135238 -1 -1 -1 -1 30 4081 45 6.55708e+06 373705 526063. 1820.29 1.84 0.0971766 0.0824286 21886 126133 -1 3417 31 2192 6994 649153 243609 6.9587 6.9587 -160.39 -6.9587 0 0 666494. 2306.21 0.26 0.16 0.11 -1 -1 0.26 0.028572 0.0249935 224 223 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 10.17 vpr 64.12 MiB 0.04 7008 -1 -1 12 0.34 -1 -1 36400 -1 -1 31 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65660 32 32 299 331 1 224 95 17 17 289 -1 unnamed_device 25.2 MiB 0.75 1415 13055 3582 8009 1464 64.1 MiB 0.09 0.00 7.00015 -146.985 -7.00015 7.00015 0.89 0.00031654 0.000247097 0.0221928 0.0178846 -1 -1 -1 -1 28 4777 41 6.55708e+06 373705 500653. 1732.36 5.70 0.160482 0.132999 21310 115450 -1 3425 17 1556 4990 279641 64342 6.22218 6.22218 -144.978 -6.22218 0 0 612192. 2118.31 0.34 0.07 0.24 -1 -1 0.34 0.0173854 0.0155007 206 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 6.18 vpr 63.48 MiB 0.02 6852 -1 -1 12 0.22 -1 -1 36320 -1 -1 27 27 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65000 27 32 210 242 1 165 86 17 17 289 -1 unnamed_device 24.7 MiB 0.44 974 6890 1587 4820 483 63.5 MiB 0.04 0.00 6.94984 -127.162 -6.94984 6.94984 0.84 0.000215012 0.000171308 0.0102381 0.00843267 -1 -1 -1 -1 28 2654 18 6.55708e+06 325485 500653. 1732.36 2.67 0.0775907 0.0646235 21310 115450 -1 2427 19 1010 2929 164353 38329 6.09998 6.09998 -124.429 -6.09998 0 0 612192. 2118.31 0.23 0.05 0.09 -1 -1 0.23 0.0129959 0.0114885 137 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 5.01 vpr 63.83 MiB 0.02 7092 -1 -1 11 0.22 -1 -1 36588 -1 -1 28 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65360 31 32 264 296 1 200 91 17 17 289 -1 unnamed_device 24.9 MiB 0.29 1315 7231 1531 4891 809 63.8 MiB 0.05 0.00 6.53897 -136.036 -6.53897 6.53897 0.84 0.000258039 0.000203995 0.0120496 0.00982378 -1 -1 -1 -1 30 3221 27 6.55708e+06 337540 526063. 1820.29 1.56 0.0697046 0.059383 21886 126133 -1 2714 16 1147 3840 187272 43051 5.50098 5.50098 -128.943 -5.50098 0 0 666494. 2306.21 0.28 0.06 0.11 -1 -1 0.28 0.0171813 0.0154819 175 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 8.07 vpr 63.88 MiB 0.02 6784 -1 -1 12 0.21 -1 -1 35732 -1 -1 25 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65412 31 32 234 266 1 190 88 17 17 289 -1 unnamed_device 24.9 MiB 0.40 1115 11203 2815 6442 1946 63.9 MiB 0.08 0.00 6.90263 -147 -6.90263 6.90263 0.90 0.000241734 0.000192658 0.0179692 0.0147247 -1 -1 -1 -1 30 2958 44 6.55708e+06 301375 526063. 1820.29 4.07 0.117929 0.098719 21886 126133 -1 2303 12 926 2399 117672 28295 6.17898 6.17898 -142.174 -6.17898 0 0 666494. 2306.21 0.55 0.04 0.13 -1 -1 0.55 0.0117269 0.010674 145 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 5.40 vpr 63.82 MiB 0.02 6908 -1 -1 13 0.23 -1 -1 36480 -1 -1 25 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65356 32 32 253 285 1 194 89 17 17 289 -1 unnamed_device 25.0 MiB 0.56 1192 15137 4443 8200 2494 63.8 MiB 0.09 0.00 7.39554 -161.911 -7.39554 7.39554 0.89 0.000253042 0.000202028 0.0226291 0.0183277 -1 -1 -1 -1 30 3232 46 6.55708e+06 301375 526063. 1820.29 1.46 0.0802749 0.0670454 21886 126133 -1 2512 16 1069 2908 152436 34980 6.42904 6.42904 -155.481 -6.42904 0 0 666494. 2306.21 0.28 0.06 0.11 -1 -1 0.28 0.0189785 0.017127 162 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 6.55 vpr 63.38 MiB 0.02 6884 -1 -1 12 0.20 -1 -1 36556 -1 -1 22 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64900 30 32 217 249 1 169 84 17 17 289 -1 unnamed_device 24.6 MiB 0.45 1009 4842 919 3670 253 63.4 MiB 0.04 0.00 7.00015 -143.218 -7.00015 7.00015 0.87 0.000220011 0.000175717 0.00853566 0.00713455 -1 -1 -1 -1 26 2871 22 6.55708e+06 265210 477104. 1650.88 3.11 0.0900748 0.0760941 21022 109990 -1 2368 17 940 2361 135836 31778 6.06078 6.06078 -139.79 -6.06078 0 0 585099. 2024.56 0.25 0.04 0.09 -1 -1 0.25 0.0130152 0.0115551 132 129 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 7.24 vpr 63.75 MiB 0.02 6944 -1 -1 12 0.17 -1 -1 36084 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65280 32 32 227 259 1 176 85 17 17 289 -1 unnamed_device 24.9 MiB 0.24 1020 12547 3823 6487 2237 63.8 MiB 0.08 0.00 6.61272 -143.64 -6.61272 6.61272 0.84 0.000217803 0.000172726 0.0177674 0.0143939 -1 -1 -1 -1 30 2715 21 6.55708e+06 253155 526063. 1820.29 3.85 0.0933524 0.0779977 21886 126133 -1 2267 16 994 2621 133216 32040 5.61918 5.61918 -136.187 -5.61918 0 0 666494. 2306.21 0.26 0.04 0.11 -1 -1 0.26 0.0127213 0.0114209 138 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 7.26 vpr 64.27 MiB 0.02 7056 -1 -1 13 0.33 -1 -1 37072 -1 -1 31 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65816 32 32 306 338 1 236 95 17 17 289 -1 unnamed_device 25.3 MiB 0.48 1509 7439 1652 5093 694 64.3 MiB 0.07 0.00 8.16384 -167.563 -8.16384 8.16384 0.88 0.000320998 0.000255221 0.0154697 0.0127613 -1 -1 -1 -1 32 3500 18 6.55708e+06 373705 554710. 1919.41 3.28 0.142958 0.11998 22174 131602 -1 3114 18 1384 4275 227959 52912 6.8823 6.8823 -154.863 -6.8823 0 0 701300. 2426.64 0.29 0.08 0.12 -1 -1 0.29 0.0228379 0.0205497 212 212 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 12.34 vpr 64.51 MiB 0.02 7032 -1 -1 14 0.41 -1 -1 37004 -1 -1 29 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66060 32 32 302 334 1 235 93 17 17 289 -1 unnamed_device 25.5 MiB 0.52 1515 9123 2183 5795 1145 64.5 MiB 0.07 0.00 8.8902 -181.689 -8.8902 8.8902 0.83 0.000328187 0.000264818 0.017648 0.0144547 -1 -1 -1 -1 28 4715 49 6.55708e+06 349595 500653. 1732.36 8.05 0.166383 0.141514 21310 115450 -1 3674 21 1738 5110 371676 100064 7.76655 7.76655 -175.066 -7.76655 0 0 612192. 2118.31 0.37 0.09 0.25 -1 -1 0.37 0.0207123 0.0183342 208 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 6.20 vpr 63.66 MiB 0.02 6760 -1 -1 11 0.20 -1 -1 36296 -1 -1 29 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65188 29 32 238 270 1 186 90 17 17 289 -1 unnamed_device 24.7 MiB 0.26 1080 7125 1641 4792 692 63.7 MiB 0.05 0.00 6.46749 -127.989 -6.46749 6.46749 0.83 0.000232089 0.000184636 0.01058 0.00864773 -1 -1 -1 -1 26 3230 26 6.55708e+06 349595 477104. 1650.88 2.98 0.0898817 0.0746038 21022 109990 -1 2623 19 1363 3671 204276 48177 5.84732 5.84732 -127.825 -5.84732 0 0 585099. 2024.56 0.25 0.06 0.09 -1 -1 0.25 0.0157088 0.0139266 160 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 8.30 vpr 64.15 MiB 0.02 7040 -1 -1 12 0.34 -1 -1 36340 -1 -1 34 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65692 32 32 306 338 1 235 98 17 17 289 -1 unnamed_device 25.2 MiB 0.68 1549 8648 1917 6189 542 64.2 MiB 0.07 0.00 7.81486 -160.86 -7.81486 7.81486 0.85 0.000321104 0.000257767 0.0164946 0.0134653 -1 -1 -1 -1 36 3643 18 6.55708e+06 409870 612192. 2118.31 4.13 0.146703 0.123123 22750 144809 -1 3437 16 1407 4509 270093 60818 6.7229 6.7229 -152.385 -6.7229 0 0 782063. 2706.10 0.31 0.08 0.13 -1 -1 0.31 0.0208398 0.0187612 213 212 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 5.02 vpr 64.30 MiB 0.02 7024 -1 -1 13 0.33 -1 -1 36356 -1 -1 32 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65848 32 32 311 343 1 239 96 17 17 289 -1 unnamed_device 25.2 MiB 0.34 1408 11265 2987 6987 1291 64.3 MiB 0.08 0.00 8.0479 -166.811 -8.0479 8.0479 0.84 0.000353814 0.000286696 0.0199116 0.0161441 -1 -1 -1 -1 30 3460 21 6.55708e+06 385760 526063. 1820.29 1.33 0.0874722 0.0744808 21886 126133 -1 2946 16 1333 3878 178193 42730 6.9567 6.9567 -161.012 -6.9567 0 0 666494. 2306.21 0.30 0.06 0.12 -1 -1 0.30 0.0208915 0.0187327 217 217 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 7.19 vpr 63.59 MiB 0.02 6824 -1 -1 12 0.19 -1 -1 36196 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65120 32 32 230 262 1 182 86 17 17 289 -1 unnamed_device 24.7 MiB 0.63 1098 5945 1145 4424 376 63.6 MiB 0.05 0.00 7.5252 -165.404 -7.5252 7.5252 0.85 0.00023413 0.000186931 0.0103964 0.00865345 -1 -1 -1 -1 32 2696 15 6.55708e+06 265210 554710. 1919.41 3.32 0.123592 0.104949 22174 131602 -1 2336 17 900 2722 152644 35717 6.5191 6.5191 -157.512 -6.5191 0 0 701300. 2426.64 0.30 0.05 0.12 -1 -1 0.30 0.0159043 0.0143176 139 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 5.94 vpr 62.78 MiB 0.02 6720 -1 -1 10 0.13 -1 -1 36280 -1 -1 20 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64288 30 32 176 208 1 139 82 17 17 289 -1 unnamed_device 24.3 MiB 0.16 786 5244 1130 3909 205 62.8 MiB 0.03 0.00 5.1986 -117.307 -5.1986 5.1986 0.83 0.000169945 0.000135114 0.00673901 0.00550524 -1 -1 -1 -1 30 2100 27 6.55708e+06 241100 526063. 1820.29 2.80 0.0679812 0.0566228 21886 126133 -1 1798 30 765 1984 258602 123205 4.68346 4.68346 -114.992 -4.68346 0 0 666494. 2306.21 0.27 0.08 0.11 -1 -1 0.27 0.0145373 0.0126585 96 88 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 4.76 vpr 63.65 MiB 0.02 6872 -1 -1 13 0.20 -1 -1 36140 -1 -1 24 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65180 31 32 226 258 1 176 87 17 17 289 -1 unnamed_device 24.8 MiB 0.38 1111 8919 2132 5826 961 63.7 MiB 0.06 0.00 7.4032 -157.231 -7.4032 7.4032 0.89 0.000236554 0.000184655 0.0138847 0.0113282 -1 -1 -1 -1 26 3170 27 6.55708e+06 289320 477104. 1650.88 1.30 0.0721349 0.061847 21022 109990 -1 2645 21 1259 3337 186701 43347 6.72852 6.72852 -159.007 -6.72852 0 0 585099. 2024.56 0.25 0.06 0.09 -1 -1 0.25 0.0172612 0.0152806 139 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 9.45 vpr 64.10 MiB 0.02 7000 -1 -1 13 0.35 -1 -1 36000 -1 -1 29 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65640 32 32 302 334 1 228 93 17 17 289 -1 unnamed_device 25.2 MiB 0.34 1380 8913 2232 5739 942 64.1 MiB 0.07 0.00 7.81686 -155.403 -7.81686 7.81686 0.83 0.000304739 0.000243023 0.0164648 0.0133462 -1 -1 -1 -1 32 3926 24 6.55708e+06 349595 554710. 1919.41 5.83 0.150884 0.124841 22174 131602 -1 3252 17 1720 5277 280893 66119 6.79164 6.79164 -153.593 -6.79164 0 0 701300. 2426.64 0.28 0.07 0.11 -1 -1 0.28 0.0185564 0.0165424 208 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 6.85 vpr 64.02 MiB 0.02 7180 -1 -1 13 0.38 -1 -1 36476 -1 -1 34 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65556 32 32 299 331 1 237 98 17 17 289 -1 unnamed_device 25.1 MiB 0.55 1549 7748 1691 5703 354 64.0 MiB 0.06 0.00 7.79063 -163.354 -7.79063 7.79063 0.85 0.000306707 0.000245281 0.0144244 0.0119321 -1 -1 -1 -1 38 4048 27 6.55708e+06 409870 638502. 2209.35 2.71 0.15112 0.131842 23326 155178 -1 3294 20 1454 4762 246095 54904 6.7595 6.7595 -153.467 -6.7595 0 0 851065. 2944.86 0.36 0.08 0.14 -1 -1 0.36 0.0238595 0.0212901 207 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 6.44 vpr 62.71 MiB 0.02 6772 -1 -1 9 0.12 -1 -1 35856 -1 -1 21 26 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64212 26 32 149 181 1 119 79 17 17 289 -1 unnamed_device 24.1 MiB 0.32 600 8867 2203 6137 527 62.7 MiB 0.04 0.00 4.59771 -89.3905 -4.59771 4.59771 0.90 0.000146678 0.000116155 0.00943273 0.00765103 -1 -1 -1 -1 26 2029 20 6.55708e+06 253155 477104. 1650.88 3.06 0.0609736 0.0510042 21022 109990 -1 1554 14 580 1530 99688 23493 4.09974 4.09974 -87.7108 -4.09974 0 0 585099. 2024.56 0.24 0.03 0.10 -1 -1 0.24 0.00847619 0.00763533 83 73 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 6.95 vpr 64.01 MiB 0.02 6992 -1 -1 13 0.38 -1 -1 36404 -1 -1 30 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65548 32 32 304 336 1 228 94 17 17 289 -1 unnamed_device 25.1 MiB 0.26 1450 8188 1784 5725 679 64.0 MiB 0.06 0.00 7.90507 -155.859 -7.90507 7.90507 0.84 0.0002988 0.000237939 0.0145972 0.0119096 -1 -1 -1 -1 28 4530 30 6.55708e+06 361650 500653. 1732.36 3.33 0.118218 0.0985298 21310 115450 -1 3439 20 1874 5478 404717 108505 7.0025 7.0025 -156.716 -7.0025 0 0 612192. 2118.31 0.25 0.10 0.10 -1 -1 0.25 0.0212926 0.0187608 211 210 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 4.22 vpr 62.73 MiB 0.02 6724 -1 -1 8 0.11 -1 -1 35320 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 155 187 1 113 81 17 17 289 -1 unnamed_device 24.2 MiB 0.20 444 10231 2672 5394 2165 62.7 MiB 0.05 0.00 4.58443 -87.4649 -4.58443 4.58443 0.90 0.000153361 0.00012076 0.0107874 0.00873049 -1 -1 -1 -1 30 1560 21 6.55708e+06 204935 526063. 1820.29 0.96 0.0391908 0.0330254 21886 126133 -1 1093 15 572 1185 61123 18074 4.08646 4.08646 -90.6103 -4.08646 0 0 666494. 2306.21 0.28 0.03 0.11 -1 -1 0.28 0.00826936 0.00738948 77 61 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 8.54 vpr 63.69 MiB 0.02 7080 -1 -1 15 0.30 -1 -1 36420 -1 -1 25 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65216 32 32 253 285 1 192 89 17 17 289 -1 unnamed_device 24.8 MiB 0.37 1191 12959 3762 7153 2044 63.7 MiB 0.08 0.00 8.851 -170.456 -8.851 8.851 0.90 0.000277407 0.000224525 0.0209064 0.0170095 -1 -1 -1 -1 28 3646 45 6.55708e+06 301375 500653. 1732.36 4.74 0.13443 0.113653 21310 115450 -1 2796 17 1151 3369 226875 57924 7.76915 7.76915 -165.443 -7.76915 0 0 612192. 2118.31 0.25 0.07 0.10 -1 -1 0.25 0.0185916 0.0167344 160 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 6.16 vpr 64.24 MiB 0.02 6976 -1 -1 12 0.30 -1 -1 36008 -1 -1 31 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65780 32 32 309 341 1 232 95 17 17 289 -1 unnamed_device 25.3 MiB 0.35 1527 8303 1758 5555 990 64.2 MiB 0.06 0.00 7.32786 -152.243 -7.32786 7.32786 0.86 0.000317377 0.000243515 0.0151555 0.0123458 -1 -1 -1 -1 30 4202 32 6.55708e+06 373705 526063. 1820.29 2.54 0.0781515 0.0656173 21886 126133 -1 3420 18 1515 4836 237951 55236 6.58078 6.58078 -146.679 -6.58078 0 0 666494. 2306.21 0.28 0.07 0.11 -1 -1 0.28 0.0216811 0.0194426 218 215 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 5.87 vpr 64.21 MiB 0.02 7116 -1 -1 13 0.34 -1 -1 36512 -1 -1 28 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65756 32 32 289 321 1 218 92 17 17 289 -1 unnamed_device 25.5 MiB 0.46 1338 13547 3937 7498 2112 64.2 MiB 0.09 0.00 7.41221 -156.076 -7.41221 7.41221 0.88 0.000290189 0.00023062 0.0227689 0.0184436 -1 -1 -1 -1 32 3768 28 6.55708e+06 337540 554710. 1919.41 1.85 0.101201 0.0851655 22174 131602 -1 3023 18 1401 4386 250232 59310 6.66178 6.66178 -151.167 -6.66178 0 0 701300. 2426.64 0.30 0.07 0.12 -1 -1 0.30 0.020194 0.018121 196 195 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 4.64 vpr 63.71 MiB 0.02 6732 -1 -1 12 0.20 -1 -1 36100 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 239 271 1 188 86 17 17 289 -1 unnamed_device 24.7 MiB 0.34 1079 6134 1296 4544 294 63.7 MiB 0.05 0.00 6.41157 -144.86 -6.41157 6.41157 0.89 0.000236749 0.000188755 0.0107913 0.00888551 -1 -1 -1 -1 32 2665 17 6.55708e+06 265210 554710. 1919.41 1.03 0.0542726 0.0461362 22174 131602 -1 2324 15 991 2591 136853 32870 5.80812 5.80812 -138.032 -5.80812 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.0155571 0.0140333 146 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 5.12 vpr 63.43 MiB 0.02 6936 -1 -1 11 0.19 -1 -1 36364 -1 -1 23 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64952 30 32 213 245 1 162 85 17 17 289 -1 unnamed_device 24.7 MiB 0.25 981 10687 3354 5227 2106 63.4 MiB 0.06 0.00 6.1536 -130.188 -6.1536 6.1536 0.90 0.000207607 0.000164052 0.0146176 0.0118428 -1 -1 -1 -1 26 2992 41 6.55708e+06 277265 477104. 1650.88 1.62 0.0729502 0.0621199 21022 109990 -1 2356 15 1010 2665 151914 35962 5.41032 5.41032 -129.691 -5.41032 0 0 585099. 2024.56 0.25 0.05 0.10 -1 -1 0.25 0.012852 0.0115642 128 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 7.72 vpr 63.59 MiB 0.02 6868 -1 -1 11 0.19 -1 -1 36828 -1 -1 27 28 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65116 28 32 221 253 1 183 87 17 17 289 -1 unnamed_device 24.6 MiB 0.29 1116 6615 1427 4569 619 63.6 MiB 0.05 0.00 6.46748 -128.458 -6.46748 6.46748 0.87 0.000241893 0.000188506 0.0117738 0.00951808 -1 -1 -1 -1 28 3129 44 6.55708e+06 325485 500653. 1732.36 4.42 0.110201 0.0923487 21310 115450 -1 2646 17 1166 3368 209362 47484 5.747 5.747 -129.033 -5.747 0 0 612192. 2118.31 0.25 0.06 0.10 -1 -1 0.25 0.0146873 0.0130868 142 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 4.92 vpr 63.98 MiB 0.02 6884 -1 -1 12 0.23 -1 -1 35948 -1 -1 28 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65512 32 32 273 305 1 210 92 17 17 289 -1 unnamed_device 25.0 MiB 0.30 1337 7958 1839 5430 689 64.0 MiB 0.06 0.00 7.10257 -160.257 -7.10257 7.10257 0.87 0.000264333 0.000210544 0.0137316 0.0113404 -1 -1 -1 -1 28 3756 26 6.55708e+06 337540 500653. 1732.36 1.44 0.0733631 0.0626457 21310 115450 -1 2935 17 1388 3789 200344 47661 6.36532 6.36532 -157.046 -6.36532 0 0 612192. 2118.31 0.25 0.06 0.10 -1 -1 0.25 0.0182772 0.0163391 180 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 7.47 vpr 63.60 MiB 0.02 6884 -1 -1 11 0.21 -1 -1 36400 -1 -1 23 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65124 31 32 238 270 1 182 86 17 17 289 -1 unnamed_device 24.6 MiB 0.27 1155 7646 1807 5307 532 63.6 MiB 0.05 0.00 6.58994 -140.092 -6.58994 6.58994 0.87 0.00024533 0.000194719 0.0129419 0.0106292 -1 -1 -1 -1 26 3481 48 6.55708e+06 277265 477104. 1650.88 4.00 0.132464 0.111975 21022 109990 -1 2698 18 1290 3488 195075 44955 5.90478 5.90478 -141.636 -5.90478 0 0 585099. 2024.56 0.27 0.06 0.10 -1 -1 0.27 0.0162971 0.0145023 147 147 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 6.03 vpr 63.44 MiB 0.02 6780 -1 -1 10 0.19 -1 -1 36464 -1 -1 24 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64960 29 32 221 253 1 165 85 17 17 289 -1 unnamed_device 24.6 MiB 0.30 1047 9943 2574 5558 1811 63.4 MiB 0.06 0.00 6.34628 -126.58 -6.34628 6.34628 0.84 0.000220596 0.00017472 0.01447 0.0117987 -1 -1 -1 -1 26 2891 25 6.55708e+06 289320 477104. 1650.88 2.63 0.0836668 0.0699952 21022 109990 -1 2322 15 879 2493 135559 31312 5.34298 5.34298 -120.054 -5.34298 0 0 585099. 2024.56 0.26 0.04 0.10 -1 -1 0.26 0.0138954 0.012492 138 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 6.11 vpr 64.36 MiB 0.02 7264 -1 -1 13 0.42 -1 -1 36500 -1 -1 33 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65904 32 32 333 365 1 249 97 17 17 289 -1 unnamed_device 25.5 MiB 0.44 1621 5869 1104 4212 553 64.4 MiB 0.05 0.00 7.46683 -155.207 -7.46683 7.46683 0.82 0.000377 0.000300893 0.0126331 0.0104079 -1 -1 -1 -1 30 3995 44 6.55708e+06 397815 526063. 1820.29 2.27 0.102839 0.0878724 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.07 0.11 -1 -1 0.28 0.023734 0.0213608 239 239 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 5.99 vpr 64.04 MiB 0.02 6912 -1 -1 13 0.40 -1 -1 36528 -1 -1 29 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65580 32 32 297 329 1 228 93 17 17 289 -1 unnamed_device 25.1 MiB 0.49 1398 11643 3043 6787 1813 64.0 MiB 0.09 0.00 7.88716 -168.222 -7.88716 7.88716 0.85 0.000341925 0.000277287 0.0227931 0.0186899 -1 -1 -1 -1 34 3924 33 6.55708e+06 349595 585099. 2024.56 1.93 0.106959 0.0902396 22462 138074 -1 3286 18 1422 4452 250862 57965 7.1991 7.1991 -165.05 -7.1991 0 0 742403. 2568.87 0.32 0.09 0.13 -1 -1 0.32 0.0259439 0.0232999 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 6.26 vpr 63.64 MiB 0.02 6824 -1 -1 12 0.18 -1 -1 36528 -1 -1 25 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65172 31 32 234 266 1 181 88 17 17 289 -1 unnamed_device 24.7 MiB 0.31 1164 9058 2432 5872 754 63.6 MiB 0.06 0.00 6.64691 -142.365 -6.64691 6.64691 0.84 0.000229528 0.000182515 0.0132732 0.0108213 -1 -1 -1 -1 30 2572 26 6.55708e+06 301375 526063. 1820.29 2.75 0.101142 0.0854228 21886 126133 -1 2305 14 925 2565 123751 29500 5.82238 5.82238 -135.774 -5.82238 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0138323 0.012428 150 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 5.43 vpr 64.17 MiB 0.02 7108 -1 -1 12 0.33 -1 -1 36564 -1 -1 34 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65708 31 32 310 342 1 234 97 17 17 289 -1 unnamed_device 25.2 MiB 0.29 1508 8755 2020 5739 996 64.2 MiB 0.06 0.00 7.97527 -163.603 -7.97527 7.97527 0.84 0.000316316 0.000252945 0.0154104 0.0126125 -1 -1 -1 -1 36 3668 26 6.55708e+06 409870 612192. 2118.31 1.78 0.104767 0.0877051 22750 144809 -1 3060 15 1271 3797 208693 48053 7.1573 7.1573 -156.091 -7.1573 0 0 782063. 2706.10 0.30 0.07 0.13 -1 -1 0.30 0.0217532 0.0197708 219 219 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 5.31 vpr 64.09 MiB 0.02 7140 -1 -1 14 0.43 -1 -1 36864 -1 -1 28 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65632 31 32 284 316 1 221 91 17 17 289 -1 unnamed_device 25.2 MiB 0.31 1373 7639 1733 4830 1076 64.1 MiB 0.06 0.00 8.2489 -159.291 -8.2489 8.2489 0.84 0.000293887 0.000233058 0.0146007 0.0120072 -1 -1 -1 -1 30 3820 47 6.55708e+06 337540 526063. 1820.29 1.58 0.0962282 0.0823053 21886 126133 -1 3005 22 1513 4585 215360 51734 7.16956 7.16956 -152.957 -7.16956 0 0 666494. 2306.21 0.26 0.08 0.11 -1 -1 0.26 0.0233495 0.0207571 194 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 5.42 vpr 64.03 MiB 0.02 7076 -1 -1 13 0.34 -1 -1 36896 -1 -1 28 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65568 31 32 271 303 1 212 91 17 17 289 -1 unnamed_device 25.3 MiB 0.31 1326 8455 1999 5637 819 64.0 MiB 0.06 0.00 7.63835 -158.099 -7.63835 7.63835 0.88 0.000282377 0.000224794 0.0152769 0.0125028 -1 -1 -1 -1 30 3710 50 6.55708e+06 337540 526063. 1820.29 1.65 0.0857809 0.0720273 21886 126133 -1 3042 20 1429 4011 203673 47955 6.85838 6.85838 -152.522 -6.85838 0 0 666494. 2306.21 0.29 0.07 0.11 -1 -1 0.29 0.0216299 0.0194296 181 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 19.58 vpr 64.06 MiB 0.02 7156 -1 -1 12 0.30 -1 -1 36596 -1 -1 30 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65600 31 32 280 312 1 211 93 17 17 289 -1 unnamed_device 25.3 MiB 0.74 1314 13533 3823 7424 2286 64.1 MiB 0.10 0.00 6.9636 -142.062 -6.9636 6.9636 0.84 0.000287125 0.000228968 0.0234251 0.0187414 -1 -1 -1 -1 30 4018 38 6.55708e+06 361650 526063. 1820.29 15.40 0.180766 0.150963 21886 126133 -1 3049 60 1473 5083 1019521 615173 6.19264 6.19264 -140.474 -6.19264 0 0 666494. 2306.21 0.26 0.29 0.10 -1 -1 0.26 0.0384356 0.0329998 189 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 5.22 vpr 63.73 MiB 0.02 7032 -1 -1 12 0.25 -1 -1 36580 -1 -1 24 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65260 32 32 264 296 1 194 88 17 17 289 -1 unnamed_device 24.9 MiB 0.40 1236 8473 1937 5465 1071 63.7 MiB 0.06 0.00 7.289 -144.81 -7.289 7.289 0.86 0.000264093 0.000211151 0.0145925 0.0120082 -1 -1 -1 -1 30 3229 49 6.55708e+06 289320 526063. 1820.29 1.49 0.0833092 0.0707556 21886 126133 -1 2470 15 1049 3144 143516 35070 6.1631 6.1631 -138.066 -6.1631 0 0 666494. 2306.21 0.28 0.05 0.11 -1 -1 0.28 0.0162915 0.0147322 172 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 11.99 vpr 64.35 MiB 0.02 7120 -1 -1 14 0.56 -1 -1 36336 -1 -1 34 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65896 32 32 339 371 1 259 98 17 17 289 -1 unnamed_device 25.4 MiB 0.45 1704 8873 1951 5982 940 64.4 MiB 0.08 0.00 7.96525 -166.736 -7.96525 7.96525 0.90 0.000351921 0.00027584 0.0181014 0.014793 -1 -1 -1 -1 32 4710 46 6.55708e+06 409870 554710. 1919.41 7.70 0.197393 0.166388 22174 131602 -1 4042 18 1708 5757 346854 77424 7.1207 7.1207 -163.785 -7.1207 0 0 701300. 2426.64 0.30 0.10 0.12 -1 -1 0.30 0.026411 0.0238367 245 245 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 7.70 vpr 63.55 MiB 0.02 6768 -1 -1 11 0.24 -1 -1 36188 -1 -1 25 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65072 31 32 246 278 1 189 88 17 17 289 -1 unnamed_device 24.8 MiB 0.31 1159 11593 2682 6691 2220 63.5 MiB 0.08 0.00 6.46989 -136.304 -6.46989 6.46989 0.88 0.000251871 0.000195783 0.0179821 0.0145443 -1 -1 -1 -1 38 2889 26 6.55708e+06 301375 638502. 2209.35 3.94 0.120659 0.100291 23326 155178 -1 2335 17 1256 3590 169479 39667 5.74338 5.74338 -129.04 -5.74338 0 0 851065. 2944.86 0.34 0.06 0.14 -1 -1 0.34 0.018868 0.0169644 160 155 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 8.08 vpr 63.95 MiB 0.02 7092 -1 -1 13 0.34 -1 -1 36572 -1 -1 27 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65480 31 32 268 300 1 203 90 17 17 289 -1 unnamed_device 24.9 MiB 0.53 1211 7728 1695 5371 662 63.9 MiB 0.06 0.00 7.98407 -153.841 -7.98407 7.98407 0.87 0.000317229 0.000257434 0.0151142 0.0124923 -1 -1 -1 -1 30 3306 25 6.55708e+06 325485 526063. 1820.29 4.20 0.128636 0.10876 21886 126133 -1 2751 16 1216 3794 187833 43301 6.7601 6.7601 -146.538 -6.7601 0 0 666494. 2306.21 0.29 0.06 0.11 -1 -1 0.29 0.0190508 0.0170667 177 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 9.84 vpr 64.29 MiB 0.02 6904 -1 -1 12 0.35 -1 -1 36424 -1 -1 34 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65836 32 32 318 350 1 231 98 17 17 289 -1 unnamed_device 25.3 MiB 0.42 1486 8873 2152 6049 672 64.3 MiB 0.07 0.00 7.25512 -155.423 -7.25512 7.25512 0.88 0.000325307 0.000260585 0.0172325 0.0142938 -1 -1 -1 -1 30 4017 26 6.55708e+06 409870 526063. 1820.29 6.06 0.172495 0.14491 21886 126133 -1 3156 19 1369 4907 229400 52977 6.42844 6.42844 -149.899 -6.42844 0 0 666494. 2306.21 0.29 0.08 0.11 -1 -1 0.29 0.0241712 0.0215401 227 224 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 7.60 vpr 64.17 MiB 0.02 7044 -1 -1 13 0.31 -1 -1 36420 -1 -1 28 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65708 32 32 273 305 1 205 92 17 17 289 -1 unnamed_device 25.4 MiB 0.20 1284 9614 2389 6170 1055 64.2 MiB 0.07 0.00 7.57256 -157.801 -7.57256 7.57256 0.87 0.000279682 0.000222681 0.0169011 0.0137582 -1 -1 -1 -1 34 3421 43 6.55708e+06 337540 585099. 2024.56 3.92 0.150478 0.124923 22462 138074 -1 2829 17 1336 3975 215711 50091 6.66944 6.66944 -150.313 -6.66944 0 0 742403. 2568.87 0.30 0.07 0.12 -1 -1 0.30 0.0196461 0.0176217 184 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 6.63 vpr 63.83 MiB 0.02 7176 -1 -1 13 0.27 -1 -1 36500 -1 -1 25 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 269 301 1 198 89 17 17 289 -1 unnamed_device 24.9 MiB 0.32 1228 13553 3512 7868 2173 63.8 MiB 0.09 0.00 7.53 -160.047 -7.53 7.53 0.86 0.000278737 0.00022113 0.0230117 0.0184406 -1 -1 -1 -1 30 3292 32 6.55708e+06 301375 526063. 1820.29 3.13 0.122543 0.101931 21886 126133 -1 2552 14 1009 3074 142099 33780 6.5635 6.5635 -150.772 -6.5635 0 0 666494. 2306.21 0.27 0.05 0.11 -1 -1 0.27 0.015751 0.0142193 175 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 9.93 vpr 64.19 MiB 0.02 7012 -1 -1 12 0.34 -1 -1 36848 -1 -1 31 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65728 32 32 298 330 1 223 95 17 17 289 -1 unnamed_device 25.3 MiB 0.83 1387 8087 1679 5459 949 64.2 MiB 0.07 0.00 7.05212 -153.477 -7.05212 7.05212 0.92 0.00033447 0.000270176 0.0165608 0.0137164 -1 -1 -1 -1 30 3737 38 6.55708e+06 373705 526063. 1820.29 5.54 0.18815 0.158453 21886 126133 -1 3001 26 1225 4312 345363 131107 6.17638 6.17638 -146.901 -6.17638 0 0 666494. 2306.21 0.29 0.12 0.12 -1 -1 0.29 0.0287575 0.0255341 205 204 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 8.88 vpr 63.99 MiB 0.02 7120 -1 -1 13 0.34 -1 -1 36276 -1 -1 29 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65528 32 32 299 331 1 235 93 17 17 289 -1 unnamed_device 25.1 MiB 0.47 1581 12693 3407 7880 1406 64.0 MiB 0.09 0.00 7.78084 -157.592 -7.78084 7.78084 0.87 0.00031587 0.000239706 0.0225016 0.0182361 -1 -1 -1 -1 30 3966 44 6.55708e+06 349595 526063. 1820.29 4.99 0.171832 0.144008 21886 126133 -1 3177 19 1399 4310 213553 49631 6.8425 6.8425 -149.81 -6.8425 0 0 666494. 2306.21 0.28 0.07 0.11 -1 -1 0.28 0.0228854 0.0205651 205 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 5.65 vpr 64.01 MiB 0.02 6916 -1 -1 14 0.33 -1 -1 36560 -1 -1 25 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65544 32 32 259 291 1 193 89 17 17 289 -1 unnamed_device 25.2 MiB 0.50 1187 11177 2647 6549 1981 64.0 MiB 0.08 0.00 8.02137 -164.712 -8.02137 8.02137 0.88 0.000267771 0.000213583 0.0197205 0.0159865 -1 -1 -1 -1 28 3776 26 6.55708e+06 301375 500653. 1732.36 1.67 0.0858366 0.0735539 21310 115450 -1 2879 18 1236 3853 224113 51773 7.0377 7.0377 -159.533 -7.0377 0 0 612192. 2118.31 0.28 0.07 0.11 -1 -1 0.28 0.0184938 0.0165382 167 165 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 6.09 vpr 64.02 MiB 0.02 7024 -1 -1 13 0.34 -1 -1 36876 -1 -1 31 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65560 32 32 293 325 1 227 95 17 17 289 -1 unnamed_device 25.2 MiB 0.83 1504 7655 1499 5468 688 64.0 MiB 0.06 0.00 8.25451 -166.221 -8.25451 8.25451 0.88 0.000313704 0.000229491 0.0140399 0.0115578 -1 -1 -1 -1 30 3699 49 6.55708e+06 373705 526063. 1820.29 1.87 0.100626 0.0864508 21886 126133 -1 3038 16 1333 3742 175416 41924 7.16956 7.16956 -159.251 -7.16956 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0216901 0.0195284 200 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 7.19 vpr 64.25 MiB 0.03 7032 -1 -1 13 0.36 -1 -1 37036 -1 -1 32 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65788 31 32 311 343 1 231 95 17 17 289 -1 unnamed_device 25.3 MiB 0.28 1458 8735 2070 5739 926 64.2 MiB 0.07 0.00 8.65471 -176.171 -8.65471 8.65471 0.84 0.000310227 0.000246453 0.0164551 0.0134519 -1 -1 -1 -1 30 3859 26 6.55708e+06 385760 526063. 1820.29 3.60 0.139242 0.11714 21886 126133 -1 3129 16 1414 4439 208795 49315 7.52816 7.52816 -168.262 -7.52816 0 0 666494. 2306.21 0.27 0.06 0.11 -1 -1 0.27 0.0194982 0.0174353 221 220 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 10.80 vpr 64.28 MiB 0.02 6892 -1 -1 12 0.39 -1 -1 36552 -1 -1 32 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65824 32 32 324 356 1 240 96 17 17 289 -1 unnamed_device 25.5 MiB 0.57 1609 8856 1924 5931 1001 64.3 MiB 0.07 0.00 7.61091 -162.114 -7.61091 7.61091 0.84 0.000316885 0.000250758 0.0166768 0.0135701 -1 -1 -1 -1 30 4049 24 6.55708e+06 385760 526063. 1820.29 6.89 0.167307 0.141077 21886 126133 -1 3399 18 1589 5060 252590 58323 6.71064 6.71064 -156.709 -6.71064 0 0 666494. 2306.21 0.27 0.08 0.11 -1 -1 0.27 0.0222732 0.0198876 231 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 4.19 vpr 63.11 MiB 0.02 6748 -1 -1 11 0.18 -1 -1 36064 -1 -1 19 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64624 32 32 216 248 1 165 83 17 17 289 -1 unnamed_device 24.6 MiB 0.22 1046 10163 2458 6316 1389 63.1 MiB 0.06 0.00 6.00396 -136.473 -6.00396 6.00396 0.84 0.000212833 0.000168945 0.0141439 0.0114369 -1 -1 -1 -1 30 2449 18 6.55708e+06 229045 526063. 1820.29 0.87 0.0497972 0.041682 21886 126133 -1 2008 15 883 2282 116446 27644 5.27786 5.27786 -131.853 -5.27786 0 0 666494. 2306.21 0.28 0.04 0.11 -1 -1 0.28 0.0132455 0.0119341 127 122 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 5.39 vpr 63.61 MiB 0.02 6824 -1 -1 13 0.26 -1 -1 36280 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65136 32 32 245 277 1 195 91 17 17 289 -1 unnamed_device 24.9 MiB 0.56 1206 9883 2182 6350 1351 63.6 MiB 0.06 0.00 7.53281 -161.158 -7.53281 7.53281 0.89 0.000281406 0.000229933 0.0151597 0.0123651 -1 -1 -1 -1 28 3645 43 6.55708e+06 325485 500653. 1732.36 1.53 0.0844088 0.0716086 21310 115450 -1 2834 19 1359 3866 220268 51163 6.5197 6.5197 -153.871 -6.5197 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0182059 0.0162115 156 151 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 5.91 vpr 64.30 MiB 0.02 7216 -1 -1 14 0.56 -1 -1 36696 -1 -1 36 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65844 32 32 361 393 1 263 100 17 17 289 -1 unnamed_device 25.8 MiB 0.46 1797 7524 1541 5344 639 64.3 MiB 0.06 0.00 8.65712 -179.7 -8.65712 8.65712 0.83 0.000380069 0.000290702 0.0158628 0.0129523 -1 -1 -1 -1 30 4366 36 6.55708e+06 433980 526063. 1820.29 1.89 0.0976993 0.0824741 21886 126133 -1 3740 18 1779 5490 277904 63610 7.52556 7.52556 -170.919 -7.52556 0 0 666494. 2306.21 0.28 0.08 0.11 -1 -1 0.28 0.0256147 0.0229409 267 267 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 5.47 vpr 64.26 MiB 0.02 6900 -1 -1 13 0.42 -1 -1 36604 -1 -1 31 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65804 32 32 318 350 1 242 95 17 17 289 -1 unnamed_device 25.2 MiB 0.72 1473 7655 1759 5455 441 64.3 MiB 0.06 0.00 7.66968 -164.394 -7.66968 7.66968 0.85 0.000350512 0.000283224 0.016335 0.0134695 -1 -1 -1 -1 28 4284 23 6.55708e+06 373705 500653. 1732.36 1.24 0.0790919 0.0668703 21310 115450 -1 3453 19 1700 4949 255231 60257 7.1227 7.1227 -164.459 -7.1227 0 0 612192. 2118.31 0.27 0.08 0.10 -1 -1 0.27 0.0231828 0.0207145 224 224 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 7.34 vpr 63.45 MiB 0.02 6924 -1 -1 11 0.20 -1 -1 36264 -1 -1 23 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64968 30 32 223 255 1 165 85 17 17 289 -1 unnamed_device 24.6 MiB 0.24 946 11059 3375 5324 2360 63.4 MiB 0.07 0.00 6.71515 -135.35 -6.71515 6.71515 0.88 0.00024286 0.000186959 0.0160361 0.0128765 -1 -1 -1 -1 38 2133 17 6.55708e+06 277265 638502. 2209.35 3.81 0.0959064 0.0799714 23326 155178 -1 1833 17 807 2579 114875 27959 5.57938 5.57938 -122.481 -5.57938 0 0 851065. 2944.86 0.34 0.05 0.14 -1 -1 0.34 0.0152894 0.0135975 137 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 8.55 vpr 64.56 MiB 0.03 7340 -1 -1 15 0.55 -1 -1 36492 -1 -1 33 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66112 32 32 335 367 1 253 97 17 17 289 -1 unnamed_device 25.6 MiB 0.45 1686 6757 1379 4893 485 64.6 MiB 0.06 0.00 8.78929 -181.271 -8.78929 8.78929 0.87 0.000346717 0.000276318 0.015268 0.0126097 -1 -1 -1 -1 38 4347 22 6.55708e+06 397815 638502. 2209.35 4.28 0.157175 0.131399 23326 155178 -1 3524 22 1713 5565 267790 60877 7.75689 7.75689 -172.406 -7.75689 0 0 851065. 2944.86 0.35 0.09 0.14 -1 -1 0.35 0.0289215 0.0256732 241 241 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 8.14 vpr 64.12 MiB 0.02 7024 -1 -1 13 0.41 -1 -1 36904 -1 -1 29 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65664 32 32 301 333 1 226 93 17 17 289 -1 unnamed_device 25.2 MiB 0.45 1481 8703 2085 5407 1211 64.1 MiB 0.07 0.00 7.77001 -158.574 -7.77001 7.77001 0.87 0.000320482 0.000258227 0.0177007 0.0147861 -1 -1 -1 -1 38 3427 22 6.55708e+06 349595 638502. 2209.35 4.03 0.147801 0.123442 23326 155178 -1 3012 20 1388 4085 190839 44515 6.9215 6.9215 -155.133 -6.9215 0 0 851065. 2944.86 0.34 0.07 0.15 -1 -1 0.34 0.0251042 0.0225412 207 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 6.87 vpr 63.74 MiB 0.02 6924 -1 -1 11 0.16 -1 -1 36320 -1 -1 24 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65272 32 32 238 270 1 183 88 17 17 289 -1 unnamed_device 24.8 MiB 0.32 1208 6133 1399 4430 304 63.7 MiB 0.05 0.00 6.57317 -137.784 -6.57317 6.57317 0.86 0.000224673 0.000178811 0.00979987 0.0080295 -1 -1 -1 -1 32 2944 47 6.55708e+06 289320 554710. 1919.41 3.51 0.113789 0.0946694 22174 131602 -1 2602 16 1013 2792 160241 37539 5.73878 5.73878 -134.878 -5.73878 0 0 701300. 2426.64 0.29 0.05 0.11 -1 -1 0.29 0.0136173 0.0121703 149 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 8.94 vpr 64.20 MiB 0.02 7180 -1 -1 12 0.39 -1 -1 36676 -1 -1 31 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65736 32 32 308 340 1 230 95 17 17 289 -1 unnamed_device 25.2 MiB 0.51 1499 9599 2367 6512 720 64.2 MiB 0.08 0.00 7.23264 -149.423 -7.23264 7.23264 0.86 0.00030917 0.00024505 0.0180522 0.0147974 -1 -1 -1 -1 38 3470 49 6.55708e+06 373705 638502. 2209.35 4.69 0.180826 0.150204 23326 155178 -1 2937 17 1431 4809 236180 53404 6.39584 6.39584 -141.928 -6.39584 0 0 851065. 2944.86 0.36 0.07 0.15 -1 -1 0.36 0.0218311 0.0196229 217 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 7.48 vpr 63.86 MiB 0.02 6732 -1 -1 12 0.26 -1 -1 36564 -1 -1 26 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65392 32 32 253 285 1 191 90 17 17 289 -1 unnamed_device 25.0 MiB 0.32 1248 7728 1690 5460 578 63.9 MiB 0.06 0.00 7.1989 -153.033 -7.1989 7.1989 0.91 0.000266743 0.000203713 0.0131048 0.0106485 -1 -1 -1 -1 28 3531 20 6.55708e+06 313430 500653. 1732.36 3.83 0.125158 0.105243 21310 115450 -1 2939 16 1243 3318 188886 44413 6.55124 6.55124 -152.627 -6.55124 0 0 612192. 2118.31 0.26 0.06 0.10 -1 -1 0.26 0.0165511 0.0149107 164 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 4.52 vpr 63.55 MiB 0.02 6736 -1 -1 12 0.25 -1 -1 36428 -1 -1 21 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65076 30 32 227 259 1 161 83 17 17 289 -1 unnamed_device 24.7 MiB 0.26 938 8723 2063 5985 675 63.6 MiB 0.06 0.00 7.11774 -140.467 -7.11774 7.11774 0.91 0.000240983 0.000190254 0.0149707 0.0123046 -1 -1 -1 -1 26 2455 21 6.55708e+06 253155 477104. 1650.88 0.91 0.0574148 0.0484869 21022 109990 -1 2097 17 1055 3033 165777 39370 6.43304 6.43304 -140.364 -6.43304 0 0 585099. 2024.56 0.24 0.05 0.10 -1 -1 0.24 0.0154647 0.013796 139 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 6.05 vpr 64.02 MiB 0.02 7060 -1 -1 12 0.34 -1 -1 36536 -1 -1 32 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65560 29 32 292 324 1 222 93 17 17 289 -1 unnamed_device 25.2 MiB 0.43 1365 11223 2755 7251 1217 64.0 MiB 0.09 0.00 7.16655 -136.833 -7.16655 7.16655 0.85 0.000322955 0.00025908 0.0216635 0.0175368 -1 -1 -1 -1 30 3500 43 6.55708e+06 385760 526063. 1820.29 2.09 0.107603 0.0918528 21886 126133 -1 2824 31 1256 4080 399257 177058 6.15344 6.15344 -129.211 -6.15344 0 0 666494. 2306.21 0.27 0.12 0.11 -1 -1 0.27 0.0274949 0.0240595 208 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 6.07 vpr 64.20 MiB 0.03 6972 -1 -1 14 0.40 -1 -1 36672 -1 -1 33 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65736 32 32 316 348 1 256 97 17 17 289 -1 unnamed_device 25.4 MiB 0.65 1609 7201 1540 4649 1012 64.2 MiB 0.06 0.00 8.6494 -177.704 -8.6494 8.6494 0.91 0.000325511 0.000259576 0.0151009 0.0124575 -1 -1 -1 -1 30 4364 32 6.55708e+06 397815 526063. 1820.29 1.73 0.0860067 0.0729763 21886 126133 -1 3490 17 1741 4865 241957 57163 7.53016 7.53016 -172.763 -7.53016 0 0 666494. 2306.21 0.28 0.07 0.11 -1 -1 0.28 0.0219565 0.0196755 227 222 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 9.60 vpr 64.16 MiB 0.02 7092 -1 -1 12 0.29 -1 -1 36320 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65704 32 32 286 318 1 212 91 17 17 289 -1 unnamed_device 25.4 MiB 0.46 1316 5191 916 3744 531 64.2 MiB 0.05 0.00 7.48095 -154.676 -7.48095 7.48095 0.90 0.00028767 0.000228216 0.0106095 0.00880049 -1 -1 -1 -1 26 4051 30 6.55708e+06 325485 477104. 1650.88 5.71 0.157476 0.134306 21022 109990 -1 3267 22 1793 5551 357937 77467 6.99484 6.99484 -158.862 -6.99484 0 0 585099. 2024.56 0.25 0.10 0.10 -1 -1 0.25 0.0238168 0.0211656 192 192 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 5.40 vpr 63.67 MiB 0.02 6748 -1 -1 12 0.17 -1 -1 36152 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65200 32 32 221 253 1 166 84 17 17 289 -1 unnamed_device 24.9 MiB 0.53 1079 8319 2120 5072 1127 63.7 MiB 0.06 0.00 6.61712 -135.685 -6.61712 6.61712 0.91 0.000279056 0.000230712 0.0137249 0.0112612 -1 -1 -1 -1 32 2756 22 6.55708e+06 241100 554710. 1919.41 1.62 0.0739829 0.063319 22174 131602 -1 2331 30 946 2771 317020 150880 5.94258 5.94258 -134.392 -5.94258 0 0 701300. 2426.64 0.31 0.10 0.11 -1 -1 0.31 0.0194604 0.0170273 133 127 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 4.61 vpr 63.84 MiB 0.02 7004 -1 -1 12 0.25 -1 -1 36120 -1 -1 25 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65368 31 32 261 293 1 199 88 17 17 289 -1 unnamed_device 25.0 MiB 0.30 1062 10033 2618 5721 1694 63.8 MiB 0.07 0.00 7.10067 -138.704 -7.10067 7.10067 0.84 0.000256607 0.000201461 0.0160174 0.012906 -1 -1 -1 -1 32 3120 35 6.55708e+06 301375 554710. 1919.41 1.15 0.070175 0.0584041 22174 131602 -1 2406 15 1181 3217 167688 41708 5.98178 5.98178 -134.745 -5.98178 0 0 701300. 2426.64 0.29 0.05 0.11 -1 -1 0.29 0.0161902 0.0145 170 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 5.53 vpr 63.94 MiB 0.02 7100 -1 -1 11 0.23 -1 -1 36232 -1 -1 28 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65472 30 32 277 309 1 209 90 17 17 289 -1 unnamed_device 24.9 MiB 0.25 1179 9738 2219 6538 981 63.9 MiB 0.07 0.00 6.32486 -129.246 -6.32486 6.32486 0.88 0.000291753 0.000232147 0.0169332 0.0137373 -1 -1 -1 -1 34 3264 20 6.55708e+06 337540 585099. 2024.56 1.98 0.117176 0.0995912 22462 138074 -1 2848 22 1506 5351 292195 65464 5.53252 5.53252 -124.067 -5.53252 0 0 742403. 2568.87 0.33 0.08 0.12 -1 -1 0.33 0.0224781 0.019835 189 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 5.53 vpr 63.73 MiB 0.02 7152 -1 -1 11 0.26 -1 -1 36764 -1 -1 28 28 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65260 28 32 251 283 1 194 88 17 17 289 -1 unnamed_device 24.9 MiB 0.37 1237 8473 1921 5502 1050 63.7 MiB 0.06 0.00 6.63254 -118.16 -6.63254 6.63254 0.84 0.00027866 0.000212043 0.0149534 0.0121266 -1 -1 -1 -1 34 3256 36 6.55708e+06 337540 585099. 2024.56 1.94 0.0809766 0.0680367 22462 138074 -1 2805 18 1211 3812 226847 50634 5.98178 5.98178 -116.11 -5.98178 0 0 742403. 2568.87 0.31 0.06 0.13 -1 -1 0.31 0.0175411 0.0156795 171 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 5.02 vpr 63.65 MiB 0.02 6784 -1 -1 13 0.23 -1 -1 36452 -1 -1 25 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65180 30 32 223 255 1 182 87 17 17 289 -1 unnamed_device 24.7 MiB 0.62 1025 6039 1172 4360 507 63.7 MiB 0.04 0.00 7.83235 -153.18 -7.83235 7.83235 0.85 0.000230351 0.000183003 0.0101166 0.00838722 -1 -1 -1 -1 28 2893 24 6.55708e+06 301375 500653. 1732.36 1.15 0.0557768 0.0475512 21310 115450 -1 2442 21 1001 2640 143953 34861 6.7993 6.7993 -146.21 -6.7993 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0168306 0.0149787 142 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 4.95 vpr 64.12 MiB 0.02 6928 -1 -1 12 0.23 -1 -1 35808 -1 -1 25 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65664 32 32 269 301 1 210 89 17 17 289 -1 unnamed_device 25.1 MiB 0.38 1211 13553 3317 7968 2268 64.1 MiB 0.09 0.00 7.40035 -154.861 -7.40035 7.40035 0.84 0.000272948 0.000213037 0.0213509 0.0171043 -1 -1 -1 -1 28 3973 37 6.55708e+06 301375 500653. 1732.36 1.43 0.0996804 0.0851922 21310 115450 -1 2793 18 1255 3546 191349 46097 6.46824 6.46824 -153.226 -6.46824 0 0 612192. 2118.31 0.25 0.06 0.11 -1 -1 0.25 0.017828 0.0159387 180 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 5.90 vpr 63.91 MiB 0.02 7032 -1 -1 13 0.35 -1 -1 36684 -1 -1 30 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65448 31 32 283 315 1 212 93 17 17 289 -1 unnamed_device 25.1 MiB 0.43 1191 15633 5095 8093 2445 63.9 MiB 0.11 0.00 7.78778 -150.869 -7.78778 7.78778 0.88 0.000305192 0.000243389 0.027056 0.0219378 -1 -1 -1 -1 30 3592 25 6.55708e+06 361650 526063. 1820.29 1.99 0.0963268 0.0808572 21886 126133 -1 2564 16 1316 3784 173970 42821 6.9215 6.9215 -144.12 -6.9215 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0205881 0.018646 195 192 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 7.14 vpr 64.06 MiB 0.02 7100 -1 -1 14 0.36 -1 -1 36640 -1 -1 31 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65600 32 32 308 340 1 227 95 17 17 289 -1 unnamed_device 25.1 MiB 0.41 1522 7223 1481 5175 567 64.1 MiB 0.06 0.00 8.11686 -165.797 -8.11686 8.11686 0.86 0.000317286 0.000253517 0.0145919 0.0120578 -1 -1 -1 -1 26 3998 32 6.55708e+06 373705 477104. 1650.88 3.29 0.142658 0.121057 21022 109990 -1 3310 18 1408 4515 245631 56469 7.4003 7.4003 -162.743 -7.4003 0 0 585099. 2024.56 0.26 0.07 0.10 -1 -1 0.26 0.021423 0.0191779 215 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 14.73 vpr 63.91 MiB 0.02 7100 -1 -1 14 0.32 -1 -1 36864 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65440 32 32 277 309 1 210 91 17 17 289 -1 unnamed_device 25.1 MiB 0.48 1333 7027 1488 5239 300 63.9 MiB 0.06 0.00 7.98407 -153.871 -7.98407 7.98407 0.85 0.000282561 0.00022456 0.0136169 0.0112023 -1 -1 -1 -1 34 3589 46 6.55708e+06 325485 585099. 2024.56 10.74 0.218632 0.182795 22462 138074 -1 2946 30 1313 4147 362335 132153 7.1227 7.1227 -146.915 -7.1227 0 0 742403. 2568.87 0.32 0.11 0.13 -1 -1 0.32 0.0264865 0.0232358 183 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 5.61 vpr 64.07 MiB 0.02 7100 -1 -1 13 0.43 -1 -1 37240 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65612 32 32 288 320 1 218 91 17 17 289 -1 unnamed_device 25.2 MiB 0.41 1405 6823 1465 4810 548 64.1 MiB 0.06 0.00 8.04044 -163.796 -8.04044 8.04044 0.86 0.000303142 0.000241961 0.0138952 0.0114692 -1 -1 -1 -1 34 3454 20 6.55708e+06 325485 585099. 2024.56 1.61 0.0808113 0.0684659 22462 138074 -1 2954 19 1356 4241 206095 48460 7.0397 7.0397 -153.278 -7.0397 0 0 742403. 2568.87 0.31 0.07 0.12 -1 -1 0.31 0.023032 0.0205713 195 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 4.89 vpr 63.71 MiB 0.02 6948 -1 -1 13 0.21 -1 -1 36560 -1 -1 24 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65236 30 32 230 262 1 183 86 17 17 289 -1 unnamed_device 24.8 MiB 0.32 1136 10859 2622 6566 1671 63.7 MiB 0.07 0.00 7.73016 -155.181 -7.73016 7.73016 0.86 0.00024355 0.000194758 0.0163618 0.0133129 -1 -1 -1 -1 28 3125 25 6.55708e+06 289320 500653. 1732.36 1.49 0.0677398 0.057735 21310 115450 -1 2669 16 1143 2901 166348 39619 6.6399 6.6399 -147.485 -6.6399 0 0 612192. 2118.31 0.26 0.06 0.10 -1 -1 0.26 0.0162246 0.0145388 146 142 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 6.24 vpr 64.26 MiB 0.02 7120 -1 -1 13 0.58 -1 -1 36548 -1 -1 31 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65800 30 32 294 326 1 231 93 17 17 289 -1 unnamed_device 25.4 MiB 0.37 1345 14163 3644 7776 2743 64.3 MiB 0.10 0.00 8.02437 -159.192 -8.02437 8.02437 0.88 0.000449695 0.000353706 0.0251878 0.0203191 -1 -1 -1 -1 36 3779 48 6.55708e+06 373705 612192. 2118.31 2.16 0.12447 0.10436 22750 144809 -1 3012 17 1535 4658 253245 60283 7.45176 7.45176 -153.93 -7.45176 0 0 782063. 2706.10 0.31 0.07 0.13 -1 -1 0.31 0.0195735 0.017433 208 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 9.30 vpr 64.15 MiB 0.02 7056 -1 -1 14 0.36 -1 -1 36704 -1 -1 30 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65688 32 32 276 308 1 206 94 17 17 289 -1 unnamed_device 25.3 MiB 0.38 1329 7549 1640 5431 478 64.1 MiB 0.06 0.00 7.66053 -161.128 -7.66053 7.66053 0.83 0.000294794 0.00023657 0.0135175 0.0110785 -1 -1 -1 -1 30 3403 30 6.55708e+06 361650 526063. 1820.29 5.68 0.144844 0.121278 21886 126133 -1 2807 17 1301 4330 213906 48388 6.73358 6.73358 -152.952 -6.73358 0 0 666494. 2306.21 0.28 0.07 0.11 -1 -1 0.28 0.0192754 0.0172661 184 182 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 7.88 vpr 64.19 MiB 0.03 7076 -1 -1 12 0.32 -1 -1 36416 -1 -1 31 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65728 31 32 293 325 1 226 94 17 17 289 -1 unnamed_device 25.3 MiB 0.26 1376 5632 1003 4241 388 64.2 MiB 0.05 0.00 8.15384 -157.78 -8.15384 8.15384 0.90 0.00029129 0.000231727 0.0115487 0.00959761 -1 -1 -1 -1 26 4182 33 6.55708e+06 373705 477104. 1650.88 4.04 0.139913 0.118356 21022 109990 -1 3449 40 1635 4833 580267 230986 7.10844 7.10844 -152.668 -7.10844 0 0 585099. 2024.56 0.26 0.18 0.11 -1 -1 0.26 0.0363946 0.0317998 203 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 4.89 vpr 63.82 MiB 0.03 7016 -1 -1 13 0.30 -1 -1 36592 -1 -1 28 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65348 30 32 273 305 1 212 90 17 17 289 -1 unnamed_device 24.8 MiB 0.31 1337 13557 3204 8755 1598 63.8 MiB 0.09 0.00 7.63303 -140.337 -7.63303 7.63303 0.85 0.000271632 0.000215827 0.0213828 0.0170873 -1 -1 -1 -1 30 3338 27 6.55708e+06 337540 526063. 1820.29 1.37 0.0780844 0.0654058 21886 126133 -1 2844 17 1293 3697 192727 44933 6.47284 6.47284 -135.617 -6.47284 0 0 666494. 2306.21 0.27 0.06 0.11 -1 -1 0.27 0.0195892 0.0175848 186 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 12.77 vpr 64.25 MiB 0.02 6924 -1 -1 14 0.45 -1 -1 36820 -1 -1 32 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65788 32 32 310 342 1 239 96 17 17 289 -1 unnamed_device 25.5 MiB 0.80 1453 7104 1305 5544 255 64.2 MiB 0.06 0.00 8.90186 -170.541 -8.90186 8.90186 0.86 0.000338356 0.000261419 0.0145662 0.0120478 -1 -1 -1 -1 30 3871 48 6.55708e+06 385760 526063. 1820.29 8.50 0.210469 0.17793 21886 126133 -1 3188 24 1467 4404 303493 109718 7.69982 7.69982 -163.604 -7.69982 0 0 666494. 2306.21 0.27 0.10 0.11 -1 -1 0.27 0.0272445 0.0241585 220 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 4.78 vpr 63.91 MiB 0.02 6948 -1 -1 11 0.36 -1 -1 36564 -1 -1 29 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65440 29 32 259 291 1 190 90 17 17 289 -1 unnamed_device 25.0 MiB 0.39 1157 6924 1532 4775 617 63.9 MiB 0.05 0.00 6.93657 -131.54 -6.93657 6.93657 0.85 0.000277747 0.000216307 0.0122016 0.00999715 -1 -1 -1 -1 28 3272 17 6.55708e+06 349595 500653. 1732.36 1.17 0.0609786 0.0517942 21310 115450 -1 2559 15 1101 3523 187529 43768 6.11164 6.11164 -126.771 -6.11164 0 0 612192. 2118.31 0.26 0.06 0.10 -1 -1 0.26 0.019206 0.0174322 174 174 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 4.81 vpr 63.52 MiB 0.02 6700 -1 -1 13 0.20 -1 -1 36468 -1 -1 23 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65048 32 32 225 257 1 185 87 17 17 289 -1 unnamed_device 24.6 MiB 0.35 1099 6807 1492 4622 693 63.5 MiB 0.05 0.00 7.61867 -163.8 -7.61867 7.61867 0.87 0.000239717 0.000191317 0.0117244 0.00956982 -1 -1 -1 -1 26 3172 32 6.55708e+06 277265 477104. 1650.88 1.19 0.0653046 0.0555375 21022 109990 -1 2466 17 1234 3024 154568 38150 6.70864 6.70864 -155.561 -6.70864 0 0 585099. 2024.56 0.25 0.05 0.10 -1 -1 0.25 0.015524 0.0138752 142 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 7.00 vpr 63.82 MiB 0.02 7112 -1 -1 14 0.30 -1 -1 36500 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65348 32 32 273 305 1 209 91 17 17 289 -1 unnamed_device 25.1 MiB 0.30 1349 5803 1181 3934 688 63.8 MiB 0.05 0.00 8.14347 -163.597 -8.14347 8.14347 0.87 0.000269708 0.000213694 0.0110077 0.00916641 -1 -1 -1 -1 30 3351 26 6.55708e+06 325485 526063. 1820.29 3.35 0.115144 0.0974617 21886 126133 -1 2769 16 1203 3581 174601 40566 7.1207 7.1207 -155.461 -7.1207 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0177312 0.0158639 183 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 10.03 vpr 64.42 MiB 0.02 6988 -1 -1 15 0.46 -1 -1 36572 -1 -1 32 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65968 32 32 322 354 1 251 96 17 17 289 -1 unnamed_device 25.6 MiB 0.81 1653 6666 1327 4767 572 64.4 MiB 0.06 0.00 9.56735 -197.421 -9.56735 9.56735 0.88 0.000325277 0.000257987 0.0140575 0.0116458 -1 -1 -1 -1 30 4163 39 6.55708e+06 385760 526063. 1820.29 5.71 0.177431 0.149634 21886 126133 -1 3442 17 1531 4221 198455 46772 8.17401 8.17401 -183.453 -8.17401 0 0 666494. 2306.21 0.27 0.07 0.11 -1 -1 0.27 0.023628 0.0212617 228 228 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 8.44 vpr 63.41 MiB 0.02 6876 -1 -1 11 0.20 -1 -1 35936 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64932 32 32 218 250 1 164 86 17 17 289 -1 unnamed_device 24.6 MiB 0.72 1095 7835 2015 4854 966 63.4 MiB 0.06 0.00 6.79369 -139.331 -6.79369 6.79369 0.88 0.000249087 0.00020031 0.0121946 0.0100213 -1 -1 -1 -1 28 2965 43 6.55708e+06 265210 500653. 1732.36 4.50 0.0981117 0.0823844 21310 115450 -1 2415 15 869 2553 169293 36993 6.03324 6.03324 -138.892 -6.03324 0 0 612192. 2118.31 0.25 0.05 0.10 -1 -1 0.25 0.0127936 0.0114979 126 124 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 4.74 vpr 63.91 MiB 0.02 6844 -1 -1 12 0.23 -1 -1 36224 -1 -1 26 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65440 31 32 244 276 1 192 89 17 17 289 -1 unnamed_device 25.1 MiB 0.48 1142 12761 3209 8075 1477 63.9 MiB 0.08 0.00 7.38518 -156.247 -7.38518 7.38518 0.98 0.000256384 0.000203888 0.0198178 0.0158531 -1 -1 -1 -1 32 2928 16 6.55708e+06 313430 554710. 1919.41 0.93 0.0635986 0.0534267 22174 131602 -1 2656 16 1107 3219 175326 41921 6.67144 6.67144 -150.105 -6.67144 0 0 701300. 2426.64 0.30 0.05 0.12 -1 -1 0.30 0.015839 0.0142434 157 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 7.55 vpr 64.25 MiB 0.02 6836 -1 -1 12 0.37 -1 -1 36576 -1 -1 32 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65788 32 32 301 333 1 232 96 17 17 289 -1 unnamed_device 25.3 MiB 0.48 1401 10827 2800 6524 1503 64.2 MiB 0.08 0.00 7.63524 -167.112 -7.63524 7.63524 0.84 0.000346156 0.000259263 0.018952 0.0152163 -1 -1 -1 -1 36 3731 19 6.55708e+06 385760 612192. 2118.31 3.72 0.127038 0.105692 22750 144809 -1 3102 16 1345 3982 205818 48763 6.9215 6.9215 -158.888 -6.9215 0 0 782063. 2706.10 0.32 0.07 0.13 -1 -1 0.32 0.0216318 0.0195986 209 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 5.74 vpr 63.94 MiB 0.02 7096 -1 -1 12 0.30 -1 -1 36672 -1 -1 28 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65476 32 32 278 310 1 215 92 17 17 289 -1 unnamed_device 25.2 MiB 0.56 1413 11063 2862 6898 1303 63.9 MiB 0.08 0.00 7.56535 -160.035 -7.56535 7.56535 0.84 0.000293681 0.000232273 0.0191544 0.0155624 -1 -1 -1 -1 30 3743 28 6.55708e+06 337540 526063. 1820.29 1.83 0.0823766 0.0698988 21886 126133 -1 3028 17 1348 4224 217211 49859 6.47024 6.47024 -151.298 -6.47024 0 0 666494. 2306.21 0.28 0.07 0.11 -1 -1 0.28 0.0199442 0.0179174 186 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 11.60 vpr 64.41 MiB 0.02 7204 -1 -1 14 0.57 -1 -1 36616 -1 -1 35 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65952 32 32 333 365 1 247 99 17 17 289 -1 unnamed_device 25.5 MiB 0.30 1571 16287 4218 9846 2223 64.4 MiB 0.11 0.00 8.43809 -174.225 -8.43809 8.43809 0.86 0.000343647 0.000273407 0.02888 0.0233839 -1 -1 -1 -1 30 4281 30 6.55708e+06 421925 526063. 1820.29 7.54 0.214048 0.181104 21886 126133 -1 3433 17 1638 5130 255217 59174 7.49096 7.49096 -166.697 -7.49096 0 0 666494. 2306.21 0.28 0.09 0.11 -1 -1 0.28 0.0261 0.0234986 241 239 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 5.88 vpr 63.83 MiB 0.02 7080 -1 -1 11 0.28 -1 -1 36572 -1 -1 27 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65360 30 32 261 293 1 202 89 17 17 289 -1 unnamed_device 24.9 MiB 0.55 1258 9791 2659 6167 965 63.8 MiB 0.07 0.00 6.70478 -131.306 -6.70478 6.70478 0.86 0.000276321 0.00021011 0.016355 0.0132849 -1 -1 -1 -1 28 3817 39 6.55708e+06 325485 500653. 1732.36 2.03 0.101606 0.0877922 21310 115450 -1 3034 18 1514 4756 299800 65715 5.87324 5.87324 -132.688 -5.87324 0 0 612192. 2118.31 0.25 0.08 0.10 -1 -1 0.25 0.0189851 0.0168774 176 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 5.08 vpr 63.52 MiB 0.02 6892 -1 -1 11 0.23 -1 -1 36524 -1 -1 25 27 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65048 27 32 217 249 1 157 84 17 17 289 -1 unnamed_device 24.7 MiB 0.30 955 9966 2597 6231 1138 63.5 MiB 0.06 0.00 6.3206 -117.079 -6.3206 6.3206 0.89 0.00022406 0.000177257 0.0159729 0.0129419 -1 -1 -1 -1 26 2769 48 6.55708e+06 301375 477104. 1650.88 1.43 0.0889041 0.0762591 21022 109990 -1 2256 18 1049 3086 173843 40596 5.90538 5.90538 -122.985 -5.90538 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0167934 0.0150601 138 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 12.51 vpr 64.34 MiB 0.03 7248 -1 -1 13 0.57 -1 -1 36432 -1 -1 40 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65884 32 32 373 405 1 274 104 17 17 289 -1 unnamed_device 25.7 MiB 0.37 1955 9864 2276 6867 721 64.3 MiB 0.09 0.00 7.70458 -159.131 -7.70458 7.70458 0.89 0.00040458 0.000314847 0.020795 0.0169625 -1 -1 -1 -1 32 5267 30 6.55708e+06 482200 554710. 1919.41 8.24 0.24217 0.204734 22174 131602 -1 4286 20 1840 6441 375287 83145 6.70864 6.70864 -153.062 -6.70864 0 0 701300. 2426.64 0.29 0.11 0.12 -1 -1 0.29 0.0317761 0.0284656 280 279 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 7.78 vpr 64.12 MiB 0.03 7112 -1 -1 14 0.35 -1 -1 36596 -1 -1 26 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65660 31 32 269 301 1 200 89 17 17 289 -1 unnamed_device 25.2 MiB 0.37 1245 11573 2731 6807 2035 64.1 MiB 0.07 0.00 8.47244 -166.107 -8.47244 8.47244 0.83 0.000268334 0.000213207 0.0185654 0.0150714 -1 -1 -1 -1 28 3737 39 6.55708e+06 313430 500653. 1732.36 4.08 0.132593 0.111743 21310 115450 -1 2974 20 1297 3617 203413 48136 7.72676 7.72676 -166.808 -7.72676 0 0 612192. 2118.31 0.27 0.07 0.10 -1 -1 0.27 0.019978 0.0178293 179 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 10.39 vpr 63.69 MiB 0.02 6764 -1 -1 12 0.19 -1 -1 35860 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65220 32 32 228 260 1 185 91 17 17 289 -1 unnamed_device 24.7 MiB 0.47 1139 15187 4363 8443 2381 63.7 MiB 0.09 0.00 7.2366 -160.978 -7.2366 7.2366 0.84 0.000234849 0.000187012 0.020205 0.0163212 -1 -1 -1 -1 30 3262 38 6.55708e+06 325485 526063. 1820.29 6.82 0.128113 0.108089 21886 126133 -1 2410 15 1019 2901 146395 34302 6.73618 6.73618 -157.069 -6.73618 0 0 666494. 2306.21 0.28 0.05 0.11 -1 -1 0.28 0.0138912 0.0125211 144 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 5.69 vpr 64.04 MiB 0.03 6968 -1 -1 13 0.39 -1 -1 36388 -1 -1 25 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65576 32 32 265 297 1 201 89 17 17 289 -1 unnamed_device 25.1 MiB 0.58 1179 9593 2501 5729 1363 64.0 MiB 0.07 0.00 8.00084 -154.84 -8.00084 8.00084 0.84 0.000271355 0.000215952 0.0167866 0.0137163 -1 -1 -1 -1 30 3624 25 6.55708e+06 301375 526063. 1820.29 1.46 0.0761745 0.0648917 21886 126133 -1 2743 16 1272 3680 179696 42920 6.81356 6.81356 -148.908 -6.81356 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0200828 0.018193 172 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 5.86 vpr 64.28 MiB 0.02 7216 -1 -1 13 0.41 -1 -1 37372 -1 -1 35 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65824 31 32 325 357 1 258 98 17 17 289 -1 unnamed_device 25.4 MiB 0.58 1723 8423 1649 6094 680 64.3 MiB 0.07 0.00 7.58638 -160.922 -7.58638 7.58638 0.87 0.000338583 0.000259409 0.0166252 0.0136691 -1 -1 -1 -1 28 5070 35 6.55708e+06 421925 500653. 1732.36 1.76 0.0966098 0.0821903 21310 115450 -1 3860 17 1717 4870 279650 64248 6.66944 6.66944 -155.587 -6.66944 0 0 612192. 2118.31 0.25 0.08 0.10 -1 -1 0.25 0.0220229 0.0197957 235 234 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 7.89 vpr 64.00 MiB 0.02 7012 -1 -1 11 0.32 -1 -1 36304 -1 -1 33 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65532 30 32 287 319 1 213 95 17 17 289 -1 unnamed_device 25.2 MiB 0.40 1432 7007 1504 4847 656 64.0 MiB 0.06 0.00 7.1643 -145.437 -7.1643 7.1643 0.91 0.000288392 0.000229319 0.01299 0.0107272 -1 -1 -1 -1 36 3455 24 6.55708e+06 397815 612192. 2118.31 3.92 0.124881 0.104868 22750 144809 -1 3057 14 1160 4035 224179 49806 6.27104 6.27104 -137.153 -6.27104 0 0 782063. 2706.10 0.33 0.06 0.13 -1 -1 0.33 0.018285 0.016571 199 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 11.06 vpr 64.10 MiB 0.02 7080 -1 -1 15 0.40 -1 -1 36616 -1 -1 29 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65640 32 32 297 329 1 230 93 17 17 289 -1 unnamed_device 25.1 MiB 0.42 1519 8073 1948 5210 915 64.1 MiB 0.07 0.00 9.01015 -184 -9.01015 9.01015 0.84 0.000298742 0.000235879 0.0159879 0.0129205 -1 -1 -1 -1 30 4315 34 6.55708e+06 349595 526063. 1820.29 7.26 0.192618 0.163649 21886 126133 -1 3257 18 1521 4714 250033 57709 7.68815 7.68815 -171.412 -7.68815 0 0 666494. 2306.21 0.28 0.08 0.11 -1 -1 0.28 0.021571 0.0192241 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 7.54 vpr 64.45 MiB 0.02 7044 -1 -1 13 0.41 -1 -1 37060 -1 -1 32 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65992 32 32 311 343 1 238 96 17 17 289 -1 unnamed_device 25.4 MiB 0.23 1448 14331 3665 9149 1517 64.4 MiB 0.11 0.00 7.86097 -165.619 -7.86097 7.86097 1.00 0.000320192 0.000254766 0.0265909 0.0216849 -1 -1 -1 -1 30 3712 22 6.55708e+06 385760 526063. 1820.29 3.56 0.158236 0.133852 21886 126133 -1 3129 22 1511 4692 227372 52827 6.7621 6.7621 -157.93 -6.7621 0 0 666494. 2306.21 0.28 0.07 0.11 -1 -1 0.28 0.0241661 0.0213933 217 217 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 5.53 vpr 63.88 MiB 0.02 6752 -1 -1 12 0.24 -1 -1 36124 -1 -1 27 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65412 29 32 236 268 1 193 88 17 17 289 -1 unnamed_device 24.8 MiB 0.54 1047 10813 2718 6103 1992 63.9 MiB 0.07 0.00 6.80146 -143.314 -6.80146 6.80146 0.86 0.000245089 0.000187995 0.0162557 0.013024 -1 -1 -1 -1 30 3274 41 6.55708e+06 325485 526063. 1820.29 1.68 0.0766992 0.0649065 21886 126133 -1 2397 18 1274 3345 158487 38872 6.20792 6.20792 -141.221 -6.20792 0 0 666494. 2306.21 0.27 0.05 0.11 -1 -1 0.27 0.0154468 0.0137462 157 151 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 6.54 vpr 63.71 MiB 0.02 6880 -1 -1 11 0.19 -1 -1 36024 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 231 263 1 179 86 17 17 289 -1 unnamed_device 24.8 MiB 0.54 1093 5189 1003 3884 302 63.7 MiB 0.04 0.00 6.74698 -142.525 -6.74698 6.74698 0.86 0.00023989 0.000191244 0.00881634 0.00725299 -1 -1 -1 -1 30 2837 23 6.55708e+06 265210 526063. 1820.29 2.94 0.0864309 0.0721558 21886 126133 -1 2246 14 1007 2678 125747 30981 5.78058 5.78058 -133.996 -5.78058 0 0 666494. 2306.21 0.27 0.04 0.11 -1 -1 0.27 0.0127879 0.0115325 138 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 8.54 vpr 63.91 MiB 0.02 7004 -1 -1 13 0.38 -1 -1 36676 -1 -1 31 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65448 31 32 294 326 1 224 94 17 17 289 -1 unnamed_device 25.0 MiB 0.47 1501 5632 1004 4261 367 63.9 MiB 0.05 0.00 8.25511 -166.809 -8.25511 8.25511 0.91 0.000307555 0.000244539 0.0119607 0.0100437 -1 -1 -1 -1 30 3515 19 6.55708e+06 373705 526063. 1820.29 4.61 0.139394 0.117936 21886 126133 -1 3024 19 1290 4346 201320 47018 7.2781 7.2781 -156.731 -7.2781 0 0 666494. 2306.21 0.28 0.07 0.11 -1 -1 0.28 0.0223288 0.0199746 204 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 5.09 vpr 63.89 MiB 0.02 6904 -1 -1 10 0.21 -1 -1 36248 -1 -1 25 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65424 29 32 221 253 1 167 86 17 17 289 -1 unnamed_device 25.0 MiB 0.27 1064 7646 1912 5016 718 63.9 MiB 0.06 0.00 5.93963 -122.7 -5.93963 5.93963 0.88 0.000220546 0.000175484 0.0116926 0.00961066 -1 -1 -1 -1 28 2898 29 6.55708e+06 301375 500653. 1732.36 1.46 0.0583357 0.0490757 21310 115450 -1 2474 18 1070 3212 180262 41209 5.46578 5.46578 -123.918 -5.46578 0 0 612192. 2118.31 0.27 0.06 0.10 -1 -1 0.27 0.0150667 0.0134541 138 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 7.52 vpr 63.66 MiB 0.02 6840 -1 -1 14 0.24 -1 -1 36520 -1 -1 24 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65192 32 32 240 272 1 178 88 17 17 289 -1 unnamed_device 24.7 MiB 0.53 1142 10033 2412 5986 1635 63.7 MiB 0.07 0.00 7.66803 -156.849 -7.66803 7.66803 0.98 0.000247424 0.000196666 0.0159746 0.0131398 -1 -1 -1 -1 32 2810 16 6.55708e+06 289320 554710. 1919.41 3.47 0.125443 0.105305 22174 131602 -1 2425 17 1015 2963 157025 37268 6.6817 6.6817 -148.145 -6.6817 0 0 701300. 2426.64 0.34 0.06 0.12 -1 -1 0.34 0.0177247 0.0159515 149 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 5.45 vpr 64.03 MiB 0.02 7084 -1 -1 12 0.38 -1 -1 36512 -1 -1 29 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65568 31 32 292 324 1 211 92 17 17 289 -1 unnamed_device 25.2 MiB 0.39 1394 6095 1205 4292 598 64.0 MiB 0.05 0.00 7.67729 -159.665 -7.67729 7.67729 0.84 0.000304467 0.000244099 0.0122875 0.0101395 -1 -1 -1 -1 32 3565 27 6.55708e+06 349595 554710. 1919.41 1.76 0.0855718 0.0720168 22174 131602 -1 3095 16 1295 4298 227234 52867 6.5191 6.5191 -150.453 -6.5191 0 0 701300. 2426.64 0.30 0.06 0.12 -1 -1 0.30 0.0186651 0.0167223 201 201 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 6.67 vpr 63.56 MiB 0.02 6816 -1 -1 12 0.18 -1 -1 36088 -1 -1 23 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65084 31 32 229 261 1 182 86 17 17 289 -1 unnamed_device 24.7 MiB 0.39 1194 5567 1099 4211 257 63.6 MiB 0.04 0.00 6.82849 -150.919 -6.82849 6.82849 0.83 0.000234562 0.000188187 0.00950918 0.00788677 -1 -1 -1 -1 34 2708 14 6.55708e+06 277265 585099. 2024.56 3.26 0.0829609 0.0696408 22462 138074 -1 2308 13 879 2480 133425 30666 6.05818 6.05818 -142.406 -6.05818 0 0 742403. 2568.87 0.29 0.04 0.12 -1 -1 0.29 0.0123035 0.0110735 142 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 5.33 vpr 63.89 MiB 0.02 7168 -1 -1 12 0.24 -1 -1 36532 -1 -1 26 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65420 32 32 282 314 1 206 90 17 17 289 -1 unnamed_device 24.9 MiB 0.25 1308 5517 1109 4058 350 63.9 MiB 0.05 0.00 6.90658 -147.949 -6.90658 6.90658 0.88 0.000302926 0.000241491 0.0118227 0.00971088 -1 -1 -1 -1 28 3809 37 6.55708e+06 313430 500653. 1732.36 1.73 0.10379 0.0904984 21310 115450 -1 3106 20 1650 5246 296681 67610 6.21252 6.21252 -145.602 -6.21252 0 0 612192. 2118.31 0.27 0.09 0.11 -1 -1 0.27 0.0225026 0.0199913 188 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 9.37 vpr 63.89 MiB 0.02 7000 -1 -1 13 0.35 -1 -1 37064 -1 -1 30 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65420 31 32 269 301 1 216 93 17 17 289 -1 unnamed_device 25.1 MiB 0.38 1442 9753 2402 6155 1196 63.9 MiB 0.07 0.00 7.83564 -165.134 -7.83564 7.83564 0.83 0.000289396 0.000232359 0.0159244 0.0130092 -1 -1 -1 -1 28 4165 41 6.55708e+06 361650 500653. 1732.36 5.75 0.141449 0.118461 21310 115450 -1 3349 17 1370 4128 248392 56542 7.0005 7.0005 -162.099 -7.0005 0 0 612192. 2118.31 0.25 0.07 0.12 -1 -1 0.25 0.0183956 0.0164602 180 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 6.64 vpr 63.81 MiB 0.02 6924 -1 -1 11 0.21 -1 -1 36032 -1 -1 26 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65344 32 32 237 269 1 183 90 17 17 289 -1 unnamed_device 25.1 MiB 0.28 1181 5316 953 4041 322 63.8 MiB 0.04 0.00 6.7625 -141.932 -6.7625 6.7625 0.84 0.000237384 0.000189084 0.0092397 0.00766251 -1 -1 -1 -1 28 3253 27 6.55708e+06 313430 500653. 1732.36 3.07 0.0909022 0.0763821 21310 115450 -1 2766 31 1534 4997 419976 144205 5.87584 5.87584 -139.934 -5.87584 0 0 612192. 2118.31 0.26 0.14 0.11 -1 -1 0.26 0.0285719 0.0253473 148 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 4.88 vpr 63.95 MiB 0.02 6688 -1 -1 13 0.24 -1 -1 36400 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65484 32 32 259 291 1 202 91 17 17 289 -1 unnamed_device 25.0 MiB 0.29 1261 6619 1462 4468 689 63.9 MiB 0.05 0.00 7.87238 -161.512 -7.87238 7.87238 0.84 0.000258374 0.00020518 0.0110293 0.00907364 -1 -1 -1 -1 28 3782 22 6.55708e+06 325485 500653. 1732.36 1.41 0.0633755 0.0538763 21310 115450 -1 2987 36 1896 5422 530398 211567 6.74584 6.74584 -155.563 -6.74584 0 0 612192. 2118.31 0.26 0.16 0.10 -1 -1 0.26 0.0270705 0.0234281 167 165 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 8.29 vpr 63.89 MiB 0.02 6992 -1 -1 13 0.32 -1 -1 36744 -1 -1 29 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65420 32 32 277 309 1 220 93 17 17 289 -1 unnamed_device 25.1 MiB 0.50 1331 9963 2251 5897 1815 63.9 MiB 0.07 0.00 7.86397 -163.224 -7.86397 7.86397 0.87 0.000277828 0.000221054 0.0167115 0.013565 -1 -1 -1 -1 40 3099 16 6.55708e+06 349595 666494. 2306.21 4.37 0.137187 0.115212 23614 160646 -1 2777 16 1182 3762 194468 45608 6.7601 6.7601 -150.521 -6.7601 0 0 872365. 3018.56 0.35 0.06 0.14 -1 -1 0.35 0.0173114 0.0155737 188 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 5.24 vpr 63.86 MiB 0.02 7032 -1 -1 11 0.23 -1 -1 36880 -1 -1 27 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65392 29 32 245 277 1 190 88 17 17 289 -1 unnamed_device 25.1 MiB 0.32 1009 12373 3112 6826 2435 63.9 MiB 0.08 0.00 6.353 -119.656 -6.353 6.353 0.84 0.000244033 0.000192409 0.0186486 0.0149545 -1 -1 -1 -1 32 2901 44 6.55708e+06 325485 554710. 1919.41 1.72 0.0930536 0.0780791 22174 131602 -1 2282 15 1070 2996 160001 39318 5.65272 5.65272 -119.121 -5.65272 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0143295 0.0128734 160 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 6.19 vpr 64.43 MiB 0.02 7184 -1 -1 14 0.40 -1 -1 37188 -1 -1 32 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65972 32 32 316 348 1 250 96 17 17 289 -1 unnamed_device 25.6 MiB 0.51 1579 9732 2188 6618 926 64.4 MiB 0.08 0.00 8.66947 -182.489 -8.66947 8.66947 0.84 0.0003277 0.000262158 0.0187291 0.015363 -1 -1 -1 -1 34 4311 25 6.55708e+06 385760 585099. 2024.56 2.11 0.129777 0.110265 22462 138074 -1 3629 18 1591 4901 297947 76640 7.55769 7.55769 -171.651 -7.55769 0 0 742403. 2568.87 0.32 0.09 0.12 -1 -1 0.32 0.0246415 0.0221208 225 222 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 5.24 vpr 63.60 MiB 0.02 6708 -1 -1 12 0.21 -1 -1 36268 -1 -1 28 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65128 31 32 230 262 1 186 91 17 17 289 -1 unnamed_device 24.6 MiB 0.48 1132 10903 2780 6518 1605 63.6 MiB 0.07 0.00 6.86778 -146.474 -6.86778 6.86778 0.86 0.000231443 0.000183366 0.0157316 0.0128046 -1 -1 -1 -1 32 3018 28 6.55708e+06 337540 554710. 1919.41 1.48 0.0697337 0.0585911 22174 131602 -1 2447 14 955 2532 154272 35741 5.75164 5.75164 -135.852 -5.75164 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.0135844 0.0122742 145 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 5.66 vpr 63.89 MiB 0.03 6888 -1 -1 13 0.35 -1 -1 37084 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65424 32 32 282 314 1 213 91 17 17 289 -1 unnamed_device 25.1 MiB 0.43 1389 6211 1334 4310 567 63.9 MiB 0.05 0.00 7.65501 -153.87 -7.65501 7.65501 0.85 0.000303021 0.000242638 0.0121264 0.0100216 -1 -1 -1 -1 36 3214 19 6.55708e+06 325485 612192. 2118.31 1.80 0.0910502 0.0763426 22750 144809 -1 2944 18 1414 4408 241792 55629 6.71064 6.71064 -147.421 -6.71064 0 0 782063. 2706.10 0.31 0.10 0.14 -1 -1 0.31 0.0286117 0.0255379 189 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 6.88 vpr 63.79 MiB 0.02 6952 -1 -1 13 0.23 -1 -1 36324 -1 -1 26 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65316 32 32 235 267 1 180 90 17 17 289 -1 unnamed_device 24.8 MiB 0.58 1095 7326 1550 5416 360 63.8 MiB 0.05 0.00 7.45231 -160.211 -7.45231 7.45231 0.88 0.000234317 0.000186876 0.0112672 0.009257 -1 -1 -1 -1 30 2802 25 6.55708e+06 313430 526063. 1820.29 2.92 0.0871777 0.0726675 21886 126133 -1 2370 18 1049 2929 138014 33390 6.66944 6.66944 -152.748 -6.66944 0 0 666494. 2306.21 0.32 0.07 0.12 -1 -1 0.32 0.0212637 0.0190718 145 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 8.43 vpr 63.91 MiB 0.02 7120 -1 -1 12 0.29 -1 -1 36460 -1 -1 26 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65444 32 32 265 297 1 193 90 17 17 289 -1 unnamed_device 25.0 MiB 0.36 1228 7728 1665 5629 434 63.9 MiB 0.06 0.00 7.58733 -154.847 -7.58733 7.58733 0.87 0.000272203 0.000217187 0.0140775 0.0115271 -1 -1 -1 -1 26 3621 49 6.55708e+06 313430 477104. 1650.88 4.72 0.135325 0.113682 21022 109990 -1 2693 14 1094 3256 176092 41182 6.7641 6.7641 -149.211 -6.7641 0 0 585099. 2024.56 0.26 0.06 0.10 -1 -1 0.26 0.0177149 0.016092 172 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 6.43 vpr 64.11 MiB 0.03 7260 -1 -1 15 0.63 -1 -1 36444 -1 -1 34 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65648 32 32 344 376 1 259 98 17 17 289 -1 unnamed_device 25.6 MiB 0.36 1717 9323 2212 6516 595 64.1 MiB 0.08 0.00 8.85561 -175.55 -8.85561 8.85561 0.88 0.000357479 0.000284797 0.0195989 0.0159209 -1 -1 -1 -1 34 4541 22 6.55708e+06 409870 585099. 2024.56 2.14 0.125433 0.106862 22462 138074 -1 3829 21 1999 6567 350217 79612 7.57962 7.57962 -166.192 -7.57962 0 0 742403. 2568.87 0.31 0.11 0.14 -1 -1 0.31 0.0309428 0.0277356 250 250 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 6.09 vpr 62.97 MiB 0.02 6620 -1 -1 10 0.12 -1 -1 35416 -1 -1 16 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64484 30 32 173 205 1 128 78 17 17 289 -1 unnamed_device 24.3 MiB 0.37 663 7880 1846 5770 264 63.0 MiB 0.05 0.00 5.47134 -123.464 -5.47134 5.47134 0.93 0.00020641 0.000158449 0.0107095 0.00866901 -1 -1 -1 -1 28 1974 20 6.55708e+06 192880 500653. 1732.36 2.73 0.0667658 0.055894 21310 115450 -1 1678 23 664 1642 133806 42267 5.20346 5.20346 -126.486 -5.20346 0 0 612192. 2118.31 0.25 0.05 0.11 -1 -1 0.25 0.0117747 0.0103303 92 85 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 6.21 vpr 63.59 MiB 0.02 6920 -1 -1 13 0.22 -1 -1 36488 -1 -1 29 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65120 30 32 229 261 1 173 91 17 17 289 -1 unnamed_device 24.6 MiB 0.18 1085 9679 2271 6084 1324 63.6 MiB 0.06 0.00 7.6407 -150.826 -7.6407 7.6407 0.87 0.000241522 0.000183036 0.0137415 0.0112097 -1 -1 -1 -1 28 2979 22 6.55708e+06 349595 500653. 1732.36 2.89 0.0900264 0.0751611 21310 115450 -1 2391 17 1007 2862 149022 35937 6.45858 6.45858 -142.834 -6.45858 0 0 612192. 2118.31 0.28 0.06 0.10 -1 -1 0.28 0.0176865 0.0159836 149 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 7.83 vpr 64.00 MiB 0.02 6752 -1 -1 12 0.23 -1 -1 36096 -1 -1 23 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65540 32 32 261 293 1 201 87 17 17 289 -1 unnamed_device 25.1 MiB 0.33 1229 11607 2776 7348 1483 64.0 MiB 0.08 0.00 6.61226 -148.616 -6.61226 6.61226 0.89 0.00026394 0.000209435 0.0184624 0.0149389 -1 -1 -1 -1 28 3740 42 6.55708e+06 277265 500653. 1732.36 4.31 0.136247 0.11367 21310 115450 -1 2954 17 1348 3709 210484 49410 5.90338 5.90338 -148.246 -5.90338 0 0 612192. 2118.31 0.26 0.07 0.10 -1 -1 0.26 0.0176191 0.015695 167 167 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 6.44 vpr 63.11 MiB 0.03 6992 -1 -1 9 0.16 -1 -1 36096 -1 -1 23 25 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64620 25 32 184 216 1 142 80 17 17 289 -1 unnamed_device 24.6 MiB 0.27 731 11260 3536 5471 2253 63.1 MiB 0.06 0.00 5.58849 -100.305 -5.58849 5.58849 0.87 0.000183545 0.000145428 0.0142705 0.01157 -1 -1 -1 -1 26 2516 31 6.55708e+06 277265 477104. 1650.88 2.97 0.0868175 0.0718134 21022 109990 -1 1831 19 899 2487 131676 32476 4.60446 4.60446 -98.7119 -4.60446 0 0 585099. 2024.56 0.25 0.04 0.10 -1 -1 0.25 0.0126331 0.011223 113 111 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 5.76 vpr 64.32 MiB 0.02 6984 -1 -1 12 0.37 -1 -1 36208 -1 -1 33 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65860 32 32 302 334 1 241 97 17 17 289 -1 unnamed_device 25.4 MiB 0.30 1511 13861 3457 8236 2168 64.3 MiB 0.10 0.00 7.51028 -165.632 -7.51028 7.51028 0.89 0.000309921 0.00024871 0.0238751 0.0194201 -1 -1 -1 -1 36 3687 19 6.55708e+06 397815 612192. 2118.31 1.82 0.0966782 0.0815641 22750 144809 -1 3430 17 1490 4587 277511 62512 6.66178 6.66178 -159.1 -6.66178 0 0 782063. 2706.10 0.31 0.08 0.13 -1 -1 0.31 0.0209734 0.0189261 209 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 7.72 vpr 64.23 MiB 0.02 7132 -1 -1 14 0.40 -1 -1 36936 -1 -1 28 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65772 31 32 295 327 1 222 91 17 17 289 -1 unnamed_device 25.3 MiB 0.49 1427 6415 1288 4361 766 64.2 MiB 0.06 0.00 8.59764 -174.646 -8.59764 8.59764 0.86 0.000303329 0.000241347 0.0137583 0.011275 -1 -1 -1 -1 30 3687 25 6.55708e+06 337540 526063. 1820.29 3.61 0.134831 0.112911 21886 126133 -1 2995 16 1276 3871 177285 41783 7.82002 7.82002 -167.42 -7.82002 0 0 666494. 2306.21 0.33 0.06 0.12 -1 -1 0.33 0.0204084 0.0184057 204 204 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.26 vpr 64.39 MiB 0.03 7204 -1 -1 1 0.03 -1 -1 34524 -1 -1 36 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65940 32 32 438 350 1 194 100 17 17 289 -1 unnamed_device 25.5 MiB 0.15 929 17268 4565 10218 2485 64.4 MiB 0.13 0.00 4.24756 -141.398 -4.24756 4.24756 0.86 0.000259933 0.000202609 0.021183 0.0166716 -1 -1 -1 -1 32 2502 21 6.64007e+06 452088 554710. 1919.41 1.03 0.0640493 0.0524575 22834 132086 -1 2003 21 1599 2725 153325 37317 3.62623 3.62623 -137.156 -3.62623 0 0 701300. 2426.64 0.30 0.06 0.12 -1 -1 0.30 0.016883 0.0147965 153 96 32 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.60 vpr 64.21 MiB 0.02 7192 -1 -1 1 0.06 -1 -1 34252 -1 -1 23 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65748 30 32 409 330 1 186 85 17 17 289 -1 unnamed_device 25.2 MiB 0.21 873 12919 4129 6395 2395 64.2 MiB 0.11 0.00 4.45516 -130.844 -4.45516 4.45516 0.89 0.000227213 0.000178692 0.0205306 0.016632 -1 -1 -1 -1 32 2188 21 6.64007e+06 288834 554710. 1919.41 0.97 0.0618261 0.0513815 22834 132086 -1 1899 23 1583 2754 164100 38700 3.84263 3.84263 -133.584 -3.84263 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0166886 0.0145581 142 91 30 30 89 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.12 vpr 64.32 MiB 0.02 7132 -1 -1 1 0.04 -1 -1 34196 -1 -1 35 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65864 32 32 387 309 1 186 99 17 17 289 -1 unnamed_device 25.4 MiB 0.15 1003 9675 2005 7104 566 64.3 MiB 0.08 0.00 3.83457 -129.818 -3.83457 3.83457 0.88 0.000215331 0.000169711 0.011041 0.00889378 -1 -1 -1 -1 30 2327 20 6.64007e+06 439530 526063. 1820.29 0.88 0.0475795 0.0394977 22546 126617 -1 2038 20 1231 2024 112746 25536 3.42623 3.42623 -130.48 -3.42623 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0162917 0.0142713 142 65 54 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 3.97 vpr 64.33 MiB 0.03 7204 -1 -1 1 0.04 -1 -1 34172 -1 -1 24 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65876 29 32 343 267 1 184 85 17 17 289 -1 unnamed_device 25.5 MiB 0.13 990 11245 3461 6773 1011 64.3 MiB 0.10 0.00 4.46418 -132.416 -4.46418 4.46418 0.85 0.000215376 0.000172449 0.0156027 0.0127183 -1 -1 -1 -1 26 2361 21 6.64007e+06 301392 477104. 1650.88 0.87 0.0530226 0.0443146 21682 110474 -1 1898 19 1382 2391 133144 31525 3.75363 3.75363 -131.002 -3.75363 0 0 585099. 2024.56 0.25 0.05 0.10 -1 -1 0.25 0.01433 0.0126017 138 34 87 29 29 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.16 vpr 64.22 MiB 0.02 7096 -1 -1 1 0.04 -1 -1 33828 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65764 32 32 376 288 1 195 86 17 17 289 -1 unnamed_device 25.3 MiB 0.15 849 15017 4515 8552 1950 64.2 MiB 0.13 0.00 4.14936 -139.21 -4.14936 4.14936 0.85 0.000243855 0.00019718 0.0213406 0.0171585 -1 -1 -1 -1 32 2158 19 6.64007e+06 276276 554710. 1919.41 0.93 0.0598378 0.0492011 22834 132086 -1 1883 23 1627 2940 175616 44084 3.50723 3.50723 -131.536 -3.50723 0 0 701300. 2426.64 0.29 0.06 0.11 -1 -1 0.29 0.0170532 0.0148643 153 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.38 vpr 64.30 MiB 0.03 7184 -1 -1 1 0.05 -1 -1 34016 -1 -1 39 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65844 32 32 402 316 1 199 103 17 17 289 -1 unnamed_device 25.5 MiB 0.14 1024 19142 5775 10357 3010 64.3 MiB 0.16 0.00 3.5603 -122.248 -3.5603 3.5603 0.86 0.000236865 0.000187545 0.0231688 0.0186781 -1 -1 -1 -1 32 2275 21 6.64007e+06 489762 554710. 1919.41 0.99 0.0675318 0.0562993 22834 132086 -1 1914 18 1191 1922 112493 27492 2.85617 2.85617 -114.664 -2.85617 0 0 701300. 2426.64 0.31 0.04 0.12 -1 -1 0.31 0.0143411 0.0125645 156 64 63 32 63 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.21 vpr 63.77 MiB 0.02 7168 -1 -1 1 0.04 -1 -1 34368 -1 -1 20 27 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65300 27 32 269 226 1 135 79 17 17 289 -1 unnamed_device 24.8 MiB 0.12 536 12754 3285 8720 749 63.8 MiB 0.08 0.00 3.7877 -97.0533 -3.7877 3.7877 0.84 0.000161805 0.000127881 0.0142715 0.0115701 -1 -1 -1 -1 32 1263 20 6.64007e+06 251160 554710. 1919.41 0.99 0.0469307 0.0394295 22834 132086 -1 1040 20 890 1548 89627 21823 2.79977 2.79977 -89.8593 -2.79977 0 0 701300. 2426.64 0.30 0.04 0.12 -1 -1 0.30 0.0122122 0.0107845 97 34 54 27 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.34 vpr 64.30 MiB 0.02 7228 -1 -1 1 0.04 -1 -1 33624 -1 -1 34 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65848 31 32 317 242 1 185 97 17 17 289 -1 unnamed_device 25.4 MiB 0.14 948 16081 4441 8879 2761 64.3 MiB 0.12 0.00 3.49449 -109.504 -3.49449 3.49449 0.90 0.000233602 0.000187103 0.018421 0.0150374 -1 -1 -1 -1 28 2250 21 6.64007e+06 426972 500653. 1732.36 0.96 0.0538166 0.0450278 21970 115934 -1 1978 20 1191 1997 126595 29386 2.65357 2.65357 -104.975 -2.65357 0 0 612192. 2118.31 0.25 0.05 0.10 -1 -1 0.25 0.0139128 0.0120919 140 4 115 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.91 vpr 63.79 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 34008 -1 -1 17 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65316 31 32 338 292 1 147 80 17 17 289 -1 unnamed_device 24.9 MiB 0.18 706 7820 1805 5417 598 63.8 MiB 0.06 0.00 3.31336 -101.862 -3.31336 3.31336 0.89 0.000198541 0.000157041 0.0107985 0.00876509 -1 -1 -1 -1 28 1834 19 6.64007e+06 213486 500653. 1732.36 0.83 0.0450752 0.0372564 21970 115934 -1 1580 18 727 1210 75427 17896 2.78397 2.78397 -100.796 -2.78397 0 0 612192. 2118.31 0.26 0.04 0.10 -1 -1 0.26 0.0121727 0.0105631 106 85 0 0 84 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.32 vpr 63.89 MiB 0.02 6932 -1 -1 1 0.05 -1 -1 33880 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65424 32 32 314 256 1 162 81 17 17 289 -1 unnamed_device 25.1 MiB 0.17 890 10756 2975 5928 1853 63.9 MiB 0.08 0.00 3.5061 -124.869 -3.5061 3.5061 0.87 0.000184786 0.000146273 0.014126 0.0115031 -1 -1 -1 -1 32 1891 22 6.64007e+06 213486 554710. 1919.41 0.92 0.0496154 0.0415313 22834 132086 -1 1778 22 1293 2043 128760 29112 2.85677 2.85677 -120.971 -2.85677 0 0 701300. 2426.64 0.31 0.05 0.12 -1 -1 0.31 0.0136456 0.0119649 121 34 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.29 vpr 63.91 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 33784 -1 -1 18 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65448 30 32 325 273 1 151 80 17 17 289 -1 unnamed_device 25.0 MiB 0.18 822 14012 5060 7295 1657 63.9 MiB 0.10 0.00 3.4841 -115.834 -3.4841 3.4841 0.95 0.000216729 0.000174733 0.0187339 0.015216 -1 -1 -1 -1 28 1790 20 6.64007e+06 226044 500653. 1732.36 0.83 0.050825 0.0423282 21970 115934 -1 1551 18 1049 1513 95909 21865 2.76697 2.76697 -110.142 -2.76697 0 0 612192. 2118.31 0.26 0.04 0.10 -1 -1 0.26 0.0127133 0.0111761 110 63 30 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.21 vpr 64.08 MiB 0.02 7072 -1 -1 1 0.04 -1 -1 34124 -1 -1 29 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65616 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 25.1 MiB 0.14 840 9753 2297 6936 520 64.1 MiB 0.07 0.00 3.52209 -114.564 -3.52209 3.52209 0.88 0.000189512 0.000149184 0.0109417 0.00887498 -1 -1 -1 -1 30 1983 23 6.64007e+06 364182 526063. 1820.29 0.88 0.0453337 0.0376979 22546 126617 -1 1684 20 963 1598 88084 20474 2.86577 2.86577 -112.046 -2.86577 0 0 666494. 2306.21 0.30 0.04 0.12 -1 -1 0.30 0.0130201 0.0113871 114 65 25 25 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.60 vpr 64.28 MiB 0.04 7240 -1 -1 1 0.04 -1 -1 33864 -1 -1 34 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65820 32 32 386 305 1 188 98 17 17 289 -1 unnamed_device 25.3 MiB 0.21 893 19448 6133 10048 3267 64.3 MiB 0.16 0.00 3.56129 -122.026 -3.56129 3.56129 0.97 0.000249057 0.000200043 0.0238154 0.0191416 -1 -1 -1 -1 32 2126 22 6.64007e+06 426972 554710. 1919.41 1.00 0.0679577 0.0566976 22834 132086 -1 1768 20 1395 2386 143294 33441 2.87597 2.87597 -115.245 -2.87597 0 0 701300. 2426.64 0.30 0.05 0.14 -1 -1 0.30 0.0152489 0.0134 145 58 64 32 57 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.22 vpr 64.31 MiB 0.02 7232 -1 -1 1 0.04 -1 -1 34120 -1 -1 36 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65856 32 32 407 319 1 200 100 17 17 289 -1 unnamed_device 25.5 MiB 0.21 891 11700 2919 7112 1669 64.3 MiB 0.08 0.00 4.29776 -143.645 -4.29776 4.29776 0.85 0.000239384 0.000192022 0.0137638 0.0110697 -1 -1 -1 -1 30 2503 26 6.64007e+06 452088 526063. 1820.29 1.05 0.0578345 0.0478993 22546 126617 -1 1950 21 1586 2514 140522 33275 3.65443 3.65443 -141.805 -3.65443 0 0 666494. 2306.21 0.27 0.05 0.11 -1 -1 0.27 0.0152806 0.0133045 158 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.96 vpr 63.75 MiB 0.02 6980 -1 -1 1 0.04 -1 -1 34268 -1 -1 19 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65276 29 32 272 228 1 145 80 17 17 289 -1 unnamed_device 24.8 MiB 0.15 800 8852 2481 5509 862 63.7 MiB 0.06 0.00 3.4261 -103.793 -3.4261 3.4261 0.87 0.00016639 0.000131978 0.0103095 0.00840218 -1 -1 -1 -1 32 1628 17 6.64007e+06 238602 554710. 1919.41 0.87 0.0375356 0.0313759 22834 132086 -1 1425 19 787 1405 74846 17979 2.42237 2.42237 -94.0611 -2.42237 0 0 701300. 2426.64 0.29 0.03 0.12 -1 -1 0.29 0.0102343 0.00897435 108 29 58 29 24 24 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.41 vpr 64.25 MiB 0.03 7184 -1 -1 1 0.04 -1 -1 33896 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65796 32 32 401 315 1 192 86 17 17 289 -1 unnamed_device 25.5 MiB 0.24 1073 13316 3773 7644 1899 64.3 MiB 0.12 0.00 3.5141 -124.76 -3.5141 3.5141 0.87 0.000236516 0.000189097 0.020343 0.01663 -1 -1 -1 -1 32 2082 18 6.64007e+06 276276 554710. 1919.41 0.94 0.0606782 0.0507563 22834 132086 -1 1958 23 1569 2671 163833 36569 2.92017 2.92017 -118.943 -2.92017 0 0 701300. 2426.64 0.30 0.05 0.12 -1 -1 0.30 0.0164535 0.0142155 147 63 64 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 7.79 vpr 64.20 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 33996 -1 -1 36 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65740 32 32 383 303 1 185 100 17 17 289 -1 unnamed_device 25.2 MiB 0.20 964 16340 5208 8057 3075 64.2 MiB 0.09 0.00 3.6263 -123.14 -3.6263 3.6263 0.86 0.000223374 0.000176388 0.0177017 0.0141741 -1 -1 -1 -1 32 2360 34 6.64007e+06 452088 554710. 1919.41 4.53 0.129746 0.107066 22834 132086 -1 1859 21 1419 2163 148923 35930 2.94397 2.94397 -118.909 -2.94397 0 0 701300. 2426.64 0.30 0.05 0.12 -1 -1 0.30 0.0145272 0.0126139 144 57 64 32 56 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.95 vpr 64.02 MiB 0.02 7128 -1 -1 1 0.04 -1 -1 34144 -1 -1 31 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65560 32 32 339 284 1 162 95 17 17 289 -1 unnamed_device 25.1 MiB 0.17 919 13487 3473 7992 2022 64.0 MiB 0.09 0.00 2.83964 -105.375 -2.83964 2.83964 0.86 0.000192737 0.00015202 0.0144539 0.0116531 -1 -1 -1 -1 26 2102 19 6.64007e+06 389298 477104. 1650.88 0.81 0.0475843 0.0394471 21682 110474 -1 1857 20 1152 1834 119069 26548 2.21651 2.21651 -99.4103 -2.21651 0 0 585099. 2024.56 0.25 0.04 0.10 -1 -1 0.25 0.0131988 0.0114349 119 65 29 29 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.84 vpr 63.43 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 33988 -1 -1 15 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64952 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 24.9 MiB 0.08 670 10835 3352 6011 1472 63.4 MiB 0.06 0.00 2.72344 -89.4054 -2.72344 2.72344 0.86 0.000142178 0.000112385 0.0105452 0.00841796 -1 -1 -1 -1 32 1398 19 6.64007e+06 188370 554710. 1919.41 0.84 0.0341816 0.0282176 22834 132086 -1 1282 18 507 809 56366 13085 1.81371 1.81371 -80.478 -1.81371 0 0 701300. 2426.64 0.30 0.03 0.12 -1 -1 0.30 0.00915317 0.00796408 85 34 24 24 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.36 vpr 64.03 MiB 0.02 7092 -1 -1 1 0.04 -1 -1 33912 -1 -1 18 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65568 31 32 335 280 1 154 81 17 17 289 -1 unnamed_device 25.1 MiB 0.16 858 12506 4894 6227 1385 64.0 MiB 0.08 0.00 4.22795 -126.106 -4.22795 4.22795 0.91 0.000199539 0.000158427 0.016439 0.0133389 -1 -1 -1 -1 32 1872 15 6.64007e+06 226044 554710. 1919.41 0.90 0.0494479 0.0412942 22834 132086 -1 1637 23 715 1092 69637 16518 3.51162 3.51162 -122.799 -3.51162 0 0 701300. 2426.64 0.30 0.04 0.13 -1 -1 0.30 0.0150158 0.013155 114 64 31 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.58 vpr 64.38 MiB 0.03 7216 -1 -1 1 0.04 -1 -1 33924 -1 -1 36 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65924 32 32 366 283 1 192 100 17 17 289 -1 unnamed_device 25.5 MiB 0.13 885 17732 4998 9545 3189 64.4 MiB 0.13 0.00 4.22193 -138.344 -4.22193 4.22193 0.96 0.000213407 0.000169745 0.0190645 0.0154147 -1 -1 -1 -1 32 2233 23 6.64007e+06 452088 554710. 1919.41 1.02 0.0593993 0.0493202 22834 132086 -1 1968 20 1479 2228 140291 33293 3.88103 3.88103 -138.413 -3.88103 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0177857 0.0158579 147 34 91 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.24 vpr 64.50 MiB 0.02 7392 -1 -1 1 0.04 -1 -1 34212 -1 -1 38 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66044 32 32 460 375 1 196 102 17 17 289 -1 unnamed_device 25.6 MiB 0.23 960 11288 2842 7087 1359 64.5 MiB 0.10 0.00 3.74425 -123.858 -3.74425 3.74425 0.87 0.000274592 0.000220173 0.0142074 0.0114241 -1 -1 -1 -1 30 2600 21 6.64007e+06 477204 526063. 1820.29 0.97 0.0564841 0.0468288 22546 126617 -1 2046 23 1395 2198 125630 29103 3.47943 3.47943 -125.707 -3.47943 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0175497 0.0152192 150 124 0 0 125 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.78 vpr 62.93 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 34220 -1 -1 17 26 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64440 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 24.4 MiB 0.11 395 10503 3120 6151 1232 62.9 MiB 0.05 0.00 2.74064 -71.156 -2.74064 2.74064 0.87 0.000128912 0.000101205 0.0100454 0.00801519 -1 -1 -1 -1 28 1144 31 6.64007e+06 213486 500653. 1732.36 0.84 0.0349059 0.028748 21970 115934 -1 976 16 565 861 51604 13410 1.97531 1.97531 -68.1975 -1.97531 0 0 612192. 2118.31 0.25 0.03 0.10 -1 -1 0.25 0.0074863 0.00661256 77 30 26 26 22 22 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.16 vpr 64.15 MiB 0.02 7064 -1 -1 1 0.04 -1 -1 33484 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65692 32 32 333 251 1 187 86 17 17 289 -1 unnamed_device 25.3 MiB 0.14 992 12749 4476 6094 2179 64.2 MiB 0.10 0.00 4.46433 -140.075 -4.46433 4.46433 0.88 0.00020226 0.000160474 0.0158941 0.0129073 -1 -1 -1 -1 32 2268 23 6.64007e+06 276276 554710. 1919.41 0.94 0.0520245 0.0434201 22834 132086 -1 1965 19 1342 2402 132157 32318 3.78683 3.78683 -136.12 -3.78683 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.0163061 0.0145665 138 3 122 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.00 vpr 63.14 MiB 0.02 6876 -1 -1 1 0.04 -1 -1 33952 -1 -1 13 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 24.5 MiB 0.07 603 10020 2349 7350 321 63.1 MiB 0.05 0.00 2.3583 -84.1764 -2.3583 2.3583 0.86 0.000131519 0.000103306 0.00954172 0.00769964 -1 -1 -1 -1 28 1501 13 6.64007e+06 163254 500653. 1732.36 0.92 0.0308525 0.0257815 21970 115934 -1 1304 19 631 833 70376 17674 2.04931 2.04931 -86.2334 -2.04931 0 0 612192. 2118.31 0.28 0.03 0.13 -1 -1 0.28 0.00863275 0.00757045 81 3 53 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.36 vpr 64.50 MiB 0.03 7076 -1 -1 1 0.04 -1 -1 34180 -1 -1 35 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66048 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 25.4 MiB 0.11 956 14691 4376 8904 1411 64.5 MiB 0.11 0.00 4.18856 -140.856 -4.18856 4.18856 0.87 0.000214277 0.000168514 0.0164732 0.0131539 -1 -1 -1 -1 32 2374 20 6.64007e+06 439530 554710. 1919.41 0.99 0.0570988 0.0477004 22834 132086 -1 2007 22 1606 2528 142742 34241 3.66543 3.66543 -137.36 -3.66543 0 0 701300. 2426.64 0.30 0.05 0.12 -1 -1 0.30 0.0163222 0.0143776 153 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 5.05 vpr 64.33 MiB 0.02 7024 -1 -1 1 0.04 -1 -1 34052 -1 -1 37 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65872 32 32 337 253 1 196 101 17 17 289 -1 unnamed_device 25.5 MiB 0.12 1019 8796 1857 6524 415 64.3 MiB 0.08 0.00 3.60659 -123.354 -3.60659 3.60659 0.93 0.000231261 0.000188698 0.00992566 0.00816845 -1 -1 -1 -1 26 2993 28 6.64007e+06 464646 477104. 1650.88 1.63 0.0631832 0.0542198 21682 110474 -1 2335 18 1436 2378 175403 44105 3.20157 3.20157 -127.093 -3.20157 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0145647 0.0129215 152 3 124 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.27 vpr 64.54 MiB 0.02 7276 -1 -1 1 0.04 -1 -1 34200 -1 -1 37 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66088 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 25.7 MiB 0.11 1069 18901 5689 10576 2636 64.5 MiB 0.14 0.00 4.16036 -141.868 -4.16036 4.16036 0.89 0.000251582 0.000201176 0.0216092 0.0173575 -1 -1 -1 -1 32 2548 21 6.64007e+06 464646 554710. 1919.41 0.99 0.0613534 0.0506809 22834 132086 -1 2129 21 1646 2691 141977 34781 3.66043 3.66043 -137.544 -3.66043 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0155065 0.0135 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.94 vpr 63.82 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 33900 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65348 32 32 294 246 1 149 80 17 17 289 -1 unnamed_device 25.0 MiB 0.12 857 10572 2555 6423 1594 63.8 MiB 0.07 0.00 3.07196 -107.422 -3.07196 3.07196 0.87 0.000183554 0.00014496 0.0140156 0.0113617 -1 -1 -1 -1 32 1757 18 6.64007e+06 200928 554710. 1919.41 0.88 0.0443754 0.036848 22834 132086 -1 1665 19 796 1246 81562 19040 2.71797 2.71797 -108.439 -2.71797 0 0 701300. 2426.64 0.29 0.04 0.11 -1 -1 0.29 0.0120249 0.0104809 107 34 54 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.21 vpr 63.93 MiB 0.03 6908 -1 -1 1 0.04 -1 -1 34020 -1 -1 19 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65464 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 25.1 MiB 0.11 824 11806 3275 6761 1770 63.9 MiB 0.08 0.00 3.4951 -114.009 -3.4951 3.4951 0.85 0.000176092 0.000138903 0.0140123 0.0113742 -1 -1 -1 -1 32 1730 21 6.64007e+06 238602 554710. 1919.41 0.91 0.0468535 0.0392437 22834 132086 -1 1616 23 1128 1775 119175 26629 2.83897 2.83897 -109.351 -2.83897 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.014034 0.0122878 115 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.26 vpr 63.83 MiB 0.02 6948 -1 -1 1 0.04 -1 -1 33964 -1 -1 20 28 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65360 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 25.0 MiB 0.12 658 7132 1686 4570 876 63.8 MiB 0.06 0.00 3.4309 -100.483 -3.4309 3.4309 0.94 0.00017869 0.000143471 0.009914 0.00819883 -1 -1 -1 -1 32 1685 20 6.64007e+06 251160 554710. 1919.41 0.92 0.0399228 0.033651 22834 132086 -1 1475 19 960 1599 81347 20779 2.77357 2.77357 -100.425 -2.77357 0 0 701300. 2426.64 0.29 0.04 0.13 -1 -1 0.29 0.0114576 0.0101375 107 34 56 28 28 28 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.33 vpr 63.77 MiB 0.02 7032 -1 -1 1 0.04 -1 -1 33836 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65304 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 24.9 MiB 0.12 802 15390 5648 7380 2362 63.8 MiB 0.10 0.00 3.5251 -121.985 -3.5251 3.5251 0.89 0.000175822 0.000139061 0.0173769 0.0140137 -1 -1 -1 -1 32 1891 19 6.64007e+06 226044 554710. 1919.41 0.91 0.0484583 0.0403158 22834 132086 -1 1756 20 1298 2123 132969 31154 3.03597 3.03597 -116.087 -3.03597 0 0 701300. 2426.64 0.31 0.05 0.12 -1 -1 0.31 0.0121069 0.0106948 125 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.89 vpr 64.16 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 33964 -1 -1 31 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65704 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 25.2 MiB 0.10 772 9679 2262 6618 799 64.2 MiB 0.08 0.00 3.47387 -114.287 -3.47387 3.47387 0.88 0.00018292 0.000145298 0.0100881 0.00818797 -1 -1 -1 -1 28 2154 23 6.64007e+06 389298 500653. 1732.36 0.85 0.0414495 0.0344651 21970 115934 -1 1814 21 1290 2116 130616 31908 2.90597 2.90597 -113.24 -2.90597 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0125532 0.0109516 119 34 61 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.96 vpr 63.86 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 34096 -1 -1 31 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65388 29 32 312 264 1 154 92 17 17 289 -1 unnamed_device 25.0 MiB 0.17 877 15824 4460 9332 2032 63.9 MiB 0.10 0.00 2.80466 -91.9047 -2.80466 2.80466 0.88 0.000179594 0.000141171 0.0157251 0.0125205 -1 -1 -1 -1 26 2085 22 6.64007e+06 389298 477104. 1650.88 0.86 0.047004 0.0387385 21682 110474 -1 1803 21 1117 1812 124382 28366 2.23771 2.23771 -91.2216 -2.23771 0 0 585099. 2024.56 0.26 0.04 0.10 -1 -1 0.26 0.0119306 0.0103724 110 61 29 29 57 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.94 vpr 64.26 MiB 0.03 7256 -1 -1 1 0.04 -1 -1 34244 -1 -1 41 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65804 32 32 423 310 1 229 105 17 17 289 -1 unnamed_device 25.8 MiB 0.21 1234 17889 5288 10109 2492 64.3 MiB 0.18 0.00 4.16036 -142.499 -4.16036 4.16036 0.87 0.000287294 0.000230447 0.0226246 0.0182209 -1 -1 -1 -1 28 3489 28 6.64007e+06 514878 500653. 1732.36 1.44 0.0943156 0.0808251 21970 115934 -1 2691 19 1782 3070 228492 48363 3.77982 3.77982 -142.437 -3.77982 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0168856 0.0148312 181 29 128 32 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.12 vpr 64.26 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 33956 -1 -1 37 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65800 32 32 403 317 1 198 101 17 17 289 -1 unnamed_device 25.5 MiB 0.19 1001 12556 2992 8501 1063 64.3 MiB 0.10 0.00 3.5823 -124.897 -3.5823 3.5823 0.89 0.000244822 0.000192063 0.0158924 0.0128736 -1 -1 -1 -1 26 2436 22 6.64007e+06 464646 477104. 1650.88 0.90 0.0604371 0.0506451 21682 110474 -1 2084 22 1860 2884 168245 39492 3.26977 3.26977 -124.845 -3.26977 0 0 585099. 2024.56 0.25 0.06 0.10 -1 -1 0.25 0.0161862 0.0140993 154 65 62 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.29 vpr 63.88 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 34212 -1 -1 29 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65416 31 32 353 302 1 156 92 17 17 289 -1 unnamed_device 25.0 MiB 0.23 849 6716 1490 4831 395 63.9 MiB 0.06 0.00 3.4309 -114.527 -3.4309 3.4309 0.87 0.0001951 0.000153153 0.00827963 0.00673983 -1 -1 -1 -1 26 2154 24 6.64007e+06 364182 477104. 1650.88 1.09 0.054709 0.0464538 21682 110474 -1 1833 22 1208 2029 124963 28900 2.87597 2.87597 -112.016 -2.87597 0 0 585099. 2024.56 0.25 0.05 0.10 -1 -1 0.25 0.0132546 0.0114545 114 90 0 0 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.09 vpr 64.32 MiB 0.02 7128 -1 -1 1 0.04 -1 -1 33820 -1 -1 24 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65864 31 32 391 309 1 194 87 17 17 289 -1 unnamed_device 25.4 MiB 0.20 1058 10839 2803 6606 1430 64.3 MiB 0.09 0.00 3.4841 -118.469 -3.4841 3.4841 0.86 0.000221674 0.000175555 0.0145427 0.0117407 -1 -1 -1 -1 28 2547 22 6.64007e+06 301392 500653. 1732.36 0.90 0.0534732 0.0443312 21970 115934 -1 2220 21 1654 2736 175719 41104 3.11837 3.11837 -120.431 -3.11837 0 0 612192. 2118.31 0.27 0.06 0.10 -1 -1 0.27 0.01537 0.0133577 149 64 60 30 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.71 vpr 64.38 MiB 0.03 7248 -1 -1 1 0.05 -1 -1 34308 -1 -1 23 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65924 31 32 455 371 1 193 86 17 17 289 -1 unnamed_device 25.5 MiB 0.40 953 7835 1760 5704 371 64.4 MiB 0.08 0.00 5.23812 -147.937 -5.23812 5.23812 0.97 0.00023748 0.000187408 0.0141787 0.0115014 -1 -1 -1 -1 32 2338 21 6.64007e+06 288834 554710. 1919.41 0.97 0.0614344 0.0516524 22834 132086 -1 2016 16 1078 1825 120781 27853 4.12088 4.12088 -141.247 -4.12088 0 0 701300. 2426.64 0.31 0.05 0.13 -1 -1 0.31 0.0185417 0.0164541 150 124 0 0 124 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.51 vpr 64.25 MiB 0.02 7296 -1 -1 1 0.04 -1 -1 33844 -1 -1 23 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65792 31 32 413 333 1 188 86 17 17 289 -1 unnamed_device 25.5 MiB 0.30 955 10859 3044 7047 768 64.2 MiB 0.10 0.00 5.02279 -136.574 -5.02279 5.02279 0.96 0.000233267 0.000183068 0.0163306 0.0132375 -1 -1 -1 -1 30 2194 18 6.64007e+06 288834 526063. 1820.29 0.94 0.0586651 0.048943 22546 126617 -1 1811 17 953 1502 84216 19390 3.80628 3.80628 -130.763 -3.80628 0 0 666494. 2306.21 0.28 0.04 0.12 -1 -1 0.28 0.0164305 0.0146057 144 90 31 31 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.20 vpr 64.51 MiB 0.03 7128 -1 -1 1 0.04 -1 -1 34036 -1 -1 35 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66056 31 32 391 309 1 193 98 17 17 289 -1 unnamed_device 25.5 MiB 0.17 1024 15398 4164 9880 1354 64.5 MiB 0.12 0.00 3.5401 -119.706 -3.5401 3.5401 0.87 0.000236706 0.000179083 0.0187382 0.0147923 -1 -1 -1 -1 26 2781 25 6.64007e+06 439530 477104. 1650.88 0.99 0.0647029 0.0535635 21682 110474 -1 2130 22 1689 3053 184511 42853 2.80297 2.80297 -114.997 -2.80297 0 0 585099. 2024.56 0.26 0.06 0.10 -1 -1 0.26 0.0165913 0.0144054 148 64 60 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.28 vpr 64.34 MiB 0.03 7160 -1 -1 1 0.04 -1 -1 34628 -1 -1 37 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65880 32 32 407 319 1 198 101 17 17 289 -1 unnamed_device 25.6 MiB 0.15 865 10206 2264 6941 1001 64.3 MiB 0.09 0.00 4.23656 -140.329 -4.23656 4.23656 0.87 0.000236922 0.000187097 0.0124004 0.00999782 -1 -1 -1 -1 32 2446 25 6.64007e+06 464646 554710. 1919.41 1.00 0.0549103 0.0458283 22834 132086 -1 1951 21 1581 2455 139913 34155 3.64523 3.64523 -141.39 -3.64523 0 0 701300. 2426.64 0.30 0.06 0.12 -1 -1 0.30 0.0177487 0.0155958 156 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.30 vpr 64.53 MiB 0.03 7348 -1 -1 1 0.04 -1 -1 34348 -1 -1 42 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66076 32 32 496 380 1 232 106 17 17 289 -1 unnamed_device 25.8 MiB 0.21 1205 17356 4219 10649 2488 64.5 MiB 0.14 0.00 4.21478 -145.938 -4.21478 4.21478 0.87 0.000278079 0.00022091 0.0221063 0.0177771 -1 -1 -1 -1 32 2757 18 6.64007e+06 527436 554710. 1919.41 0.93 0.0663592 0.0548385 22834 132086 -1 2368 20 1722 2693 165769 37051 3.52623 3.52623 -139.535 -3.52623 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0190456 0.0165568 186 96 62 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.12 vpr 63.99 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 34048 -1 -1 18 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65528 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 25.2 MiB 0.14 655 13731 5030 6417 2284 64.0 MiB 0.09 0.00 3.7665 -117.146 -3.7665 3.7665 0.92 0.000186017 0.00014681 0.0168689 0.0135111 -1 -1 -1 -1 32 1675 22 6.64007e+06 226044 554710. 1919.41 0.92 0.0490117 0.0404927 22834 132086 -1 1426 19 1054 1688 97004 24503 2.74857 2.74857 -108.046 -2.74857 0 0 701300. 2426.64 0.30 0.04 0.12 -1 -1 0.30 0.0123819 0.0108236 116 34 62 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.38 vpr 64.52 MiB 0.02 7180 -1 -1 1 0.04 -1 -1 34092 -1 -1 38 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66068 31 32 395 311 1 196 101 17 17 289 -1 unnamed_device 25.7 MiB 0.15 910 7386 1527 5477 382 64.5 MiB 0.08 0.00 4.20356 -136.322 -4.20356 4.20356 0.87 0.000234729 0.000186116 0.010774 0.00892467 -1 -1 -1 -1 32 2419 20 6.64007e+06 477204 554710. 1919.41 0.97 0.0498861 0.0419104 22834 132086 -1 1918 21 1393 2203 121364 29505 3.62623 3.62623 -133.697 -3.62623 0 0 701300. 2426.64 0.31 0.05 0.13 -1 -1 0.31 0.0161588 0.0141339 152 64 62 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.17 vpr 64.44 MiB 0.03 7080 -1 -1 1 0.03 -1 -1 34072 -1 -1 34 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65988 32 32 397 313 1 196 98 17 17 289 -1 unnamed_device 25.6 MiB 0.17 994 14048 3500 8468 2080 64.4 MiB 0.12 0.00 3.7163 -119.726 -3.7163 3.7163 0.85 0.000247105 0.000196727 0.0176267 0.0142339 -1 -1 -1 -1 32 2244 20 6.64007e+06 426972 554710. 1919.41 0.94 0.0571042 0.0473558 22834 132086 -1 1981 20 1440 2516 132401 32249 2.69476 2.69476 -108.894 -2.69476 0 0 701300. 2426.64 0.29 0.05 0.11 -1 -1 0.29 0.0164968 0.0142983 149 63 62 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.42 vpr 64.56 MiB 0.02 6892 -1 -1 1 0.04 -1 -1 33868 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66108 32 32 345 257 1 194 86 17 17 289 -1 unnamed_device 25.6 MiB 0.13 1080 15017 4624 8554 1839 64.6 MiB 0.13 0.00 4.14936 -144.892 -4.14936 4.14936 0.86 0.000218166 0.000173645 0.0210827 0.0171691 -1 -1 -1 -1 32 2456 20 6.64007e+06 276276 554710. 1919.41 0.97 0.0593956 0.0497498 22834 132086 -1 2218 22 1675 2996 190105 42442 3.50723 3.50723 -139.173 -3.50723 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0165588 0.0146299 151 3 128 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.58 vpr 64.39 MiB 0.04 7204 -1 -1 1 0.04 -1 -1 35112 -1 -1 35 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65932 32 32 424 343 1 190 99 17 17 289 -1 unnamed_device 25.6 MiB 0.24 1044 15603 4218 9336 2049 64.4 MiB 0.13 0.00 3.55822 -125.535 -3.55822 3.55822 0.92 0.000237363 0.000187203 0.0206762 0.0168129 -1 -1 -1 -1 32 2279 18 6.64007e+06 439530 554710. 1919.41 0.91 0.0584069 0.048383 22834 132086 -1 2007 18 1212 1817 107674 25436 2.74557 2.74557 -115.101 -2.74557 0 0 701300. 2426.64 0.33 0.05 0.12 -1 -1 0.33 0.016919 0.0147944 146 96 25 25 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 6.10 vpr 64.52 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 33908 -1 -1 37 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66068 32 32 395 311 1 194 101 17 17 289 -1 unnamed_device 25.4 MiB 0.20 1017 12791 3286 8285 1220 64.5 MiB 0.11 0.00 3.47912 -120.914 -3.47912 3.47912 0.94 0.000264341 0.000214788 0.0161327 0.0130516 -1 -1 -1 -1 24 2900 34 6.64007e+06 464646 448715. 1552.65 2.60 0.0876829 0.0733215 21394 104001 -1 2079 20 1135 2074 123650 30088 3.10537 3.10537 -121.977 -3.10537 0 0 554710. 1919.41 0.25 0.05 0.09 -1 -1 0.25 0.0168043 0.0146825 148 61 64 32 60 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.49 vpr 64.32 MiB 0.03 7192 -1 -1 1 0.06 -1 -1 33932 -1 -1 39 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65860 32 32 405 318 1 200 103 17 17 289 -1 unnamed_device 25.5 MiB 0.18 1102 19142 5372 11310 2460 64.3 MiB 0.13 0.00 3.5243 -123.608 -3.5243 3.5243 0.87 0.000225337 0.000177519 0.0205457 0.0164433 -1 -1 -1 -1 32 2252 20 6.64007e+06 489762 554710. 1919.41 0.93 0.0604887 0.0498849 22834 132086 -1 2002 18 1458 2281 124068 28286 2.64137 2.64137 -113.426 -2.64137 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.0187895 0.0167658 157 65 63 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.31 vpr 64.18 MiB 0.02 7084 -1 -1 1 0.04 -1 -1 34184 -1 -1 37 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65720 32 32 376 288 1 194 101 17 17 289 -1 unnamed_device 25.2 MiB 0.12 1032 14906 4320 9186 1400 64.2 MiB 0.13 0.00 4.18856 -144.112 -4.18856 4.18856 0.91 0.000229918 0.000182949 0.0170876 0.0136752 -1 -1 -1 -1 30 2350 21 6.64007e+06 464646 526063. 1820.29 0.95 0.0590914 0.0491947 22546 126617 -1 1948 23 1626 2580 137099 31450 3.46723 3.46723 -136.683 -3.46723 0 0 666494. 2306.21 0.30 0.06 0.11 -1 -1 0.30 0.0185049 0.0163578 152 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.25 vpr 64.36 MiB 0.02 7164 -1 -1 1 0.04 -1 -1 34120 -1 -1 39 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65904 32 32 407 319 1 197 103 17 17 289 -1 unnamed_device 25.6 MiB 0.16 1016 12153 3010 8355 788 64.4 MiB 0.10 0.00 4.23153 -146.068 -4.23153 4.23153 0.87 0.000236105 0.000186767 0.0145297 0.0116297 -1 -1 -1 -1 26 2715 27 6.64007e+06 489762 477104. 1650.88 1.07 0.0581034 0.0480773 21682 110474 -1 2215 21 1727 2816 198145 44037 3.75563 3.75563 -146.462 -3.75563 0 0 585099. 2024.56 0.26 0.06 0.10 -1 -1 0.26 0.0149467 0.0129695 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.69 vpr 64.82 MiB 0.04 7448 -1 -1 1 0.05 -1 -1 34296 -1 -1 36 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66380 31 32 449 367 1 193 99 17 17 289 -1 unnamed_device 25.9 MiB 0.24 1147 12639 3382 8238 1019 64.8 MiB 0.11 0.00 4.39296 -135.032 -4.39296 4.39296 0.96 0.0002378 0.000185031 0.016031 0.0128926 -1 -1 -1 -1 28 3055 26 6.64007e+06 452088 500653. 1732.36 1.12 0.0710358 0.0595902 21970 115934 -1 2476 19 1406 2484 165517 38177 3.64943 3.64943 -137.226 -3.64943 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0169647 0.0148386 147 122 0 0 122 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.50 vpr 64.52 MiB 0.03 7232 -1 -1 1 0.04 -1 -1 34268 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66064 32 32 432 346 1 195 86 17 17 289 -1 unnamed_device 25.7 MiB 0.21 1069 15584 4992 8664 1928 64.5 MiB 0.12 0.00 4.34993 -137.194 -4.34993 4.34993 0.93 0.000232995 0.00018377 0.0220618 0.0177837 -1 -1 -1 -1 32 2483 21 6.64007e+06 276276 554710. 1919.41 0.94 0.0634712 0.0525736 22834 132086 -1 2204 21 1597 2967 171986 40364 3.60343 3.60343 -135.549 -3.60343 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0163713 0.0141703 151 94 32 32 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.90 vpr 64.12 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 33968 -1 -1 31 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65660 32 32 312 255 1 166 95 17 17 289 -1 unnamed_device 25.1 MiB 0.12 928 8735 1852 5986 897 64.1 MiB 0.06 0.00 3.50687 -122.364 -3.50687 3.50687 0.85 0.000201805 0.000161795 0.00962113 0.00787879 -1 -1 -1 -1 28 2268 21 6.64007e+06 389298 500653. 1732.36 0.88 0.0413011 0.0342616 21970 115934 -1 1966 19 1238 1976 126734 29630 3.00117 3.00117 -120.372 -3.00117 0 0 612192. 2118.31 0.27 0.04 0.10 -1 -1 0.27 0.0113774 0.00996614 125 34 63 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.25 vpr 64.13 MiB 0.02 7104 -1 -1 1 0.04 -1 -1 33876 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65672 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 25.4 MiB 0.20 885 10406 2864 6861 681 64.1 MiB 0.09 0.00 3.5031 -121.505 -3.5031 3.5031 0.92 0.000205124 0.000161668 0.0156831 0.012803 -1 -1 -1 -1 26 2176 22 6.64007e+06 226044 477104. 1650.88 0.87 0.0551054 0.0459777 21682 110474 -1 1889 21 1261 2024 140942 31764 3.17337 3.17337 -121.891 -3.17337 0 0 585099. 2024.56 0.26 0.05 0.11 -1 -1 0.26 0.0151839 0.0133115 121 94 0 0 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.31 vpr 63.74 MiB 0.03 7260 -1 -1 1 0.04 -1 -1 34180 -1 -1 42 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65272 32 32 469 351 1 233 106 17 17 289 -1 unnamed_device 25.0 MiB 0.14 1352 17606 4821 10688 2097 63.7 MiB 0.17 0.00 4.98622 -168.741 -4.98622 4.98622 0.87 0.000268892 0.000213368 0.021758 0.0175393 -1 -1 -1 -1 32 3069 21 6.64007e+06 527436 554710. 1919.41 1.02 0.0662945 0.0550217 22834 132086 -1 2682 25 2299 3864 225754 52387 4.87789 4.87789 -173.346 -4.87789 0 0 701300. 2426.64 0.29 0.07 0.12 -1 -1 0.29 0.0200294 0.0173563 189 65 96 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.08 vpr 63.32 MiB 0.02 7032 -1 -1 1 0.04 -1 -1 33796 -1 -1 33 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 368 284 1 194 97 17 17 289 -1 unnamed_device 24.4 MiB 0.16 1055 17857 5354 10411 2092 63.3 MiB 0.14 0.00 3.51607 -123.396 -3.51607 3.51607 0.88 0.000221199 0.000172581 0.0202998 0.0160269 -1 -1 -1 -1 30 2214 17 6.64007e+06 414414 526063. 1820.29 0.88 0.0590754 0.0486163 22546 126617 -1 1952 19 1238 1872 93959 22767 2.93717 2.93717 -120.668 -2.93717 0 0 666494. 2306.21 0.29 0.04 0.11 -1 -1 0.29 0.0137791 0.0121028 148 34 92 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.31 vpr 63.14 MiB 0.02 6920 -1 -1 1 0.05 -1 -1 33776 -1 -1 31 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64652 30 32 296 244 1 158 93 17 17 289 -1 unnamed_device 24.3 MiB 0.11 854 17523 5448 9891 2184 63.1 MiB 0.11 0.00 3.4529 -114.919 -3.4529 3.4529 0.94 0.00018714 0.000148558 0.0179237 0.0144683 -1 -1 -1 -1 30 1877 21 6.64007e+06 389298 526063. 1820.29 0.91 0.0501534 0.0417452 22546 126617 -1 1638 19 882 1371 83618 18199 2.61677 2.61677 -105.127 -2.61677 0 0 666494. 2306.21 0.30 0.04 0.12 -1 -1 0.30 0.0120535 0.0105881 116 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.77 vpr 64.12 MiB 0.04 7616 -1 -1 1 0.05 -1 -1 34656 -1 -1 45 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65664 32 32 531 413 1 232 109 17 17 289 -1 unnamed_device 25.5 MiB 0.33 1192 13629 3357 8864 1408 64.1 MiB 0.12 0.00 4.97469 -167.233 -4.97469 4.97469 0.93 0.000322643 0.000260263 0.018259 0.0147475 -1 -1 -1 -1 32 2677 21 6.64007e+06 565110 554710. 1919.41 1.01 0.0742995 0.0620425 22834 132086 -1 2378 20 1867 2959 182545 40993 4.55829 4.55829 -166.895 -4.55829 0 0 701300. 2426.64 0.29 0.07 0.12 -1 -1 0.29 0.0232445 0.0205477 188 127 32 32 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.09 vpr 64.38 MiB 0.02 7004 -1 -1 1 0.05 -1 -1 33968 -1 -1 38 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65924 32 32 376 288 1 194 102 17 17 289 -1 unnamed_device 25.3 MiB 0.13 1027 16762 4357 10483 1922 64.4 MiB 0.12 0.00 4.27488 -146.847 -4.27488 4.27488 0.86 0.000231769 0.000184248 0.0180869 0.0143812 -1 -1 -1 -1 28 2732 21 6.64007e+06 477204 500653. 1732.36 0.91 0.0577514 0.0476383 21970 115934 -1 2262 19 1618 2382 151152 37456 3.85383 3.85383 -149.152 -3.85383 0 0 612192. 2118.31 0.26 0.05 0.10 -1 -1 0.26 0.015425 0.0135776 153 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.05 vpr 64.03 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 34024 -1 -1 32 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65564 32 32 283 225 1 164 96 17 17 289 -1 unnamed_device 25.1 MiB 0.08 882 11046 2802 6952 1292 64.0 MiB 0.09 0.00 3.5621 -124.172 -3.5621 3.5621 0.96 0.000189392 0.000150366 0.0118212 0.00960726 -1 -1 -1 -1 30 1789 19 6.64007e+06 401856 526063. 1820.29 0.87 0.0428872 0.0358449 22546 126617 -1 1527 18 784 1304 70997 17006 2.46797 2.46797 -107.154 -2.46797 0 0 666494. 2306.21 0.28 0.03 0.11 -1 -1 0.28 0.0111268 0.00982292 124 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.39 vpr 64.39 MiB 0.03 7068 -1 -1 1 0.04 -1 -1 34344 -1 -1 43 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65940 32 32 438 320 1 235 107 17 17 289 -1 unnamed_device 25.8 MiB 0.16 1334 20347 5362 13158 1827 64.4 MiB 0.17 0.00 4.95502 -168.119 -4.95502 4.95502 0.88 0.000260299 0.000208384 0.0236534 0.0191094 -1 -1 -1 -1 30 3282 23 6.64007e+06 539994 526063. 1820.29 1.07 0.0712297 0.0593049 22546 126617 -1 2570 22 2061 3452 211185 45460 4.62329 4.62329 -171.941 -4.62329 0 0 666494. 2306.21 0.27 0.07 0.11 -1 -1 0.27 0.0180782 0.0158252 190 34 128 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.07 vpr 63.68 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 33872 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65212 32 32 283 225 1 162 81 17 17 289 -1 unnamed_device 24.9 MiB 0.11 623 13731 4925 6406 2400 63.7 MiB 0.09 0.00 3.5061 -118.666 -3.5061 3.5061 0.85 0.000186015 0.000147957 0.0159127 0.0128275 -1 -1 -1 -1 32 1971 24 6.64007e+06 213486 554710. 1919.41 0.94 0.0493014 0.0409629 22834 132086 -1 1480 24 1366 2172 125687 32312 3.17817 3.17817 -118.014 -3.17817 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.0134802 0.0117294 121 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.21 vpr 63.87 MiB 0.02 7072 -1 -1 1 0.04 -1 -1 33748 -1 -1 32 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65400 30 32 296 244 1 157 94 17 17 289 -1 unnamed_device 25.0 MiB 0.15 846 13087 3844 8172 1071 63.9 MiB 0.09 0.00 3.50322 -113.721 -3.50322 3.50322 0.88 0.000189643 0.000151862 0.013855 0.0112512 -1 -1 -1 -1 28 1910 20 6.64007e+06 401856 500653. 1732.36 0.88 0.0468662 0.0392732 21970 115934 -1 1625 19 901 1600 89445 21481 2.68757 2.68757 -105.677 -2.68757 0 0 612192. 2118.31 0.26 0.06 0.10 -1 -1 0.26 0.0164335 0.0145756 114 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.37 vpr 64.17 MiB 0.04 7372 -1 -1 1 0.04 -1 -1 33680 -1 -1 34 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65712 29 32 393 319 1 182 95 17 17 289 -1 unnamed_device 25.2 MiB 0.24 1003 12839 3224 8329 1286 64.2 MiB 0.10 0.00 3.6803 -109.03 -3.6803 3.6803 0.88 0.000224998 0.000179002 0.0160257 0.0130448 -1 -1 -1 -1 26 2481 18 6.64007e+06 426972 477104. 1650.88 0.87 0.0539759 0.0450894 21682 110474 -1 1994 20 1368 2397 149614 34975 3.01617 3.01617 -109.022 -3.01617 0 0 585099. 2024.56 0.25 0.06 0.10 -1 -1 0.25 0.0168301 0.0148771 134 88 29 29 85 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.50 vpr 64.37 MiB 0.03 6988 -1 -1 1 0.04 -1 -1 34140 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65912 32 32 407 319 1 194 86 17 17 289 -1 unnamed_device 25.6 MiB 0.17 937 11048 2797 7564 687 64.4 MiB 0.09 0.00 4.21976 -143.232 -4.21976 4.21976 0.87 0.000224116 0.000176908 0.0162198 0.0132135 -1 -1 -1 -1 32 2064 24 6.64007e+06 276276 554710. 1919.41 1.01 0.0601819 0.0504569 22834 132086 -1 1768 20 1585 2461 150379 34846 3.63243 3.63243 -140.901 -3.63243 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.018671 0.0163887 152 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.35 vpr 64.34 MiB 0.02 7140 -1 -1 1 0.04 -1 -1 34284 -1 -1 36 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65884 32 32 407 319 1 195 100 17 17 289 -1 unnamed_device 25.6 MiB 0.26 1070 15876 4480 9346 2050 64.3 MiB 0.14 0.00 4.25856 -146.098 -4.25856 4.25856 0.86 0.000234164 0.000186199 0.0192536 0.0154407 -1 -1 -1 -1 32 2599 21 6.64007e+06 452088 554710. 1919.41 0.99 0.0600367 0.0497525 22834 132086 -1 2322 21 1600 2740 173936 39501 3.61523 3.61523 -141.653 -3.61523 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.015469 0.0135641 154 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.36 vpr 64.02 MiB 0.02 6916 -1 -1 1 0.04 -1 -1 34200 -1 -1 32 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65552 32 32 345 287 1 161 96 17 17 289 -1 unnamed_device 25.0 MiB 0.15 863 8856 1892 6516 448 64.0 MiB 0.07 0.00 3.4749 -121.747 -3.4749 3.4749 0.97 0.00019694 0.000155006 0.0103759 0.00839123 -1 -1 -1 -1 32 1940 22 6.64007e+06 401856 554710. 1919.41 0.95 0.0458526 0.0383256 22834 132086 -1 1745 21 1206 1801 118597 27707 2.80957 2.80957 -118.728 -2.80957 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0136014 0.011899 122 65 32 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.09 vpr 63.97 MiB 0.02 7112 -1 -1 1 0.04 -1 -1 34236 -1 -1 17 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65508 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 25.1 MiB 0.21 821 8336 2395 4162 1779 64.0 MiB 0.06 0.00 3.72326 -116.749 -3.72326 3.72326 0.86 0.000192318 0.00015132 0.0110068 0.00888356 -1 -1 -1 -1 32 1824 20 6.64007e+06 213486 554710. 1919.41 0.89 0.0438646 0.0363244 22834 132086 -1 1612 18 957 1711 90139 22392 2.80577 2.80577 -106.974 -2.80577 0 0 701300. 2426.64 0.29 0.04 0.12 -1 -1 0.29 0.0116108 0.0101655 109 90 0 0 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.32 vpr 64.14 MiB 0.03 7088 -1 -1 1 0.05 -1 -1 33788 -1 -1 35 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65676 30 32 374 297 1 186 97 17 17 289 -1 unnamed_device 25.2 MiB 0.18 919 13195 3488 8459 1248 64.1 MiB 0.11 0.00 3.5511 -113.034 -3.5511 3.5511 0.86 0.000222325 0.000175882 0.0161759 0.0130496 -1 -1 -1 -1 26 2226 23 6.64007e+06 439530 477104. 1650.88 0.85 0.0567336 0.0472873 21682 110474 -1 1904 18 1093 1908 108055 26573 3.03897 3.03897 -113.295 -3.03897 0 0 585099. 2024.56 0.25 0.05 0.10 -1 -1 0.25 0.0163004 0.0144592 139 60 60 30 57 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.13 vpr 64.31 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 34224 -1 -1 32 28 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65856 28 32 332 260 1 180 92 17 17 289 -1 unnamed_device 25.5 MiB 0.12 939 14996 4215 8524 2257 64.3 MiB 0.12 0.00 4.39198 -124.88 -4.39198 4.39198 0.88 0.000259392 0.000197166 0.0177125 0.0141569 -1 -1 -1 -1 26 2366 21 6.64007e+06 401856 477104. 1650.88 1.00 0.0545501 0.0452299 21682 110474 -1 1945 18 1136 1905 129674 28556 3.60142 3.60142 -122.128 -3.60142 0 0 585099. 2024.56 0.26 0.05 0.10 -1 -1 0.26 0.0138906 0.0122304 134 34 84 28 28 28 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.10 vpr 64.04 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 33720 -1 -1 19 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65572 30 32 325 273 1 157 81 17 17 289 -1 unnamed_device 25.3 MiB 0.17 812 12506 4081 6359 2066 64.0 MiB 0.09 0.00 3.5343 -115.469 -3.5343 3.5343 0.87 0.000192273 0.000151488 0.0162237 0.0130458 -1 -1 -1 -1 32 1937 21 6.64007e+06 238602 554710. 1919.41 0.91 0.0503033 0.0412744 22834 132086 -1 1726 23 1277 2198 156154 33320 2.60657 2.60657 -105.956 -2.60657 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.0144274 0.0124512 115 63 30 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.42 vpr 64.15 MiB 0.02 7072 -1 -1 1 0.04 -1 -1 33980 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65692 32 32 361 308 1 158 81 17 17 289 -1 unnamed_device 25.1 MiB 0.21 892 11281 2807 6986 1488 64.2 MiB 0.09 0.00 3.6865 -117.315 -3.6865 3.6865 1.00 0.000231686 0.000166095 0.0162594 0.0131115 -1 -1 -1 -1 30 1814 21 6.64007e+06 213486 526063. 1820.29 0.85 0.0531827 0.0438512 22546 126617 -1 1687 17 815 1359 86402 19223 2.67457 2.67457 -106.696 -2.67457 0 0 666494. 2306.21 0.28 0.04 0.11 -1 -1 0.28 0.0130339 0.0114756 114 91 0 0 91 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.41 vpr 64.18 MiB 0.03 7076 -1 -1 1 0.05 -1 -1 34084 -1 -1 37 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65720 31 32 335 251 1 196 100 17 17 289 -1 unnamed_device 25.3 MiB 0.11 1121 19124 6194 10224 2706 64.2 MiB 0.15 0.00 4.18856 -139.706 -4.18856 4.18856 0.88 0.000214268 0.00017099 0.0207053 0.0166982 -1 -1 -1 -1 32 2403 20 6.64007e+06 464646 554710. 1919.41 0.98 0.0593101 0.0495879 22834 132086 -1 2150 18 1442 2433 147746 33172 3.78482 3.78482 -137.835 -3.78482 0 0 701300. 2426.64 0.32 0.05 0.12 -1 -1 0.32 0.0138186 0.0122646 152 4 124 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.36 vpr 64.36 MiB 0.02 7060 -1 -1 1 0.04 -1 -1 34368 -1 -1 36 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65904 32 32 407 319 1 197 100 17 17 289 -1 unnamed_device 25.6 MiB 0.20 1037 18660 5257 10625 2778 64.4 MiB 0.15 0.00 4.17032 -143.358 -4.17032 4.17032 0.91 0.00029491 0.00022015 0.0225101 0.0181099 -1 -1 -1 -1 32 2397 19 6.64007e+06 452088 554710. 1919.41 1.02 0.0655858 0.0543825 22834 132086 -1 2132 21 1659 2930 178184 40209 3.47723 3.47723 -135.648 -3.47723 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0167113 0.0146237 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.52 vpr 64.65 MiB 0.02 7080 -1 -1 1 0.04 -1 -1 33900 -1 -1 36 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66204 32 32 407 319 1 194 100 17 17 289 -1 unnamed_device 25.8 MiB 0.20 1085 15876 4268 10377 1231 64.7 MiB 0.12 0.00 4.15553 -144.194 -4.15553 4.15553 0.91 0.000240247 0.000191609 0.0187673 0.0150693 -1 -1 -1 -1 32 2615 21 6.64007e+06 452088 554710. 1919.41 0.99 0.0614132 0.0510024 22834 132086 -1 2178 22 1570 2540 145027 33425 3.62623 3.62623 -139.984 -3.62623 0 0 701300. 2426.64 0.30 0.07 0.12 -1 -1 0.30 0.0193922 0.0171044 153 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 4.79 vpr 64.35 MiB 0.02 7220 -1 -1 1 0.04 -1 -1 33948 -1 -1 38 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65896 32 32 399 315 1 196 102 17 17 289 -1 unnamed_device 25.5 MiB 0.20 958 7956 1551 5183 1222 64.4 MiB 0.06 0.00 4.17056 -134.333 -4.17056 4.17056 0.91 0.000227732 0.000179441 0.0103805 0.00847939 -1 -1 -1 -1 28 3255 26 6.64007e+06 477204 500653. 1732.36 1.52 0.0582608 0.0488359 21970 115934 -1 2421 18 1473 2405 166313 43423 3.91283 3.91283 -143.762 -3.91283 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0147235 0.012955 149 65 60 30 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.02 vpr 64.05 MiB 0.02 7176 -1 -1 1 0.04 -1 -1 34040 -1 -1 19 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65588 30 32 296 244 1 156 81 17 17 289 -1 unnamed_device 25.2 MiB 0.15 840 12856 4254 6466 2136 64.1 MiB 0.08 0.00 3.4921 -115.538 -3.4921 3.4921 0.85 0.000177735 0.000140207 0.0148918 0.0119814 -1 -1 -1 -1 32 1934 20 6.64007e+06 238602 554710. 1919.41 0.89 0.0448034 0.037139 22834 132086 -1 1742 21 1067 1755 114510 25571 2.86097 2.86097 -113.552 -2.86097 0 0 701300. 2426.64 0.29 0.04 0.12 -1 -1 0.29 0.012042 0.0105224 113 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.42 vpr 64.37 MiB 0.02 7184 -1 -1 1 0.04 -1 -1 34140 -1 -1 24 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65916 30 32 383 303 1 191 86 17 17 289 -1 unnamed_device 25.4 MiB 0.23 996 13127 3599 7422 2106 64.4 MiB 0.10 0.00 4.20393 -135.69 -4.20393 4.20393 0.88 0.00027076 0.000224256 0.0185437 0.0151405 -1 -1 -1 -1 26 2442 22 6.64007e+06 301392 477104. 1650.88 1.03 0.0631652 0.0531875 21682 110474 -1 2103 20 1623 2452 154154 35629 3.91003 3.91003 -142.145 -3.91003 0 0 585099. 2024.56 0.25 0.06 0.10 -1 -1 0.25 0.0164675 0.0144506 146 63 60 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.63 vpr 64.98 MiB 0.02 7308 -1 -1 1 0.04 -1 -1 34508 -1 -1 41 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66544 32 32 469 381 1 198 105 17 17 289 -1 unnamed_device 25.8 MiB 0.24 1061 10232 2187 7405 640 65.0 MiB 0.10 0.00 4.16036 -143.59 -4.16036 4.16036 0.93 0.000331941 0.00027393 0.0146909 0.0120867 -1 -1 -1 -1 26 3028 29 6.64007e+06 514878 477104. 1650.88 1.16 0.0688574 0.0579107 21682 110474 -1 2417 22 1822 3013 193726 44007 3.88563 3.88563 -151.062 -3.88563 0 0 585099. 2024.56 0.25 0.07 0.10 -1 -1 0.25 0.0186923 0.016134 156 127 0 0 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.13 vpr 64.30 MiB 0.02 7316 -1 -1 1 0.04 -1 -1 34420 -1 -1 33 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65848 31 32 425 341 1 189 96 17 17 289 -1 unnamed_device 25.6 MiB 0.14 924 14769 3776 9247 1746 64.3 MiB 0.12 0.00 4.18868 -135.93 -4.18868 4.18868 0.85 0.000244569 0.000194683 0.0192404 0.0155446 -1 -1 -1 -1 32 2310 19 6.64007e+06 414414 554710. 1919.41 0.93 0.0599186 0.0496362 22834 132086 -1 1909 20 1310 2189 117944 28698 3.68663 3.68663 -134.444 -3.68663 0 0 701300. 2426.64 0.31 0.05 0.12 -1 -1 0.31 0.015225 0.0132637 148 94 31 31 93 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.24 vpr 64.32 MiB 0.03 7284 -1 -1 1 0.04 -1 -1 33872 -1 -1 32 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65860 30 32 404 328 1 182 94 17 17 289 -1 unnamed_device 25.6 MiB 0.18 981 15217 4561 7983 2673 64.3 MiB 0.11 0.00 3.6613 -113.514 -3.6613 3.6613 0.88 0.000226532 0.000178468 0.0183776 0.0147226 -1 -1 -1 -1 32 2091 18 6.64007e+06 401856 554710. 1919.41 0.93 0.0597869 0.049415 22834 132086 -1 1791 20 1074 1761 94302 22269 2.87797 2.87797 -109.572 -2.87797 0 0 701300. 2426.64 0.31 0.04 0.12 -1 -1 0.31 0.0146751 0.0128001 138 92 26 26 90 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.32 vpr 64.11 MiB 0.02 7244 -1 -1 1 0.04 -1 -1 33964 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65648 32 32 407 319 1 198 86 17 17 289 -1 unnamed_device 25.3 MiB 0.32 1125 9725 2385 6614 726 64.1 MiB 0.09 0.00 4.21673 -144.443 -4.21673 4.21673 0.86 0.000227194 0.000179855 0.013718 0.0110989 -1 -1 -1 -1 30 2755 23 6.64007e+06 276276 526063. 1820.29 0.99 0.0545957 0.0453588 22546 126617 -1 2426 18 1756 2988 165500 39165 3.63843 3.63843 -145.722 -3.63843 0 0 666494. 2306.21 0.28 0.05 0.11 -1 -1 0.28 0.0146708 0.0129422 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.40 vpr 64.34 MiB 0.02 7216 -1 -1 1 0.04 -1 -1 34012 -1 -1 36 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65884 29 32 387 316 1 179 97 17 17 289 -1 unnamed_device 25.4 MiB 0.18 964 18079 5198 10699 2182 64.3 MiB 0.12 0.00 3.5353 -109.347 -3.5353 3.5353 0.89 0.000211216 0.000166725 0.0198423 0.0157529 -1 -1 -1 -1 32 2001 18 6.64007e+06 452088 554710. 1919.41 0.95 0.0622356 0.0517002 22834 132086 -1 1793 18 1207 1991 113093 26929 2.78997 2.78997 -103.83 -2.78997 0 0 701300. 2426.64 0.33 0.05 0.12 -1 -1 0.33 0.0154254 0.013583 136 88 26 26 85 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.20 vpr 63.82 MiB 0.02 6864 -1 -1 1 0.04 -1 -1 33836 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65356 32 32 283 225 1 156 81 17 17 289 -1 unnamed_device 25.0 MiB 0.10 799 9356 2113 6168 1075 63.8 MiB 0.07 0.00 3.4921 -122.483 -3.4921 3.4921 0.89 0.000177534 0.000140445 0.0116538 0.00955447 -1 -1 -1 -1 32 1829 18 6.64007e+06 213486 554710. 1919.41 0.90 0.0422085 0.0355861 22834 132086 -1 1719 19 1097 1726 113875 26031 2.77657 2.77657 -117.584 -2.77657 0 0 701300. 2426.64 0.31 0.05 0.13 -1 -1 0.31 0.0138212 0.0123438 115 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.34 vpr 64.38 MiB 0.02 7236 -1 -1 1 0.04 -1 -1 33752 -1 -1 35 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65920 32 32 407 319 1 194 99 17 17 289 -1 unnamed_device 25.6 MiB 0.29 992 16743 5741 8435 2567 64.4 MiB 0.13 0.00 4.25856 -144.485 -4.25856 4.25856 0.88 0.000238178 0.000187781 0.0203483 0.0163239 -1 -1 -1 -1 28 2713 24 6.64007e+06 439530 500653. 1732.36 0.97 0.0637637 0.0527494 21970 115934 -1 2167 22 1661 2731 178638 41444 3.84763 3.84763 -145.268 -3.84763 0 0 612192. 2118.31 0.26 0.06 0.10 -1 -1 0.26 0.0166111 0.0144753 152 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.48 vpr 64.31 MiB 0.02 7180 -1 -1 1 0.04 -1 -1 34016 -1 -1 23 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65852 32 32 407 319 1 201 87 17 17 289 -1 unnamed_device 25.5 MiB 0.23 1054 17367 5167 10302 1898 64.3 MiB 0.14 0.00 4.21976 -145.962 -4.21976 4.21976 0.89 0.000249179 0.000198727 0.0241911 0.0195948 -1 -1 -1 -1 32 2231 22 6.64007e+06 288834 554710. 1919.41 0.97 0.0680152 0.0566267 22834 132086 -1 2043 20 1590 2588 163886 39062 3.78383 3.78383 -147.702 -3.78383 0 0 701300. 2426.64 0.32 0.06 0.12 -1 -1 0.32 0.0176871 0.0155561 158 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.23 vpr 64.23 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 33876 -1 -1 30 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65768 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 25.4 MiB 0.17 691 7975 1531 6145 299 64.2 MiB 0.06 0.00 3.6913 -111.241 -3.6913 3.6913 0.87 0.000210756 0.000171302 0.0086359 0.00697742 -1 -1 -1 -1 26 2061 22 6.64007e+06 376740 477104. 1650.88 1.17 0.0510627 0.04311 21682 110474 -1 1804 20 988 1512 104440 25813 2.82777 2.82777 -109.632 -2.82777 0 0 585099. 2024.56 0.24 0.04 0.10 -1 -1 0.24 0.0115712 0.0100804 112 55 32 32 54 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.27 vpr 63.71 MiB 0.02 7160 -1 -1 1 0.05 -1 -1 34152 -1 -1 18 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65236 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 25.0 MiB 0.11 653 13381 4684 6039 2658 63.7 MiB 0.09 0.00 3.5533 -116.629 -3.5533 3.5533 0.86 0.000172257 0.000136062 0.0153824 0.012466 -1 -1 -1 -1 32 1750 21 6.64007e+06 226044 554710. 1919.41 0.92 0.0489869 0.0411245 22834 132086 -1 1476 19 1204 1906 113123 28242 3.20137 3.20137 -114.741 -3.20137 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0139591 0.0124381 118 4 93 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.23 vpr 64.32 MiB 0.02 7008 -1 -1 1 0.04 -1 -1 33892 -1 -1 33 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65868 32 32 381 303 1 188 97 17 17 289 -1 unnamed_device 25.3 MiB 0.20 927 16303 4785 8793 2725 64.3 MiB 0.12 0.00 4.16476 -135.871 -4.16476 4.16476 0.86 0.000214425 0.000169547 0.0186242 0.0149077 -1 -1 -1 -1 32 2140 22 6.64007e+06 414414 554710. 1919.41 0.94 0.0578515 0.0477727 22834 132086 -1 1889 20 1256 1910 116840 27528 3.41802 3.41802 -125.912 -3.41802 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.0157401 0.0137388 139 59 60 32 58 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.32 vpr 64.27 MiB 0.02 7348 -1 -1 1 0.04 -1 -1 34292 -1 -1 32 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65816 32 32 406 330 1 190 96 17 17 289 -1 unnamed_device 25.3 MiB 0.14 1051 17397 5163 9750 2484 64.3 MiB 0.13 0.00 4.41596 -136.112 -4.41596 4.41596 0.86 0.000231919 0.000184321 0.0204928 0.016475 -1 -1 -1 -1 26 2810 21 6.64007e+06 401856 477104. 1650.88 1.18 0.0640676 0.0533102 21682 110474 -1 2235 21 1299 2191 157955 34760 3.91883 3.91883 -135.985 -3.91883 0 0 585099. 2024.56 0.25 0.05 0.10 -1 -1 0.25 0.0148661 0.0129345 136 88 28 28 88 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.52 vpr 63.97 MiB 0.03 7192 -1 -1 1 0.04 -1 -1 34004 -1 -1 37 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65504 32 32 399 285 1 228 101 17 17 289 -1 unnamed_device 25.4 MiB 0.12 1159 10441 2545 7247 649 64.0 MiB 0.10 0.00 4.95022 -163.094 -4.95022 4.95022 0.95 0.000238937 0.000190625 0.0140771 0.0116276 -1 -1 -1 -1 32 3024 24 6.64007e+06 464646 554710. 1919.41 1.03 0.0587592 0.0495233 22834 132086 -1 2550 21 1946 3237 217198 49782 4.60829 4.60829 -165.814 -4.60829 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0175796 0.0154733 179 3 156 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.17 vpr 64.06 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33872 -1 -1 34 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65596 30 32 371 295 1 184 96 17 17 289 -1 unnamed_device 25.1 MiB 0.17 809 10170 2335 6303 1532 64.1 MiB 0.06 0.00 3.8005 -110.812 -3.8005 3.8005 0.86 0.000211319 0.000167158 0.0118884 0.0095831 -1 -1 -1 -1 32 2143 22 6.64007e+06 426972 554710. 1919.41 0.95 0.0510521 0.042662 22834 132086 -1 1634 19 1303 2105 121705 30432 2.94317 2.94317 -108.414 -2.94317 0 0 701300. 2426.64 0.32 0.04 0.12 -1 -1 0.32 0.0143888 0.0126424 138 59 60 30 56 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.15 vpr 63.90 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 34416 -1 -1 21 27 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65432 27 32 269 226 1 143 80 17 17 289 -1 unnamed_device 24.9 MiB 0.09 529 12292 5081 5761 1450 63.9 MiB 0.07 0.00 3.54427 -98.353 -3.54427 3.54427 0.87 0.000169159 0.000133488 0.0140685 0.0113645 -1 -1 -1 -1 32 1446 26 6.64007e+06 263718 554710. 1919.41 0.98 0.0456466 0.0379906 22834 132086 -1 1143 22 982 1487 99047 23800 2.79977 2.79977 -92.9425 -2.79977 0 0 701300. 2426.64 0.29 0.04 0.13 -1 -1 0.29 0.0107466 0.00934659 107 34 54 27 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.61 vpr 64.55 MiB 0.03 7288 -1 -1 1 0.04 -1 -1 34132 -1 -1 42 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66104 32 32 493 378 1 232 106 17 17 289 -1 unnamed_device 25.9 MiB 0.19 1462 20856 5895 12562 2399 64.6 MiB 0.20 0.00 4.52196 -148.077 -4.52196 4.52196 0.87 0.000286277 0.00021701 0.0266278 0.0213372 -1 -1 -1 -1 30 3434 23 6.64007e+06 527436 526063. 1820.29 1.16 0.0895068 0.0755703 22546 126617 -1 2882 20 1953 3609 227728 48875 3.83863 3.83863 -145.246 -3.83863 0 0 666494. 2306.21 0.30 0.07 0.12 -1 -1 0.30 0.0186118 0.0162783 186 95 62 31 95 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.22 vpr 64.32 MiB 0.02 7212 -1 -1 1 0.04 -1 -1 34140 -1 -1 22 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65860 31 32 455 371 1 188 85 17 17 289 -1 unnamed_device 25.5 MiB 0.30 983 10501 2625 7195 681 64.3 MiB 0.09 0.00 4.43796 -139.728 -4.43796 4.43796 0.85 0.00023457 0.000184715 0.0160309 0.012969 -1 -1 -1 -1 32 2330 19 6.64007e+06 276276 554710. 1919.41 0.95 0.0563085 0.0465816 22834 132086 -1 2080 19 1285 2105 131522 30636 3.86303 3.86303 -142.801 -3.86303 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.015414 0.0134999 145 124 0 0 124 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.05 vpr 64.25 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 33796 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65792 32 32 355 304 1 150 80 17 17 289 -1 unnamed_device 25.3 MiB 0.23 851 9540 2516 6274 750 64.2 MiB 0.07 0.00 3.72946 -115.235 -3.72946 3.72946 0.85 0.000199491 0.000156194 0.0128658 0.0103524 -1 -1 -1 -1 32 1856 20 6.64007e+06 200928 554710. 1919.41 0.87 0.0476618 0.0394235 22834 132086 -1 1679 16 644 994 63164 14955 2.68397 2.68397 -105.845 -2.68397 0 0 701300. 2426.64 0.30 0.03 0.12 -1 -1 0.30 0.0125449 0.0111185 109 89 0 0 89 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.45 vpr 64.20 MiB 0.02 7168 -1 -1 1 0.04 -1 -1 34168 -1 -1 33 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65736 32 32 364 282 1 196 97 17 17 289 -1 unnamed_device 25.2 MiB 0.12 1023 18745 6322 9498 2925 64.2 MiB 0.14 0.00 4.46396 -139.111 -4.46396 4.46396 0.89 0.000209619 0.000165715 0.0215712 0.0173186 -1 -1 -1 -1 28 2964 23 6.64007e+06 414414 500653. 1732.36 1.09 0.0650414 0.0541968 21970 115934 -1 2275 21 1444 2227 169602 37184 3.84102 3.84102 -135.67 -3.84102 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0156578 0.0137902 147 34 90 30 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.31 vpr 64.48 MiB 0.04 7380 -1 -1 1 0.04 -1 -1 34448 -1 -1 38 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66032 31 32 443 336 1 220 101 17 17 289 -1 unnamed_device 25.9 MiB 0.19 1135 20076 5790 11566 2720 64.5 MiB 0.15 0.00 4.51716 -144.659 -4.51716 4.51716 0.86 0.000245612 0.000193049 0.0242368 0.0193645 -1 -1 -1 -1 32 2551 21 6.64007e+06 477204 554710. 1919.41 0.95 0.0679181 0.0560487 22834 132086 -1 2236 18 1548 2456 140504 33387 3.59562 3.59562 -139.594 -3.59562 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.0170489 0.0150186 173 64 87 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.53 vpr 64.42 MiB 0.02 7228 -1 -1 1 0.04 -1 -1 33744 -1 -1 34 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65968 30 32 373 297 1 186 96 17 17 289 -1 unnamed_device 25.4 MiB 0.18 923 11484 2608 8162 714 64.4 MiB 0.10 0.00 3.73061 -110.59 -3.73061 3.73061 0.88 0.000231305 0.00018633 0.0145757 0.0119053 -1 -1 -1 -1 26 2828 26 6.64007e+06 426972 477104. 1650.88 1.23 0.0583959 0.0487281 21682 110474 -1 2132 23 1645 2941 193856 51763 3.24137 3.24137 -113.013 -3.24137 0 0 585099. 2024.56 0.26 0.06 0.10 -1 -1 0.26 0.0156967 0.0135613 135 61 58 30 58 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 7.90 vpr 64.64 MiB 0.02 7168 -1 -1 1 0.04 -1 -1 34248 -1 -1 43 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66188 32 32 407 319 1 201 107 17 17 289 -1 unnamed_device 25.6 MiB 0.18 1008 13516 3637 9135 744 64.6 MiB 0.11 0.00 4.19956 -142.899 -4.19956 4.19956 0.89 0.000227666 0.00017962 0.0153254 0.012387 -1 -1 -1 -1 26 3198 46 6.64007e+06 539994 477104. 1650.88 4.40 0.130313 0.109247 21682 110474 -1 2350 24 2056 3441 234066 66801 3.94803 3.94803 -153.959 -3.94803 0 0 585099. 2024.56 0.27 0.08 0.11 -1 -1 0.27 0.0188204 0.0164132 158 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.47 vpr 64.48 MiB 0.03 7024 -1 -1 1 0.04 -1 -1 34036 -1 -1 40 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66024 32 32 405 318 1 200 104 17 17 289 -1 unnamed_device 25.6 MiB 0.18 988 17184 5218 8807 3159 64.5 MiB 0.13 0.00 3.62559 -123.648 -3.62559 3.62559 0.85 0.000262181 0.000212009 0.0196698 0.0158139 -1 -1 -1 -1 28 2903 40 6.64007e+06 502320 500653. 1732.36 1.21 0.0678937 0.0560273 21970 115934 -1 2226 21 1439 2284 161332 37219 2.89997 2.89997 -117.754 -2.89997 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0155528 0.0135179 157 65 63 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.29 vpr 63.91 MiB 0.02 7172 -1 -1 1 0.04 -1 -1 34184 -1 -1 18 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65444 29 32 287 238 1 134 79 17 17 289 -1 unnamed_device 25.1 MiB 0.10 627 13430 5541 5355 2534 63.9 MiB 0.08 0.00 3.6785 -106.673 -3.6785 3.6785 0.88 0.000178679 0.000140091 0.0163139 0.0130466 -1 -1 -1 -1 32 1417 18 6.64007e+06 226044 554710. 1919.41 0.94 0.0466379 0.0387415 22834 132086 -1 1241 19 745 1124 65511 15515 2.65657 2.65657 -98.9797 -2.65657 0 0 701300. 2426.64 0.32 0.04 0.13 -1 -1 0.32 0.0125119 0.0111006 95 34 58 29 29 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.02 vpr 63.81 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 33916 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65344 32 32 334 290 1 154 81 17 17 289 -1 unnamed_device 25.0 MiB 0.19 811 6206 1352 4542 312 63.8 MiB 0.05 0.00 4.00083 -111.764 -4.00083 4.00083 0.86 0.000192444 0.000151392 0.00827682 0.00668931 -1 -1 -1 -1 32 1778 20 6.64007e+06 213486 554710. 1919.41 0.88 0.0402113 0.0332945 22834 132086 -1 1689 19 781 1167 81919 18448 2.93697 2.93697 -106.988 -2.93697 0 0 701300. 2426.64 0.29 0.04 0.12 -1 -1 0.29 0.011588 0.0100673 110 82 0 0 82 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.48 vpr 64.17 MiB 0.03 7216 -1 -1 1 0.05 -1 -1 34276 -1 -1 38 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65712 31 32 365 281 1 196 101 17 17 289 -1 unnamed_device 25.2 MiB 0.15 1140 17961 4896 10693 2372 64.2 MiB 0.13 0.00 4.56916 -143.41 -4.56916 4.56916 0.89 0.000220724 0.000174225 0.0194397 0.0156279 -1 -1 -1 -1 30 2480 22 6.64007e+06 477204 526063. 1820.29 0.98 0.059867 0.0498119 22546 126617 -1 2142 19 1456 2447 150989 33118 3.78563 3.78563 -139.153 -3.78563 0 0 666494. 2306.21 0.30 0.06 0.11 -1 -1 0.30 0.015833 0.0139266 151 34 93 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.20 vpr 63.87 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 34084 -1 -1 31 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65400 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 25.0 MiB 0.20 620 10442 2502 7352 588 63.9 MiB 0.07 0.00 3.6803 -100.526 -3.6803 3.6803 0.87 0.000187072 0.000150115 0.0108713 0.00876626 -1 -1 -1 -1 26 1974 24 6.64007e+06 389298 477104. 1650.88 1.04 0.0406868 0.0334845 21682 110474 -1 1539 15 894 1454 92703 23294 3.26657 3.26657 -107.274 -3.26657 0 0 585099. 2024.56 0.25 0.03 0.10 -1 -1 0.25 0.00910889 0.00799628 108 56 29 29 52 26 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.33 vpr 63.96 MiB 0.02 6840 -1 -1 1 0.04 -1 -1 33896 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65500 32 32 314 256 1 160 81 17 17 289 -1 unnamed_device 25.1 MiB 0.17 691 13906 4599 7385 1922 64.0 MiB 0.10 0.00 3.53127 -120.288 -3.53127 3.53127 0.93 0.000195233 0.000155092 0.01788 0.0145408 -1 -1 -1 -1 32 1946 23 6.64007e+06 213486 554710. 1919.41 0.94 0.0516459 0.0430359 22834 132086 -1 1615 22 1414 2340 136519 32243 2.89397 2.89397 -116.882 -2.89397 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0135935 0.0118808 118 34 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.35 vpr 64.38 MiB 0.03 7264 -1 -1 1 0.05 -1 -1 33992 -1 -1 38 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65924 31 32 387 307 1 189 101 17 17 289 -1 unnamed_device 25.4 MiB 0.17 999 13261 3446 8635 1180 64.4 MiB 0.11 0.00 3.5665 -119.865 -3.5665 3.5665 0.89 0.000230866 0.000182599 0.0162005 0.0130152 -1 -1 -1 -1 30 2083 21 6.64007e+06 477204 526063. 1820.29 0.90 0.0556 0.0461182 22546 126617 -1 1827 22 1534 2359 132012 30369 2.96017 2.96017 -115.637 -2.96017 0 0 666494. 2306.21 0.29 0.05 0.11 -1 -1 0.29 0.0163316 0.0142716 144 64 58 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.05 vpr 63.89 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 33984 -1 -1 17 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65420 31 32 308 262 1 147 80 17 17 289 -1 unnamed_device 25.1 MiB 0.19 869 9368 2508 6076 784 63.9 MiB 0.07 0.00 3.34153 -105.882 -3.34153 3.34153 0.86 0.000229262 0.00019097 0.0116431 0.00942741 -1 -1 -1 -1 32 1866 23 6.64007e+06 213486 554710. 1919.41 0.90 0.0443576 0.0368834 22834 132086 -1 1656 18 876 1510 96218 21620 2.68277 2.68277 -105.301 -2.68277 0 0 701300. 2426.64 0.29 0.04 0.12 -1 -1 0.29 0.01071 0.00932685 106 55 31 31 53 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 7.59 vpr 64.20 MiB 0.02 7084 -1 -1 1 0.04 -1 -1 34136 -1 -1 33 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65740 32 32 383 307 1 184 97 17 17 289 -1 unnamed_device 25.2 MiB 0.18 879 9865 2512 6573 780 64.2 MiB 0.08 0.00 3.57229 -117.612 -3.57229 3.57229 0.90 0.000219077 0.000173355 0.0125769 0.0102295 -1 -1 -1 -1 26 3280 36 6.64007e+06 414414 477104. 1650.88 4.37 0.104752 0.0871642 21682 110474 -1 2003 21 1289 2229 173884 48268 3.07017 3.07017 -117.232 -3.07017 0 0 585099. 2024.56 0.27 0.06 0.10 -1 -1 0.27 0.0147174 0.0128609 137 65 52 26 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.46 vpr 64.32 MiB 0.02 7196 -1 -1 1 0.04 -1 -1 33936 -1 -1 37 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65860 31 32 422 339 1 195 100 17 17 289 -1 unnamed_device 25.5 MiB 0.27 885 10772 2451 7753 568 64.3 MiB 0.09 0.00 3.7525 -117.99 -3.7525 3.7525 0.88 0.000229301 0.000179619 0.0130518 0.010463 -1 -1 -1 -1 26 2623 27 6.64007e+06 464646 477104. 1650.88 1.18 0.0620257 0.05131 21682 110474 -1 2043 25 1941 2933 232283 73792 3.30757 3.30757 -127.372 -3.30757 0 0 585099. 2024.56 0.25 0.07 0.10 -1 -1 0.25 0.0180795 0.0154506 149 93 31 31 92 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.31 vpr 63.94 MiB 0.02 6904 -1 -1 1 0.04 -1 -1 33736 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65472 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 25.1 MiB 0.19 816 8626 2345 5890 391 63.9 MiB 0.07 0.00 3.06096 -106.925 -3.06096 3.06096 0.95 0.000193813 0.000153913 0.0118941 0.00970485 -1 -1 -1 -1 32 1904 19 6.64007e+06 226044 554710. 1919.41 0.92 0.0467999 0.039306 22834 132086 -1 1699 21 1117 1821 116745 26571 2.62357 2.62357 -105.22 -2.62357 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.014163 0.0123529 115 61 32 32 60 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.06 vpr 64.18 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 33752 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65716 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 25.2 MiB 0.20 920 11296 3024 7326 946 64.2 MiB 0.08 0.00 3.5031 -121.121 -3.5031 3.5031 0.86 0.000193365 0.000152104 0.0145439 0.0117398 -1 -1 -1 -1 30 2213 19 6.64007e+06 226044 526063. 1820.29 0.90 0.0493196 0.0409988 22546 126617 -1 1909 18 1150 1903 117299 26636 2.93097 2.93097 -116.249 -2.93097 0 0 666494. 2306.21 0.28 0.04 0.12 -1 -1 0.28 0.0124707 0.0109331 121 63 32 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.31 vpr 64.30 MiB 0.03 7228 -1 -1 1 0.04 -1 -1 34120 -1 -1 38 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65848 32 32 407 319 1 198 102 17 17 289 -1 unnamed_device 25.3 MiB 0.17 1027 12240 2965 8371 904 64.3 MiB 0.10 0.00 4.25676 -144.495 -4.25676 4.25676 0.86 0.000240998 0.000190721 0.0149571 0.012111 -1 -1 -1 -1 32 2439 23 6.64007e+06 477204 554710. 1919.41 1.02 0.0577898 0.0480186 22834 132086 -1 2110 21 1599 2398 140437 33858 3.60243 3.60243 -141.509 -3.60243 0 0 701300. 2426.64 0.30 0.05 0.12 -1 -1 0.30 0.015313 0.0133721 156 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.15 vpr 64.27 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 34272 -1 -1 34 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65816 29 32 367 293 1 183 95 17 17 289 -1 unnamed_device 25.3 MiB 0.16 1020 16079 4107 10319 1653 64.3 MiB 0.12 0.00 3.72052 -109.725 -3.72052 3.72052 0.87 0.00022959 0.000175625 0.0188595 0.0150887 -1 -1 -1 -1 32 2087 23 6.64007e+06 426972 554710. 1919.41 0.91 0.0585367 0.048494 22834 132086 -1 1904 18 1088 1735 96314 23271 2.84497 2.84497 -106.604 -2.84497 0 0 701300. 2426.64 0.32 0.04 0.12 -1 -1 0.32 0.0132667 0.0116569 135 62 56 29 58 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.33 vpr 64.45 MiB 0.02 7376 -1 -1 1 0.04 -1 -1 34168 -1 -1 39 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65992 32 32 469 381 1 200 103 17 17 289 -1 unnamed_device 25.5 MiB 0.26 937 9020 1835 6701 484 64.4 MiB 0.08 0.00 4.29776 -145.038 -4.29776 4.29776 0.90 0.000247013 0.000194277 0.0114251 0.00919374 -1 -1 -1 -1 32 2387 22 6.64007e+06 489762 554710. 1919.41 0.99 0.0563489 0.0467413 22834 132086 -1 2071 23 1697 2672 154136 37642 3.75863 3.75863 -143.561 -3.75863 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0175334 0.0151179 158 127 0 0 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 4.06 vpr 63.88 MiB 0.02 7112 -1 -1 1 0.04 -1 -1 34032 -1 -1 17 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65416 31 32 259 212 1 146 80 17 17 289 -1 unnamed_device 24.9 MiB 0.10 804 11948 3967 6404 1577 63.9 MiB 0.08 0.00 3.08296 -103.529 -3.08296 3.08296 0.92 0.000170877 0.000135673 0.0148738 0.0121354 -1 -1 -1 -1 32 1740 19 6.64007e+06 213486 554710. 1919.41 0.91 0.045141 0.0377923 22834 132086 -1 1631 18 764 1218 81797 19289 2.80917 2.80917 -105.592 -2.80917 0 0 701300. 2426.64 0.30 0.04 0.13 -1 -1 0.30 0.0108504 0.00952096 106 4 85 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.56 vpr 64.30 MiB 0.03 7256 -1 -1 1 0.04 -1 -1 33788 -1 -1 35 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65840 32 32 418 338 1 190 99 17 17 289 -1 unnamed_device 25.5 MiB 0.17 998 18111 4956 10747 2408 64.3 MiB 0.13 0.00 4.26296 -139.632 -4.26296 4.26296 0.87 0.000234777 0.000185365 0.0221881 0.0177595 -1 -1 -1 -1 26 2618 23 6.64007e+06 439530 477104. 1650.88 1.18 0.0755246 0.0635089 21682 110474 -1 2140 21 1575 2267 165127 38345 3.79503 3.79503 -138.561 -3.79503 0 0 585099. 2024.56 0.24 0.06 0.09 -1 -1 0.24 0.0170802 0.0148888 144 92 28 28 92 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.37 vpr 64.14 MiB 0.02 7196 -1 -1 1 0.04 -1 -1 33932 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65676 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 25.4 MiB 0.28 734 13381 4309 7077 1995 64.1 MiB 0.09 0.00 3.54047 -121.881 -3.54047 3.54047 0.88 0.000205881 0.00016231 0.0196371 0.0159474 -1 -1 -1 -1 28 2081 23 6.64007e+06 213486 500653. 1732.36 0.90 0.0597306 0.0498923 21970 115934 -1 1725 20 1287 1882 126348 29174 2.89997 2.89997 -118.217 -2.89997 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0130573 0.0113721 114 96 0 0 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.41 vpr 64.39 MiB 0.03 7088 -1 -1 1 0.04 -1 -1 34164 -1 -1 37 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65932 32 32 401 316 1 196 101 17 17 289 -1 unnamed_device 25.4 MiB 0.18 1060 9736 1961 7168 607 64.4 MiB 0.08 0.00 3.51212 -122.885 -3.51212 3.51212 0.88 0.000222726 0.000175722 0.0125685 0.0102996 -1 -1 -1 -1 26 2722 22 6.64007e+06 464646 477104. 1650.88 1.04 0.0605853 0.0511951 21682 110474 -1 2283 20 1346 1924 137623 31055 2.99937 2.99937 -123.86 -2.99937 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.0190909 0.0169345 151 65 61 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 4.56 vpr 64.48 MiB 0.03 7320 -1 -1 1 0.04 -1 -1 34364 -1 -1 45 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66024 32 32 500 382 1 232 109 17 17 289 -1 unnamed_device 26.0 MiB 0.25 1244 16489 4012 10933 1544 64.5 MiB 0.14 0.00 4.96651 -168.366 -4.96651 4.96651 0.87 0.000288065 0.000229579 0.0224214 0.0182557 -1 -1 -1 -1 26 3331 25 6.64007e+06 565110 477104. 1650.88 1.07 0.0755519 0.0630738 21682 110474 -1 2710 22 2295 3724 240942 54867 4.68148 4.68148 -171.314 -4.68148 0 0 585099. 2024.56 0.26 0.08 0.10 -1 -1 0.26 0.0211128 0.018455 188 96 64 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.92 vpr 63.66 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 33740 -1 -1 15 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65188 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 24.9 MiB 0.11 483 10509 2545 7262 702 63.7 MiB 0.05 0.00 2.73878 -81.5531 -2.73878 2.73878 0.86 0.000151596 0.000120137 0.0107733 0.00857158 -1 -1 -1 -1 28 1456 39 6.64007e+06 188370 500653. 1732.36 0.90 0.0432804 0.0358672 21970 115934 -1 1089 14 600 820 56572 16089 1.95331 1.95331 -77.1144 -1.95331 0 0 612192. 2118.31 0.26 0.03 0.11 -1 -1 0.26 0.00763667 0.00665148 83 56 0 0 53 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.13 vpr 63.93 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 34008 -1 -1 17 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65460 30 32 296 244 1 137 79 17 17 289 -1 unnamed_device 25.2 MiB 0.10 791 10388 3354 5416 1618 63.9 MiB 0.07 0.00 3.6895 -113.454 -3.6895 3.6895 0.87 0.0001735 0.000136704 0.0128017 0.0104009 -1 -1 -1 -1 32 1566 17 6.64007e+06 213486 554710. 1919.41 0.90 0.043504 0.0364611 22834 132086 -1 1475 20 897 1391 103007 22158 2.89197 2.89197 -107.197 -2.89197 0 0 701300. 2426.64 0.29 0.04 0.12 -1 -1 0.29 0.0122819 0.010726 97 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.29 vpr 64.18 MiB 0.02 6848 -1 -1 1 0.04 -1 -1 33448 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65720 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 25.3 MiB 0.14 798 13966 5020 6560 2386 64.2 MiB 0.10 0.00 3.4859 -119.604 -3.4859 3.4859 0.88 0.000185736 0.000146197 0.0170562 0.0137718 -1 -1 -1 -1 32 2230 25 6.64007e+06 226044 554710. 1919.41 0.97 0.0542637 0.0452993 22834 132086 -1 1831 22 1321 2366 147698 35175 2.94077 2.94077 -117.638 -2.94077 0 0 701300. 2426.64 0.30 0.06 0.12 -1 -1 0.30 0.0151166 0.0133177 126 34 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.99 vpr 63.79 MiB 0.02 6904 -1 -1 1 0.05 -1 -1 34092 -1 -1 34 25 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65320 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 24.8 MiB 0.09 678 12127 3168 7672 1287 63.8 MiB 0.08 0.00 3.4089 -91.215 -3.4089 3.4089 0.90 0.000168491 0.000134753 0.0116586 0.00946704 -1 -1 -1 -1 26 1692 19 6.64007e+06 426972 477104. 1650.88 0.90 0.0389972 0.0325536 21682 110474 -1 1492 19 924 1518 92505 21415 2.76557 2.76557 -92.2391 -2.76557 0 0 585099. 2024.56 0.26 0.04 0.10 -1 -1 0.26 0.0105529 0.00916501 103 34 50 25 25 25 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.40 vpr 64.48 MiB 0.03 7228 -1 -1 1 0.06 -1 -1 34164 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66028 32 32 432 346 1 193 86 17 17 289 -1 unnamed_device 25.7 MiB 0.20 1064 14828 5337 7470 2021 64.5 MiB 0.12 0.00 4.34676 -140.278 -4.34676 4.34676 0.88 0.000231141 0.000181034 0.0207891 0.0166439 -1 -1 -1 -1 32 2306 25 6.64007e+06 276276 554710. 1919.41 0.95 0.0644728 0.0530903 22834 132086 -1 1995 20 1368 2467 139291 32056 3.42803 3.42803 -133.215 -3.42803 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0162241 0.0141842 149 94 32 32 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.61 vpr 64.40 MiB 0.03 7172 -1 -1 1 0.05 -1 -1 34224 -1 -1 39 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65944 31 32 421 339 1 193 102 17 17 289 -1 unnamed_device 25.6 MiB 0.19 994 11288 2808 7770 710 64.4 MiB 0.09 0.00 3.54427 -117.284 -3.54427 3.54427 0.94 0.000230643 0.000181768 0.0139695 0.0112671 -1 -1 -1 -1 26 2483 22 6.64007e+06 489762 477104. 1650.88 1.12 0.0609049 0.0511219 21682 110474 -1 2174 19 1650 2620 154872 38837 3.11657 3.11657 -120.491 -3.11657 0 0 585099. 2024.56 0.26 0.06 0.10 -1 -1 0.26 0.0167739 0.0147592 148 94 29 29 93 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.45 vpr 64.03 MiB 0.02 7248 -1 -1 1 0.05 -1 -1 34496 -1 -1 34 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65568 32 32 438 350 1 194 98 17 17 289 -1 unnamed_device 25.4 MiB 0.15 984 7523 1506 5708 309 64.0 MiB 0.07 0.00 3.92206 -133.487 -3.92206 3.92206 0.88 0.000235824 0.000185889 0.0107224 0.00878564 -1 -1 -1 -1 32 2622 21 6.65987e+06 431052 554710. 1919.41 1.02 0.0560613 0.0471062 22834 132086 -1 2157 21 1547 2490 152232 37056 3.36171 3.36171 -132.639 -3.36171 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0174359 0.015349 151 96 32 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.29 vpr 64.20 MiB 0.03 7356 -1 -1 1 0.04 -1 -1 34116 -1 -1 21 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65744 30 32 409 330 1 186 83 17 17 289 -1 unnamed_device 25.2 MiB 0.27 1021 12323 3933 6472 1918 64.2 MiB 0.10 0.00 4.34307 -130.434 -4.34307 4.34307 0.89 0.000228771 0.000180327 0.0185091 0.0149103 -1 -1 -1 -1 32 2272 21 6.65987e+06 266238 554710. 1919.41 0.95 0.0582666 0.048288 22834 132086 -1 2050 22 1443 2431 176108 38292 3.63571 3.63571 -124.943 -3.63571 0 0 701300. 2426.64 0.30 0.05 0.12 -1 -1 0.30 0.0161838 0.014123 140 91 30 30 89 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.27 vpr 64.17 MiB 0.02 7220 -1 -1 1 0.04 -1 -1 34360 -1 -1 34 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65708 32 32 387 309 1 186 98 17 17 289 -1 unnamed_device 25.4 MiB 0.23 1046 17198 4925 10203 2070 64.2 MiB 0.13 0.00 3.50085 -120.205 -3.50085 3.50085 0.93 0.000236674 0.000188818 0.0205334 0.0164149 -1 -1 -1 -1 28 2505 34 6.65987e+06 431052 500653. 1732.36 0.97 0.0661429 0.0545916 21970 115934 -1 2179 20 1412 2288 161252 36771 3.16185 3.16185 -122.027 -3.16185 0 0 612192. 2118.31 0.26 0.05 0.10 -1 -1 0.26 0.0142431 0.0124293 141 65 54 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.25 vpr 63.87 MiB 0.03 7224 -1 -1 1 0.03 -1 -1 33956 -1 -1 22 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65400 29 32 343 267 1 184 83 17 17 289 -1 unnamed_device 25.0 MiB 0.15 792 11963 2924 7039 2000 63.9 MiB 0.07 0.00 4.3057 -123.39 -4.3057 4.3057 0.86 0.000205469 0.00016254 0.0160257 0.0130239 -1 -1 -1 -1 32 2326 24 6.65987e+06 278916 554710. 1919.41 1.07 0.0542803 0.0450852 22834 132086 -1 1788 22 1543 2752 171817 43958 3.46431 3.46431 -122.506 -3.46431 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0155374 0.0135797 138 34 87 29 29 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.35 vpr 63.99 MiB 0.03 7124 -1 -1 1 0.04 -1 -1 34212 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65524 32 32 376 288 1 195 84 17 17 289 -1 unnamed_device 25.3 MiB 0.24 1026 15456 4961 8586 1909 64.0 MiB 0.12 0.00 4.14936 -143.085 -4.14936 4.14936 0.86 0.000222356 0.000176445 0.021947 0.0177341 -1 -1 -1 -1 32 2589 20 6.65987e+06 253560 554710. 1919.41 0.97 0.0609418 0.0506463 22834 132086 -1 2222 22 1680 3105 206991 47036 3.69143 3.69143 -143.37 -3.69143 0 0 701300. 2426.64 0.30 0.07 0.12 -1 -1 0.30 0.0172213 0.015149 151 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.49 vpr 64.23 MiB 0.02 7084 -1 -1 1 0.04 -1 -1 33844 -1 -1 37 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65768 32 32 402 316 1 199 101 17 17 289 -1 unnamed_device 25.4 MiB 0.23 1029 9501 1978 7135 388 64.2 MiB 0.09 0.00 3.43623 -117.882 -3.43623 3.43623 0.92 0.000233029 0.00018302 0.0120644 0.00985763 -1 -1 -1 -1 32 2342 20 6.65987e+06 469086 554710. 1919.41 0.95 0.0528538 0.0443739 22834 132086 -1 1962 18 1126 1792 107710 25832 2.72371 2.72371 -112.034 -2.72371 0 0 701300. 2426.64 0.30 0.04 0.12 -1 -1 0.30 0.0149223 0.013213 154 64 63 32 63 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.07 vpr 63.64 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 33952 -1 -1 19 27 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65164 27 32 269 226 1 135 78 17 17 289 -1 unnamed_device 24.9 MiB 0.14 580 13026 4344 6329 2353 63.6 MiB 0.09 0.00 3.7565 -98.351 -3.7565 3.7565 0.97 0.00016047 0.000126685 0.0158445 0.0128417 -1 -1 -1 -1 30 1411 19 6.65987e+06 240882 526063. 1820.29 0.86 0.0445457 0.0369664 22546 126617 -1 1171 19 804 1373 82491 19526 2.70051 2.70051 -92.1985 -2.70051 0 0 666494. 2306.21 0.29 0.03 0.11 -1 -1 0.29 0.0110419 0.00972093 96 34 54 27 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.19 vpr 63.96 MiB 0.02 7032 -1 -1 1 0.03 -1 -1 34040 -1 -1 33 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65492 31 32 317 242 1 185 96 17 17 289 -1 unnamed_device 25.2 MiB 0.30 1016 11265 2888 7039 1338 64.0 MiB 0.09 0.00 3.36201 -108.145 -3.36201 3.36201 0.86 0.000196594 0.000156412 0.0129528 0.0105918 -1 -1 -1 -1 26 2532 27 6.65987e+06 418374 477104. 1650.88 1.00 0.0530519 0.0445537 21682 110474 -1 2233 18 1175 2022 139017 32170 2.74797 2.74797 -107.276 -2.74797 0 0 585099. 2024.56 0.26 0.05 0.10 -1 -1 0.26 0.0129167 0.0114214 139 4 115 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.06 vpr 64.00 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33884 -1 -1 16 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65540 31 32 338 292 1 147 79 17 17 289 -1 unnamed_device 25.3 MiB 0.28 818 11571 4275 5789 1507 64.0 MiB 0.08 0.00 3.08801 -101.656 -3.08801 3.08801 0.86 0.000194887 0.000152233 0.0157148 0.0125822 -1 -1 -1 -1 28 2012 20 6.65987e+06 202848 500653. 1732.36 0.89 0.0503903 0.0416852 21970 115934 -1 1768 19 888 1441 101867 23067 2.77365 2.77365 -102.085 -2.77365 0 0 612192. 2118.31 0.26 0.04 0.11 -1 -1 0.26 0.0132013 0.0115096 105 85 0 0 84 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 5.70 vpr 63.76 MiB 0.02 7048 -1 -1 1 0.04 -1 -1 33868 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65288 32 32 314 256 1 162 80 17 17 289 -1 unnamed_device 24.8 MiB 0.23 642 11432 4032 4649 2751 63.8 MiB 0.07 0.00 3.56921 -118.924 -3.56921 3.56921 0.89 0.000204221 0.000163325 0.0157006 0.0127499 -1 -1 -1 -1 36 2044 28 6.65987e+06 202848 612192. 2118.31 2.19 0.0902007 0.0764587 23410 145293 -1 1461 25 1464 2371 152631 38874 3.06097 3.06097 -111.701 -3.06097 0 0 782063. 2706.10 0.32 0.06 0.13 -1 -1 0.32 0.0154486 0.0133314 121 34 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.36 vpr 63.83 MiB 0.02 7032 -1 -1 1 0.04 -1 -1 33896 -1 -1 17 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65364 30 32 325 273 1 151 79 17 17 289 -1 unnamed_device 25.0 MiB 0.23 688 7684 1925 5205 554 63.8 MiB 0.07 0.00 3.53806 -112.993 -3.53806 3.53806 0.89 0.000199151 0.000157834 0.0114809 0.00944231 -1 -1 -1 -1 32 1563 20 6.65987e+06 215526 554710. 1919.41 0.91 0.048507 0.0408916 22834 132086 -1 1404 20 939 1333 81887 19635 2.76697 2.76697 -105.554 -2.76697 0 0 701300. 2426.64 0.31 0.04 0.12 -1 -1 0.31 0.0142186 0.0125318 110 63 30 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.12 vpr 64.06 MiB 0.02 7060 -1 -1 1 0.04 -1 -1 33892 -1 -1 29 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65600 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 25.3 MiB 0.27 841 11223 2602 8034 587 64.1 MiB 0.08 0.00 3.27957 -108.894 -3.27957 3.27957 0.88 0.000190398 0.000148882 0.0118571 0.00951992 -1 -1 -1 -1 30 2020 22 6.65987e+06 367662 526063. 1820.29 0.88 0.0460649 0.038006 22546 126617 -1 1668 22 1025 1665 104569 24167 2.50305 2.50305 -103.61 -2.50305 0 0 666494. 2306.21 0.28 0.04 0.12 -1 -1 0.28 0.0129487 0.0112801 114 65 25 25 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.38 vpr 64.01 MiB 0.02 7108 -1 -1 1 0.04 -1 -1 34084 -1 -1 32 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65544 32 32 386 305 1 188 96 17 17 289 -1 unnamed_device 25.3 MiB 0.40 1002 18711 5900 10256 2555 64.0 MiB 0.13 0.00 3.50686 -122.446 -3.50686 3.50686 0.85 0.00022056 0.000173029 0.0209913 0.0166714 -1 -1 -1 -1 32 2230 20 6.65987e+06 405696 554710. 1919.41 0.94 0.058645 0.048293 22834 132086 -1 1914 19 1317 2220 127627 30379 2.76377 2.76377 -113.281 -2.76377 0 0 701300. 2426.64 0.29 0.05 0.11 -1 -1 0.29 0.0151247 0.0132771 143 58 64 32 57 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.57 vpr 64.16 MiB 0.04 7084 -1 -1 1 0.05 -1 -1 34024 -1 -1 34 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65704 32 32 407 319 1 200 98 17 17 289 -1 unnamed_device 25.3 MiB 0.24 896 8423 1626 6163 634 64.2 MiB 0.08 0.00 4.07724 -137.456 -4.07724 4.07724 0.87 0.000248659 0.000199814 0.0122192 0.0101396 -1 -1 -1 -1 32 2353 22 6.65987e+06 431052 554710. 1919.41 1.03 0.0597878 0.0508458 22834 132086 -1 2106 22 1643 2700 178482 44548 3.66751 3.66751 -139.961 -3.66751 0 0 701300. 2426.64 0.29 0.07 0.12 -1 -1 0.29 0.0203484 0.0177778 156 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.27 vpr 63.52 MiB 0.02 6840 -1 -1 1 0.04 -1 -1 34020 -1 -1 18 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65048 29 32 272 228 1 145 79 17 17 289 -1 unnamed_device 24.8 MiB 0.25 686 7177 1709 4538 930 63.5 MiB 0.06 0.00 3.15358 -93.6229 -3.15358 3.15358 0.88 0.000173679 0.000137734 0.0100514 0.00828262 -1 -1 -1 -1 28 1892 19 6.65987e+06 228204 500653. 1732.36 0.87 0.0409682 0.0344969 21970 115934 -1 1647 23 1148 1915 132777 31641 2.65245 2.65245 -95.4509 -2.65245 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0157757 0.0138858 107 29 58 29 24 24 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.59 vpr 64.16 MiB 0.02 7272 -1 -1 1 0.04 -1 -1 33708 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65696 32 32 401 315 1 192 84 17 17 289 -1 unnamed_device 25.4 MiB 0.27 1074 13992 4161 7846 1985 64.2 MiB 0.12 0.00 3.5141 -125.301 -3.5141 3.5141 0.88 0.000272516 0.000214316 0.02221 0.0180216 -1 -1 -1 -1 32 2362 21 6.65987e+06 253560 554710. 1919.41 0.97 0.0647798 0.0539167 22834 132086 -1 2100 19 1387 2433 160863 37488 3.00917 3.00917 -120.058 -3.00917 0 0 701300. 2426.64 0.33 0.05 0.12 -1 -1 0.33 0.0164651 0.0145785 146 63 64 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.22 vpr 64.17 MiB 0.02 7252 -1 -1 1 0.04 -1 -1 34176 -1 -1 34 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65712 32 32 383 303 1 185 98 17 17 289 -1 unnamed_device 25.4 MiB 0.40 934 18323 6450 8556 3317 64.2 MiB 0.11 0.00 3.6343 -123.732 -3.6343 3.6343 0.86 0.000218734 0.000172517 0.0218129 0.0175926 -1 -1 -1 -1 30 2378 28 6.65987e+06 431052 526063. 1820.29 1.45 0.074348 0.0625194 22546 126617 -1 1916 19 1275 1888 125113 28979 2.76277 2.76277 -114.988 -2.76277 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0161028 0.0141349 142 57 64 32 56 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.54 vpr 64.10 MiB 0.02 7124 -1 -1 1 0.04 -1 -1 34144 -1 -1 30 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65636 32 32 339 284 1 162 94 17 17 289 -1 unnamed_device 25.3 MiB 0.32 832 15430 4777 8379 2274 64.1 MiB 0.13 0.00 2.83964 -101.659 -2.83964 2.83964 0.86 0.00028625 0.00022412 0.020992 0.0168723 -1 -1 -1 -1 30 1996 22 6.65987e+06 380340 526063. 1820.29 0.95 0.060009 0.0498959 22546 126617 -1 1635 14 802 1184 72625 16499 2.18971 2.18971 -96.9741 -2.18971 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0132388 0.0119215 118 65 29 29 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.75 vpr 63.32 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 33756 -1 -1 15 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64836 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 24.8 MiB 0.10 661 10835 3152 6204 1479 63.3 MiB 0.06 0.00 2.60038 -85.2282 -2.60038 2.60038 0.86 0.000146349 0.000115364 0.0115561 0.00926061 -1 -1 -1 -1 28 1452 20 6.65987e+06 190170 500653. 1732.36 0.80 0.0360421 0.0297892 21970 115934 -1 1272 18 515 793 57249 13039 1.71265 1.71265 -76.7055 -1.71265 0 0 612192. 2118.31 0.25 0.03 0.11 -1 -1 0.25 0.00829805 0.00726069 85 34 24 24 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.39 vpr 63.92 MiB 0.02 7144 -1 -1 1 0.05 -1 -1 34172 -1 -1 16 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65452 31 32 335 280 1 154 79 17 17 289 -1 unnamed_device 25.2 MiB 0.14 862 13768 4646 7227 1895 63.9 MiB 0.09 0.00 3.94338 -122.441 -3.94338 3.94338 0.88 0.00021207 0.000168982 0.018332 0.0148478 -1 -1 -1 -1 32 1822 20 6.65987e+06 202848 554710. 1919.41 0.89 0.0533518 0.0444459 22834 132086 -1 1666 18 875 1353 101459 22409 2.91545 2.91545 -114.226 -2.91545 0 0 701300. 2426.64 0.31 0.04 0.12 -1 -1 0.31 0.0129711 0.0115155 113 64 31 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.50 vpr 64.01 MiB 0.02 7076 -1 -1 1 0.05 -1 -1 33524 -1 -1 34 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65548 32 32 366 283 1 192 98 17 17 289 -1 unnamed_device 25.0 MiB 0.23 1067 12248 3339 7850 1059 64.0 MiB 0.09 0.00 4.06436 -136.288 -4.06436 4.06436 0.88 0.000235554 0.000189371 0.014899 0.0122004 -1 -1 -1 -1 30 2353 19 6.65987e+06 431052 526063. 1820.29 0.92 0.0565076 0.0477459 22546 126617 -1 2038 20 1356 2011 119922 27360 3.22177 3.22177 -126.056 -3.22177 0 0 666494. 2306.21 0.29 0.05 0.11 -1 -1 0.29 0.0157327 0.0139328 145 34 91 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.35 vpr 64.25 MiB 0.02 7212 -1 -1 1 0.04 -1 -1 34632 -1 -1 36 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65796 32 32 460 375 1 196 100 17 17 289 -1 unnamed_device 25.8 MiB 0.33 1107 12164 3260 7320 1584 64.3 MiB 0.10 0.00 3.45103 -121.866 -3.45103 3.45103 0.86 0.00025615 0.000191433 0.0153242 0.0120164 -1 -1 -1 -1 32 2586 24 6.65987e+06 456408 554710. 1919.41 0.93 0.060485 0.0497648 22834 132086 -1 2228 18 1253 1902 113164 26704 3.01545 3.01545 -117.593 -3.01545 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0194744 0.0173037 149 124 0 0 125 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.83 vpr 62.89 MiB 0.02 6876 -1 -1 1 0.03 -1 -1 34076 -1 -1 17 26 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64404 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 24.4 MiB 0.19 410 10345 3142 6004 1199 62.9 MiB 0.04 0.00 2.61938 -68.655 -2.61938 2.61938 0.86 0.000125071 9.7591e-05 0.00937445 0.00750279 -1 -1 -1 -1 30 1071 20 6.65987e+06 215526 526063. 1820.29 0.80 0.0298943 0.0246568 22546 126617 -1 892 17 477 715 39145 10340 1.85405 1.85405 -64.8879 -1.85405 0 0 666494. 2306.21 0.28 0.02 0.11 -1 -1 0.28 0.00774252 0.00681641 77 30 26 26 22 22 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 6.50 vpr 63.80 MiB 0.02 7092 -1 -1 1 0.05 -1 -1 33904 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65332 32 32 333 251 1 187 84 17 17 289 -1 unnamed_device 24.9 MiB 0.23 1115 13443 3576 8165 1702 63.8 MiB 0.11 0.00 4.2335 -135.193 -4.2335 4.2335 1.02 0.00019936 0.000157616 0.0172239 0.0140116 -1 -1 -1 -1 28 2630 26 6.65987e+06 253560 500653. 1732.36 2.84 0.0959019 0.0796908 21970 115934 -1 2272 22 1473 2541 181143 40800 3.73177 3.73177 -136.785 -3.73177 0 0 612192. 2118.31 0.26 0.06 0.10 -1 -1 0.26 0.0151157 0.013274 137 3 122 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.78 vpr 63.01 MiB 0.02 6776 -1 -1 1 0.03 -1 -1 33852 -1 -1 13 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 24.3 MiB 0.10 594 7901 1809 5857 235 63.0 MiB 0.05 0.00 2.22607 -81.2607 -2.22607 2.22607 0.85 0.000135476 0.000106952 0.00801793 0.00648837 -1 -1 -1 -1 32 1389 15 6.65987e+06 164814 554710. 1919.41 0.84 0.0304616 0.0255145 22834 132086 -1 1233 16 549 735 54361 13016 1.93825 1.93825 -78.4309 -1.93825 0 0 701300. 2426.64 0.29 0.03 0.12 -1 -1 0.29 0.00807441 0.00716267 81 3 53 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.63 vpr 64.14 MiB 0.02 7120 -1 -1 1 0.04 -1 -1 34116 -1 -1 33 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65684 32 32 376 288 1 195 97 17 17 289 -1 unnamed_device 25.4 MiB 0.15 1065 18079 5979 9630 2470 64.1 MiB 0.15 0.00 4.06247 -139.199 -4.06247 4.06247 0.94 0.000237937 0.000191141 0.0228789 0.0186552 -1 -1 -1 -1 32 2367 20 6.65987e+06 418374 554710. 1919.41 1.00 0.0679986 0.0572457 22834 132086 -1 2074 22 1496 2206 146587 33354 3.39397 3.39397 -131.759 -3.39397 0 0 701300. 2426.64 0.28 0.05 0.12 -1 -1 0.28 0.0168664 0.0149314 152 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.16 vpr 64.14 MiB 0.02 6960 -1 -1 1 0.04 -1 -1 34208 -1 -1 35 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65680 32 32 337 253 1 196 99 17 17 289 -1 unnamed_device 25.2 MiB 0.22 1134 16059 4004 10217 1838 64.1 MiB 0.13 0.00 3.38184 -119.391 -3.38184 3.38184 0.87 0.000220735 0.000175379 0.0179557 0.0144782 -1 -1 -1 -1 30 2478 22 6.65987e+06 443730 526063. 1820.29 0.91 0.0553238 0.0460675 22546 126617 -1 2138 23 1418 2253 152856 33329 2.67931 2.67931 -115.639 -2.67931 0 0 666494. 2306.21 0.28 0.05 0.11 -1 -1 0.28 0.0152187 0.0132582 150 3 124 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 6.06 vpr 64.15 MiB 0.02 7076 -1 -1 1 0.04 -1 -1 33948 -1 -1 35 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65688 32 32 407 319 1 197 99 17 17 289 -1 unnamed_device 25.6 MiB 0.15 1118 17199 4898 10401 1900 64.1 MiB 0.13 0.00 3.91784 -137.067 -3.91784 3.91784 0.84 0.000233033 0.000185887 0.0198197 0.0158727 -1 -1 -1 -1 30 2570 27 6.65987e+06 443730 526063. 1820.29 2.93 0.106041 0.0868113 22546 126617 -1 2132 19 1575 2660 153360 35523 3.16231 3.16231 -129.907 -3.16231 0 0 666494. 2306.21 0.27 0.05 0.11 -1 -1 0.27 0.0148045 0.0130393 153 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.92 vpr 63.66 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 33652 -1 -1 15 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65184 32 32 294 246 1 149 79 17 17 289 -1 unnamed_device 24.8 MiB 0.18 736 8191 2107 5347 737 63.7 MiB 0.06 0.00 2.8895 -100.047 -2.8895 2.8895 0.86 0.000176608 0.000139393 0.010168 0.00825419 -1 -1 -1 -1 28 2097 23 6.65987e+06 190170 500653. 1732.36 0.84 0.0417828 0.0348056 21970 115934 -1 1812 19 1072 1768 132294 30499 2.85491 2.85491 -104.569 -2.85491 0 0 612192. 2118.31 0.26 0.04 0.11 -1 -1 0.26 0.011401 0.0100046 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 63.67 MiB 0.02 7024 -1 -1 1 0.04 -1 -1 34040 -1 -1 19 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65200 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 24.8 MiB 0.15 832 12156 3666 7026 1464 63.7 MiB 0.08 0.00 3.4951 -115.55 -3.4951 3.4951 0.88 0.00017766 0.000139605 0.0145473 0.0117716 -1 -1 -1 -1 32 1812 18 6.65987e+06 240882 554710. 1919.41 0.90 0.0452634 0.0376541 22834 132086 -1 1637 24 948 1418 102648 23106 2.94997 2.94997 -112.088 -2.94997 0 0 701300. 2426.64 0.30 0.04 0.12 -1 -1 0.30 0.0132396 0.0115416 115 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.35 vpr 63.80 MiB 0.02 7136 -1 -1 1 0.04 -1 -1 33784 -1 -1 20 28 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65328 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 25.0 MiB 0.20 593 11776 2929 8189 658 63.8 MiB 0.08 0.00 3.4309 -100.687 -3.4309 3.4309 0.93 0.000168229 0.000133495 0.013632 0.0110604 -1 -1 -1 -1 30 1720 21 6.65987e+06 253560 526063. 1820.29 0.92 0.0460275 0.0385239 22546 126617 -1 1406 23 1009 1775 109227 27586 2.83191 2.83191 -101.024 -2.83191 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0151439 0.0133195 107 34 56 28 28 28 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.39 vpr 63.84 MiB 0.02 6916 -1 -1 1 0.04 -1 -1 33784 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65372 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 25.0 MiB 0.21 686 12008 2561 8162 1285 63.8 MiB 0.07 0.00 3.4859 -118.026 -3.4859 3.4859 0.89 0.000229501 0.000192125 0.0152544 0.0125173 -1 -1 -1 -1 32 2108 24 6.65987e+06 228204 554710. 1919.41 1.00 0.0545184 0.046107 22834 132086 -1 1631 20 1209 1890 125284 30035 2.73971 2.73971 -110.442 -2.73971 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0136135 0.0120325 125 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.43 vpr 63.84 MiB 0.02 7024 -1 -1 1 0.05 -1 -1 34132 -1 -1 31 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65372 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 24.9 MiB 0.19 735 8614 2125 5723 766 63.8 MiB 0.08 0.00 3.29178 -108.454 -3.29178 3.29178 0.92 0.000219705 0.000167933 0.0124794 0.0104425 -1 -1 -1 -1 28 2096 24 6.65987e+06 393018 500653. 1732.36 0.97 0.0553195 0.0471305 21970 115934 -1 1861 24 1396 2258 163291 38205 2.77565 2.77565 -108.842 -2.77565 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0154836 0.0134816 119 34 61 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.56 vpr 63.98 MiB 0.03 6952 -1 -1 1 0.04 -1 -1 33856 -1 -1 30 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65516 29 32 312 264 1 154 91 17 17 289 -1 unnamed_device 25.0 MiB 0.29 717 8047 1725 5786 536 64.0 MiB 0.07 0.00 2.76744 -86.2128 -2.76744 2.76744 0.92 0.000180985 0.000142457 0.0100526 0.00824251 -1 -1 -1 -1 32 1718 21 6.65987e+06 380340 554710. 1919.41 0.95 0.0456769 0.038576 22834 132086 -1 1480 18 839 1446 82236 20096 1.99625 1.99625 -81.928 -1.99625 0 0 701300. 2426.64 0.34 0.04 0.14 -1 -1 0.34 0.0138296 0.0121381 109 61 29 29 57 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 6.55 vpr 64.14 MiB 0.03 7068 -1 -1 1 0.04 -1 -1 34152 -1 -1 39 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65684 32 32 423 310 1 229 103 17 17 289 -1 unnamed_device 25.6 MiB 0.38 1246 13117 3185 8526 1406 64.1 MiB 0.13 0.00 4.16036 -141.523 -4.16036 4.16036 0.86 0.000239798 0.000190496 0.0160078 0.0130221 -1 -1 -1 -1 28 3650 28 6.65987e+06 494442 500653. 1732.36 3.08 0.110543 0.0915706 21970 115934 -1 2889 22 2073 3566 281141 62285 3.86363 3.86363 -148.555 -3.86363 0 0 612192. 2118.31 0.26 0.08 0.10 -1 -1 0.26 0.0186994 0.0163891 179 29 128 32 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.55 vpr 64.27 MiB 0.03 7160 -1 -1 1 0.04 -1 -1 34264 -1 -1 35 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65812 32 32 403 317 1 198 99 17 17 289 -1 unnamed_device 25.4 MiB 0.31 1041 9447 2232 6542 673 64.3 MiB 0.08 0.00 3.5061 -122.514 -3.5061 3.5061 0.88 0.000240141 0.000185736 0.0125694 0.010158 -1 -1 -1 -1 32 2288 19 6.65987e+06 443730 554710. 1919.41 0.94 0.0522072 0.0436475 22834 132086 -1 1994 21 1391 2140 124097 29585 2.77297 2.77297 -115.234 -2.77297 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0162666 0.0142913 152 65 62 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.67 vpr 64.23 MiB 0.02 7172 -1 -1 1 0.04 -1 -1 34524 -1 -1 28 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65768 31 32 353 302 1 156 91 17 17 289 -1 unnamed_device 25.5 MiB 0.35 709 5599 957 4403 239 64.2 MiB 0.05 0.00 3.18838 -103.883 -3.18838 3.18838 0.89 0.000193365 0.000152611 0.0074812 0.00619347 -1 -1 -1 -1 26 2105 38 6.65987e+06 354984 477104. 1650.88 1.09 0.0499822 0.0417201 21682 110474 -1 1745 19 1012 1678 105217 25769 2.55939 2.55939 -102.816 -2.55939 0 0 585099. 2024.56 0.25 0.05 0.12 -1 -1 0.25 0.0146118 0.0129378 113 90 0 0 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.76 vpr 64.30 MiB 0.02 7324 -1 -1 1 0.06 -1 -1 33916 -1 -1 21 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65848 31 32 391 309 1 194 84 17 17 289 -1 unnamed_device 25.5 MiB 0.29 950 14541 4604 7502 2435 64.3 MiB 0.12 0.00 3.4921 -115.341 -3.4921 3.4921 0.94 0.000218513 0.000172546 0.0215484 0.0175215 -1 -1 -1 -1 32 2284 19 6.65987e+06 266238 554710. 1919.41 0.99 0.0643863 0.0538435 22834 132086 -1 1926 24 1607 2769 175988 39847 2.89577 2.89577 -113.543 -2.89577 0 0 701300. 2426.64 0.33 0.08 0.13 -1 -1 0.33 0.0231932 0.0205581 148 64 60 30 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.25 vpr 64.27 MiB 0.02 7372 -1 -1 1 0.04 -1 -1 34192 -1 -1 21 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65808 31 32 455 371 1 193 84 17 17 289 -1 unnamed_device 25.3 MiB 0.37 1075 7953 1851 5455 647 64.3 MiB 0.07 0.00 4.84238 -140.996 -4.84238 4.84238 0.86 0.000237949 0.000187108 0.0129485 0.0105657 -1 -1 -1 -1 30 2514 21 6.65987e+06 266238 526063. 1820.29 0.90 0.0558263 0.0463713 22546 126617 -1 2032 18 1004 1712 93766 22265 3.60671 3.60671 -132.535 -3.60671 0 0 666494. 2306.21 0.27 0.04 0.12 -1 -1 0.27 0.0155553 0.0136789 149 124 0 0 124 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.58 vpr 64.20 MiB 0.03 7360 -1 -1 1 0.04 -1 -1 34176 -1 -1 21 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65736 31 32 413 333 1 188 84 17 17 289 -1 unnamed_device 25.4 MiB 0.26 947 10332 2670 7099 563 64.2 MiB 0.09 0.00 4.78027 -132.754 -4.78027 4.78027 0.93 0.00023816 0.000188952 0.0164624 0.0135123 -1 -1 -1 -1 32 2150 18 6.65987e+06 266238 554710. 1919.41 0.90 0.0567469 0.0476182 22834 132086 -1 1930 19 1139 1864 120278 28305 3.69497 3.69497 -130.77 -3.69497 0 0 701300. 2426.64 0.29 0.05 0.15 -1 -1 0.29 0.0150248 0.0132065 143 90 31 31 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.64 vpr 64.31 MiB 0.03 7156 -1 -1 1 0.06 -1 -1 34028 -1 -1 33 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65852 31 32 391 309 1 193 96 17 17 289 -1 unnamed_device 25.5 MiB 0.30 995 11265 2756 7734 775 64.3 MiB 0.10 0.00 3.36361 -112.108 -3.36361 3.36361 0.86 0.000223451 0.000176788 0.0138665 0.0111909 -1 -1 -1 -1 32 2231 21 6.65987e+06 418374 554710. 1919.41 0.93 0.0535533 0.0445229 22834 132086 -1 2051 22 1429 2522 161477 37406 2.80191 2.80191 -109.124 -2.80191 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0200867 0.0178564 146 64 60 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.30 vpr 64.45 MiB 0.03 7084 -1 -1 1 0.04 -1 -1 34348 -1 -1 35 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66000 32 32 407 319 1 198 99 17 17 289 -1 unnamed_device 25.5 MiB 0.22 1091 9903 2241 6952 710 64.5 MiB 0.09 0.00 3.91784 -134.792 -3.91784 3.91784 0.85 0.000230603 0.000182409 0.0130468 0.0105336 -1 -1 -1 -1 30 2537 27 6.65987e+06 443730 526063. 1820.29 1.06 0.0560136 0.0466339 22546 126617 -1 2201 22 1649 2612 165739 37609 3.29771 3.29771 -131.299 -3.29771 0 0 666494. 2306.21 0.29 0.06 0.11 -1 -1 0.29 0.0162299 0.0141879 154 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 5.61 vpr 64.40 MiB 0.03 7436 -1 -1 1 0.06 -1 -1 33856 -1 -1 40 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65944 32 32 496 380 1 232 104 17 17 289 -1 unnamed_device 26.0 MiB 0.31 1184 18648 4691 11584 2373 64.4 MiB 0.18 0.00 4.06547 -137.623 -4.06547 4.06547 0.94 0.000290764 0.000232192 0.024197 0.0195494 -1 -1 -1 -1 34 2821 22 6.65987e+06 507120 585099. 2024.56 1.67 0.102929 0.0869897 23122 138558 -1 2347 19 1676 2732 179173 42035 3.71977 3.71977 -136.162 -3.71977 0 0 742403. 2568.87 0.31 0.06 0.12 -1 -1 0.31 0.0194582 0.0171595 184 96 62 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.13 vpr 63.97 MiB 0.02 6900 -1 -1 1 0.04 -1 -1 34076 -1 -1 18 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65508 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 25.0 MiB 0.23 685 11806 2914 7153 1739 64.0 MiB 0.08 0.00 3.55518 -111.493 -3.55518 3.55518 0.87 0.000188 0.000148625 0.0149034 0.0120671 -1 -1 -1 -1 32 1837 21 6.65987e+06 228204 554710. 1919.41 0.93 0.0484108 0.0402551 22834 132086 -1 1559 21 1192 1993 124706 29921 3.10705 3.10705 -109.722 -3.10705 0 0 701300. 2426.64 0.29 0.04 0.12 -1 -1 0.29 0.0130355 0.0114709 116 34 62 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.90 vpr 63.46 MiB 0.02 7272 -1 -1 1 0.04 -1 -1 33820 -1 -1 36 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64980 31 32 395 311 1 196 99 17 17 289 -1 unnamed_device 24.6 MiB 0.21 975 9675 2183 7040 452 63.5 MiB 0.10 0.00 4.0281 -131.106 -4.0281 4.0281 0.97 0.000240279 0.000188018 0.0149648 0.0123429 -1 -1 -1 -1 26 2958 42 6.65987e+06 456408 477104. 1650.88 1.34 0.0756727 0.0642825 21682 110474 -1 2412 20 1578 2670 189219 43824 3.73577 3.73577 -138.183 -3.73577 0 0 585099. 2024.56 0.25 0.06 0.10 -1 -1 0.25 0.0161226 0.0142303 150 64 62 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.71 vpr 64.20 MiB 0.03 7168 -1 -1 1 0.04 -1 -1 34352 -1 -1 33 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65744 32 32 397 313 1 196 97 17 17 289 -1 unnamed_device 25.4 MiB 0.32 1040 11641 3109 7665 867 64.2 MiB 0.11 0.00 3.62624 -117.445 -3.62624 3.62624 0.97 0.000279853 0.000230454 0.0155215 0.0126195 -1 -1 -1 -1 28 2841 21 6.65987e+06 418374 500653. 1732.36 0.94 0.0555543 0.0462223 21970 115934 -1 2311 25 1614 2976 197433 45925 2.86271 2.86271 -111.815 -2.86271 0 0 612192. 2118.31 0.26 0.08 0.10 -1 -1 0.26 0.022325 0.0196621 148 63 62 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.72 vpr 64.01 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 33972 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65544 32 32 345 257 1 194 84 17 17 289 -1 unnamed_device 25.1 MiB 0.22 853 8685 1897 5601 1187 64.0 MiB 0.07 0.00 4.14936 -138.467 -4.14936 4.14936 0.85 0.000217517 0.000172692 0.0128369 0.0104785 -1 -1 -1 -1 32 2947 27 6.65987e+06 253560 554710. 1919.41 1.52 0.06375 0.0530946 22834 132086 -1 2183 20 1697 3130 202299 50463 4.17937 4.17937 -151.011 -4.17937 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0155497 0.013763 150 3 128 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.27 vpr 64.19 MiB 0.03 7320 -1 -1 1 0.03 -1 -1 35408 -1 -1 34 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65728 32 32 424 343 1 190 98 17 17 289 -1 unnamed_device 25.3 MiB 0.37 1097 11798 3144 7589 1065 64.2 MiB 0.11 0.00 3.29555 -116.715 -3.29555 3.29555 0.84 0.000239341 0.000187499 0.0156126 0.0125119 -1 -1 -1 -1 32 2347 22 6.65987e+06 431052 554710. 1919.41 0.90 0.0552587 0.0456105 22834 132086 -1 2185 19 1263 1818 115545 27756 2.61645 2.61645 -112.838 -2.61645 0 0 701300. 2426.64 0.30 0.05 0.12 -1 -1 0.30 0.0154936 0.0136053 145 96 25 25 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.28 vpr 64.00 MiB 0.02 7080 -1 -1 1 0.04 -1 -1 33932 -1 -1 35 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65536 32 32 395 311 1 194 99 17 17 289 -1 unnamed_device 25.2 MiB 0.34 1042 7623 1446 5778 399 64.0 MiB 0.08 0.00 3.5841 -121.365 -3.5841 3.5841 0.86 0.000228832 0.000180186 0.00976497 0.00795133 -1 -1 -1 -1 32 2471 17 6.65987e+06 443730 554710. 1919.41 0.92 0.0476632 0.0398904 22834 132086 -1 2175 17 1146 1960 113469 28322 2.94877 2.94877 -121.037 -2.94877 0 0 701300. 2426.64 0.29 0.04 0.13 -1 -1 0.29 0.0141025 0.0124614 146 61 64 32 60 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.29 vpr 64.26 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 34024 -1 -1 37 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65804 32 32 405 318 1 200 101 17 17 289 -1 unnamed_device 25.4 MiB 0.28 1118 19136 5296 11671 2169 64.3 MiB 0.15 0.00 3.42984 -118.83 -3.42984 3.42984 0.86 0.000225916 0.000177541 0.0209634 0.0166007 -1 -1 -1 -1 32 2413 21 6.65987e+06 469086 554710. 1919.41 0.92 0.0613611 0.0507289 22834 132086 -1 2145 19 1493 2416 145812 35243 2.87811 2.87811 -111.803 -2.87811 0 0 701300. 2426.64 0.30 0.05 0.12 -1 -1 0.30 0.0151555 0.0132863 155 65 63 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.55 vpr 64.16 MiB 0.02 6980 -1 -1 1 0.04 -1 -1 33952 -1 -1 35 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65700 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 25.4 MiB 0.22 1050 17883 5724 9105 3054 64.2 MiB 0.13 0.00 4.02327 -139.218 -4.02327 4.02327 0.89 0.000212962 0.000168474 0.020298 0.0163747 -1 -1 -1 -1 32 2447 22 6.65987e+06 443730 554710. 1919.41 1.02 0.0639285 0.0535609 22834 132086 -1 2034 20 1555 2605 159208 36836 3.49097 3.49097 -131.341 -3.49097 0 0 701300. 2426.64 0.33 0.06 0.13 -1 -1 0.33 0.0169885 0.0150001 150 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.69 vpr 63.94 MiB 0.02 7156 -1 -1 1 0.04 -1 -1 34404 -1 -1 37 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65476 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 25.4 MiB 0.27 1025 18901 5265 11118 2518 63.9 MiB 0.15 0.00 3.95704 -138.682 -3.95704 3.95704 0.91 0.000237819 0.000186986 0.0238361 0.0191897 -1 -1 -1 -1 32 2290 23 6.65987e+06 469086 554710. 1919.41 1.03 0.0687873 0.0572488 22834 132086 -1 2103 23 1697 2639 176451 40256 3.38671 3.38671 -133.347 -3.38671 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0183719 0.016118 153 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.80 vpr 64.04 MiB 0.03 7268 -1 -1 1 0.05 -1 -1 34192 -1 -1 34 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65572 31 32 449 367 1 193 97 17 17 289 -1 unnamed_device 25.4 MiB 0.38 1075 12529 3319 7633 1577 64.0 MiB 0.12 0.00 3.98298 -125.763 -3.98298 3.98298 0.94 0.000263789 0.000205086 0.0207667 0.0169871 -1 -1 -1 -1 28 2875 24 6.65987e+06 431052 500653. 1732.36 1.03 0.0680779 0.0567205 21970 115934 -1 2454 21 1535 2576 174851 40840 3.55825 3.55825 -129.218 -3.55825 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0179787 0.0156959 145 122 0 0 122 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.34 vpr 64.15 MiB 0.02 7280 -1 -1 1 0.04 -1 -1 34168 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65688 32 32 432 346 1 195 84 17 17 289 -1 unnamed_device 25.2 MiB 0.28 1088 15822 4733 9518 1571 64.1 MiB 0.12 0.00 4.01118 -127.976 -4.01118 4.01118 0.86 0.000230879 0.000181222 0.0223147 0.0178722 -1 -1 -1 -1 32 2447 24 6.65987e+06 253560 554710. 1919.41 0.96 0.0664386 0.0547738 22834 132086 -1 2163 22 1707 3104 193742 43407 3.17765 3.17765 -121.359 -3.17765 0 0 701300. 2426.64 0.31 0.06 0.11 -1 -1 0.31 0.0172721 0.0150439 149 94 32 32 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 4.50 vpr 63.73 MiB 0.02 6868 -1 -1 1 0.04 -1 -1 33984 -1 -1 30 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65264 32 32 312 255 1 166 94 17 17 289 -1 unnamed_device 24.8 MiB 0.20 771 8827 2156 6189 482 63.7 MiB 0.07 0.00 3.35364 -111.63 -3.35364 3.35364 0.93 0.000208378 0.000162646 0.0107347 0.00884616 -1 -1 -1 -1 28 2265 24 6.65987e+06 380340 500653. 1732.36 0.99 0.0512892 0.0436202 21970 115934 -1 1988 24 1408 2241 175119 41581 2.87885 2.87885 -113.156 -2.87885 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0198981 0.017597 124 34 63 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.33 vpr 63.97 MiB 0.02 7000 -1 -1 1 0.04 -1 -1 34116 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65508 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 25.2 MiB 0.32 775 7914 1954 5542 418 64.0 MiB 0.06 0.00 3.38184 -115.147 -3.38184 3.38184 0.86 0.000203243 0.000160444 0.0110477 0.008959 -1 -1 -1 -1 32 1876 23 6.65987e+06 228204 554710. 1919.41 0.90 0.0472121 0.0390771 22834 132086 -1 1751 22 1235 1983 135410 30234 2.53731 2.53731 -107.925 -2.53731 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.0157865 0.0138575 121 94 0 0 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.29 vpr 64.33 MiB 0.03 7156 -1 -1 1 0.04 -1 -1 34196 -1 -1 40 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65876 32 32 469 351 1 233 104 17 17 289 -1 unnamed_device 25.7 MiB 0.18 1358 14500 3674 9480 1346 64.3 MiB 0.14 0.00 4.6627 -160.408 -4.6627 4.6627 0.85 0.00029908 0.000212861 0.0201361 0.0162125 -1 -1 -1 -1 32 2828 20 6.65987e+06 507120 554710. 1919.41 0.98 0.0658264 0.0547301 22834 132086 -1 2592 20 2112 3449 200165 48304 4.13857 4.13857 -159.759 -4.13857 0 0 701300. 2426.64 0.30 0.06 0.11 -1 -1 0.30 0.0183217 0.0161196 187 65 96 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.72 vpr 64.27 MiB 0.03 7072 -1 -1 1 0.05 -1 -1 34176 -1 -1 31 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65812 32 32 368 284 1 194 95 17 17 289 -1 unnamed_device 25.5 MiB 0.31 954 14567 4735 7432 2400 64.3 MiB 0.12 0.00 3.51422 -121.562 -3.51422 3.51422 0.92 0.000224144 0.000176961 0.0190945 0.0155758 -1 -1 -1 -1 32 2355 23 6.65987e+06 393018 554710. 1919.41 1.02 0.0643413 0.0540318 22834 132086 -1 1996 20 1380 2125 138010 32355 2.94216 2.94216 -118.256 -2.94216 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0163025 0.0144465 146 34 92 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.08 vpr 64.00 MiB 0.02 6924 -1 -1 1 0.04 -1 -1 33800 -1 -1 30 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65536 30 32 296 244 1 158 92 17 17 289 -1 unnamed_device 24.9 MiB 0.19 839 17066 5534 9253 2279 64.0 MiB 0.11 0.00 3.49012 -114.14 -3.49012 3.49012 0.85 0.000180881 0.000144 0.0168054 0.0134939 -1 -1 -1 -1 32 1786 21 6.65987e+06 380340 554710. 1919.41 0.90 0.0479918 0.0398136 22834 132086 -1 1612 21 982 1572 108138 24890 2.66737 2.66737 -105.642 -2.66737 0 0 701300. 2426.64 0.29 0.04 0.12 -1 -1 0.29 0.0120459 0.010547 115 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.97 vpr 64.62 MiB 0.03 7472 -1 -1 1 0.05 -1 -1 34480 -1 -1 43 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66168 32 32 531 413 1 232 107 17 17 289 -1 unnamed_device 26.1 MiB 0.57 1333 18829 5161 11634 2034 64.6 MiB 0.17 0.00 4.64147 -157.361 -4.64147 4.64147 0.89 0.000289058 0.000225857 0.0250218 0.0197806 -1 -1 -1 -1 30 2844 21 6.65987e+06 545154 526063. 1820.29 0.97 0.0777588 0.0644079 22546 126617 -1 2398 23 2018 3072 157660 37757 4.17037 4.17037 -158 -4.17037 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0214825 0.0188006 186 127 32 32 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.48 vpr 63.95 MiB 0.02 7200 -1 -1 1 0.04 -1 -1 33812 -1 -1 36 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65480 32 32 376 288 1 194 100 17 17 289 -1 unnamed_device 25.5 MiB 0.21 1044 16340 4500 10034 1806 63.9 MiB 0.12 0.00 4.15932 -143.209 -4.15932 4.15932 0.94 0.000227382 0.000181584 0.0180974 0.0146392 -1 -1 -1 -1 28 2434 23 6.65987e+06 456408 500653. 1732.36 0.94 0.0595807 0.0496523 21970 115934 -1 2212 21 1724 2576 175138 40284 3.49823 3.49823 -139.756 -3.49823 0 0 612192. 2118.31 0.26 0.06 0.10 -1 -1 0.26 0.0186107 0.016527 151 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.01 vpr 64.04 MiB 0.02 6912 -1 -1 1 0.04 -1 -1 34056 -1 -1 31 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65580 32 32 283 225 1 164 95 17 17 289 -1 unnamed_device 25.0 MiB 0.14 722 13055 3473 8103 1479 64.0 MiB 0.10 0.00 3.50687 -117.927 -3.50687 3.50687 0.87 0.000204996 0.000163902 0.0137235 0.0110272 -1 -1 -1 -1 28 2310 22 6.65987e+06 393018 500653. 1732.36 0.92 0.0475175 0.0395702 21970 115934 -1 1874 19 1249 1926 119722 30066 2.97077 2.97077 -121.563 -2.97077 0 0 612192. 2118.31 0.26 0.05 0.10 -1 -1 0.26 0.0124692 0.0109595 123 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.84 vpr 64.14 MiB 0.03 7332 -1 -1 1 0.05 -1 -1 34392 -1 -1 41 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65680 32 32 438 320 1 235 105 17 17 289 -1 unnamed_device 25.5 MiB 0.26 1337 12702 3419 8223 1060 64.1 MiB 0.13 0.00 4.90437 -166.477 -4.90437 4.90437 0.93 0.000364548 0.000302208 0.0187206 0.0154481 -1 -1 -1 -1 30 3005 22 6.65987e+06 519798 526063. 1820.29 1.05 0.0671451 0.0565234 22546 126617 -1 2536 23 1897 3418 212452 47742 4.54303 4.54303 -164.492 -4.54303 0 0 666494. 2306.21 0.30 0.07 0.13 -1 -1 0.30 0.0194344 0.0170516 188 34 128 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.48 vpr 63.82 MiB 0.02 6744 -1 -1 1 0.04 -1 -1 33868 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65348 32 32 283 225 1 162 80 17 17 289 -1 unnamed_device 24.9 MiB 0.18 852 11260 3935 5447 1878 63.8 MiB 0.08 0.00 3.4749 -119.679 -3.4749 3.4749 0.95 0.000204384 0.000166857 0.0140302 0.0114205 -1 -1 -1 -1 32 2054 21 6.65987e+06 202848 554710. 1919.41 0.95 0.0482203 0.0405875 22834 132086 -1 1732 24 1316 2108 152415 36089 2.72571 2.72571 -112.904 -2.72571 0 0 701300. 2426.64 0.30 0.06 0.12 -1 -1 0.30 0.0157272 0.0139518 121 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.96 vpr 63.70 MiB 0.02 6972 -1 -1 1 0.04 -1 -1 33556 -1 -1 31 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65224 30 32 296 244 1 157 93 17 17 289 -1 unnamed_device 24.8 MiB 0.18 707 8073 1842 5622 609 63.7 MiB 0.07 0.00 3.47387 -110.471 -3.47387 3.47387 0.87 0.000185366 0.000147346 0.00897922 0.0073044 -1 -1 -1 -1 28 2018 21 6.65987e+06 393018 500653. 1732.36 0.87 0.0398835 0.0332487 21970 115934 -1 1690 19 1134 1899 121372 29545 2.89017 2.89017 -109.84 -2.89017 0 0 612192. 2118.31 0.26 0.05 0.10 -1 -1 0.26 0.0126448 0.0111171 113 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.38 vpr 64.29 MiB 0.03 7304 -1 -1 1 0.04 -1 -1 34060 -1 -1 33 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65828 29 32 393 319 1 182 94 17 17 289 -1 unnamed_device 25.2 MiB 0.36 964 15856 4549 8713 2594 64.3 MiB 0.11 0.00 3.50895 -109.722 -3.50895 3.50895 0.86 0.000215153 0.000170439 0.0186278 0.0149426 -1 -1 -1 -1 30 1987 21 6.65987e+06 418374 526063. 1820.29 0.86 0.0565959 0.0467885 22546 126617 -1 1675 18 1050 1751 89648 21297 2.54417 2.54417 -99.3535 -2.54417 0 0 666494. 2306.21 0.31 0.05 0.12 -1 -1 0.31 0.0162979 0.0143824 133 88 29 29 85 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.65 vpr 64.19 MiB 0.02 7076 -1 -1 1 0.05 -1 -1 34224 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65732 32 32 407 319 1 194 84 17 17 289 -1 unnamed_device 25.4 MiB 0.19 969 7587 1560 5690 337 64.2 MiB 0.08 0.00 4.0593 -135.974 -4.0593 4.0593 0.97 0.000298929 0.000230566 0.0135139 0.0112082 -1 -1 -1 -1 32 2319 20 6.65987e+06 253560 554710. 1919.41 1.00 0.0557418 0.0469158 22834 132086 -1 2040 23 1856 2812 178487 41989 3.53137 3.53137 -133.763 -3.53137 0 0 701300. 2426.64 0.31 0.06 0.12 -1 -1 0.31 0.0171988 0.0150094 151 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.45 vpr 64.14 MiB 0.02 7068 -1 -1 1 0.04 -1 -1 34164 -1 -1 34 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65684 32 32 407 319 1 195 98 17 17 289 -1 unnamed_device 25.2 MiB 0.43 1039 19223 6359 10018 2846 64.1 MiB 0.14 0.00 4.06007 -140.169 -4.06007 4.06007 0.85 0.000234183 0.000186692 0.021595 0.0172521 -1 -1 -1 -1 28 2771 24 6.65987e+06 431052 500653. 1732.36 1.02 0.0656223 0.0543637 21970 115934 -1 2216 20 1629 2862 194922 45065 3.75757 3.75757 -139.87 -3.75757 0 0 612192. 2118.31 0.25 0.06 0.10 -1 -1 0.25 0.015982 0.0139802 152 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.10 vpr 64.04 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 34232 -1 -1 30 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65576 32 32 345 287 1 161 94 17 17 289 -1 unnamed_device 25.3 MiB 0.21 697 8614 1900 5780 934 64.0 MiB 0.07 0.00 3.41884 -113.998 -3.41884 3.41884 0.87 0.000206004 0.000161124 0.0104849 0.00845867 -1 -1 -1 -1 32 1820 17 6.65987e+06 380340 554710. 1919.41 0.92 0.0448956 0.0375126 22834 132086 -1 1492 22 1148 1828 107428 26393 2.74151 2.74151 -105.644 -2.74151 0 0 701300. 2426.64 0.29 0.05 0.11 -1 -1 0.29 0.014387 0.0125029 120 65 32 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.31 vpr 63.97 MiB 0.02 7032 -1 -1 1 0.04 -1 -1 34188 -1 -1 17 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65504 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 25.3 MiB 0.32 800 12464 4445 5613 2406 64.0 MiB 0.09 0.00 3.46898 -107.215 -3.46898 3.46898 0.89 0.00019997 0.000156691 0.0170875 0.013651 -1 -1 -1 -1 32 1807 19 6.65987e+06 215526 554710. 1919.41 0.91 0.0510589 0.0422033 22834 132086 -1 1612 21 941 1768 104618 25029 2.51805 2.51805 -100.388 -2.51805 0 0 701300. 2426.64 0.31 0.04 0.12 -1 -1 0.31 0.0133321 0.0116015 109 90 0 0 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.50 vpr 64.06 MiB 0.02 7200 -1 -1 1 0.04 -1 -1 33940 -1 -1 33 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65600 30 32 374 297 1 186 95 17 17 289 -1 unnamed_device 25.0 MiB 0.30 998 10463 2754 7099 610 64.1 MiB 0.09 0.00 3.41496 -111.837 -3.41496 3.41496 0.94 0.000213302 0.000170101 0.0129597 0.0105604 -1 -1 -1 -1 26 2353 22 6.65987e+06 418374 477104. 1650.88 0.96 0.0546171 0.045868 21682 110474 -1 2029 17 1123 1957 131265 30894 2.71545 2.71545 -108.984 -2.71545 0 0 585099. 2024.56 0.26 0.05 0.11 -1 -1 0.26 0.0141206 0.0125491 137 60 60 30 57 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.45 vpr 63.79 MiB 0.02 7108 -1 -1 1 0.04 -1 -1 34084 -1 -1 31 28 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65316 28 32 332 260 1 180 91 17 17 289 -1 unnamed_device 24.9 MiB 0.21 995 16207 5283 8775 2149 63.8 MiB 0.13 0.00 4.24344 -123.397 -4.24344 4.24344 0.94 0.000193242 0.000152952 0.0192057 0.015567 -1 -1 -1 -1 28 2452 19 6.65987e+06 393018 500653. 1732.36 0.95 0.0561114 0.0469721 21970 115934 -1 2053 21 1498 2513 164181 38572 3.61111 3.61111 -125.602 -3.61111 0 0 612192. 2118.31 0.27 0.05 0.12 -1 -1 0.27 0.0142277 0.0125585 133 34 84 28 28 28 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.05 vpr 63.76 MiB 0.02 6984 -1 -1 1 0.04 -1 -1 33920 -1 -1 18 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65288 30 32 325 273 1 157 80 17 17 289 -1 unnamed_device 25.1 MiB 0.19 833 13152 4911 6590 1651 63.8 MiB 0.09 0.00 3.5343 -116.066 -3.5343 3.5343 0.85 0.000189181 0.000149716 0.0162887 0.0131504 -1 -1 -1 -1 32 1758 17 6.65987e+06 228204 554710. 1919.41 0.91 0.0469285 0.0388271 22834 132086 -1 1622 19 1092 1796 110886 26410 2.76277 2.76277 -110.032 -2.76277 0 0 701300. 2426.64 0.30 0.04 0.12 -1 -1 0.30 0.0120534 0.0105848 114 63 30 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.16 vpr 63.83 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 34068 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65360 32 32 361 308 1 158 80 17 17 289 -1 unnamed_device 25.1 MiB 0.33 910 8164 2057 5403 704 63.8 MiB 0.07 0.00 3.44398 -109.924 -3.44398 3.44398 0.86 0.000219018 0.000174042 0.012316 0.00999175 -1 -1 -1 -1 30 1877 20 6.65987e+06 202848 526063. 1820.29 0.86 0.0469381 0.038908 22546 126617 -1 1665 19 860 1405 84533 19191 2.47605 2.47605 -102.562 -2.47605 0 0 666494. 2306.21 0.27 0.04 0.11 -1 -1 0.27 0.0128525 0.0112062 113 91 0 0 91 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.66 vpr 64.05 MiB 0.04 7224 -1 -1 1 0.04 -1 -1 34040 -1 -1 35 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65584 31 32 335 251 1 196 98 17 17 289 -1 unnamed_device 25.1 MiB 0.20 1111 13823 3486 9077 1260 64.0 MiB 0.12 0.00 4.13353 -137.36 -4.13353 4.13353 0.92 0.000234818 0.000182046 0.0166072 0.0134227 -1 -1 -1 -1 32 2590 21 6.65987e+06 443730 554710. 1919.41 1.04 0.0599369 0.0504033 22834 132086 -1 2181 19 1360 2255 139229 34227 3.70543 3.70543 -138.179 -3.70543 0 0 701300. 2426.64 0.33 0.05 0.13 -1 -1 0.33 0.014366 0.01275 150 4 124 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.93 vpr 64.34 MiB 0.03 7188 -1 -1 1 0.04 -1 -1 34348 -1 -1 34 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65880 32 32 407 319 1 197 98 17 17 289 -1 unnamed_device 25.4 MiB 0.31 1037 13598 4125 8601 872 64.3 MiB 0.12 0.00 4.1263 -141.609 -4.1263 4.1263 0.92 0.000250062 0.000198811 0.0176691 0.0142417 -1 -1 -1 -1 26 2960 37 6.65987e+06 431052 477104. 1650.88 1.25 0.0779238 0.0658367 21682 110474 -1 2249 22 1692 3000 199861 46709 3.59517 3.59517 -140.665 -3.59517 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0178305 0.0156392 153 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.68 vpr 64.21 MiB 0.03 7304 -1 -1 1 0.04 -1 -1 33872 -1 -1 34 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65752 32 32 407 319 1 194 98 17 17 289 -1 unnamed_device 25.3 MiB 0.23 1033 10448 2380 7653 415 64.2 MiB 0.10 0.00 4.16458 -142.258 -4.16458 4.16458 0.88 0.000227579 0.000180213 0.0136564 0.0109757 -1 -1 -1 -1 28 2950 23 6.65987e+06 431052 500653. 1732.36 1.23 0.0616907 0.0516743 21970 115934 -1 2366 14 1336 2203 163664 38169 3.67477 3.67477 -147.386 -3.67477 0 0 612192. 2118.31 0.28 0.05 0.11 -1 -1 0.28 0.0135227 0.0121468 151 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 4.29 vpr 63.89 MiB 0.02 7244 -1 -1 1 0.04 -1 -1 33988 -1 -1 37 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65420 32 32 399 315 1 196 101 17 17 289 -1 unnamed_device 25.3 MiB 0.35 982 9031 1878 6401 752 63.9 MiB 0.08 0.00 3.86706 -126.941 -3.86706 3.86706 0.85 0.000223285 0.00017658 0.0110086 0.00892723 -1 -1 -1 -1 30 2516 24 6.65987e+06 469086 526063. 1820.29 0.97 0.0527037 0.0439763 22546 126617 -1 2125 20 1264 2174 119793 28949 3.29571 3.29571 -124.191 -3.29571 0 0 666494. 2306.21 0.27 0.05 0.12 -1 -1 0.27 0.0151636 0.0133061 148 65 60 30 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.55 vpr 63.67 MiB 0.02 7004 -1 -1 1 0.04 -1 -1 34100 -1 -1 18 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65196 30 32 296 244 1 156 80 17 17 289 -1 unnamed_device 24.8 MiB 0.31 698 7992 1870 5622 500 63.7 MiB 0.06 0.00 3.50927 -110.859 -3.50927 3.50927 0.90 0.000184222 0.00014674 0.010644 0.00873391 -1 -1 -1 -1 32 1861 17 6.65987e+06 228204 554710. 1919.41 0.97 0.0430998 0.0363375 22834 132086 -1 1458 20 905 1434 81381 21081 2.75597 2.75597 -105.004 -2.75597 0 0 701300. 2426.64 0.31 0.04 0.14 -1 -1 0.31 0.0144868 0.0128538 112 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.17 vpr 64.49 MiB 0.02 7112 -1 -1 1 0.04 -1 -1 34032 -1 -1 22 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66040 30 32 383 303 1 191 84 17 17 289 -1 unnamed_device 25.4 MiB 0.28 985 11796 3468 7405 923 64.5 MiB 0.11 0.00 4.19776 -134.529 -4.19776 4.19776 0.85 0.000230315 0.000182359 0.0172369 0.0139425 -1 -1 -1 -1 32 2009 21 6.65987e+06 278916 554710. 1919.41 0.90 0.0557442 0.0462361 22834 132086 -1 1752 20 1321 1969 105280 25542 3.56043 3.56043 -130.097 -3.56043 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.015448 0.0136244 145 63 60 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.63 vpr 64.05 MiB 0.02 7372 -1 -1 1 0.04 -1 -1 34400 -1 -1 39 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65592 32 32 469 381 1 198 103 17 17 289 -1 unnamed_device 25.6 MiB 0.24 1052 13117 2855 8842 1420 64.1 MiB 0.10 0.00 3.91498 -132.986 -3.91498 3.91498 0.94 0.000259669 0.00020629 0.0167786 0.013628 -1 -1 -1 -1 32 2453 22 6.65987e+06 494442 554710. 1919.41 0.98 0.0608658 0.0505698 22834 132086 -1 2157 22 1790 2994 187896 45084 3.62605 3.62605 -137.441 -3.62605 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0179191 0.0155926 154 127 0 0 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.72 vpr 63.97 MiB 0.02 7220 -1 -1 1 0.04 -1 -1 34316 -1 -1 31 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65504 31 32 425 341 1 189 94 17 17 289 -1 unnamed_device 25.4 MiB 0.16 1050 9679 2438 6769 472 64.0 MiB 0.09 0.00 3.91106 -131.382 -3.91106 3.91106 0.88 0.000427902 0.000363857 0.0153748 0.0126998 -1 -1 -1 -1 26 2853 26 6.65987e+06 393018 477104. 1650.88 1.25 0.0637988 0.0536406 21682 110474 -1 2216 22 1545 2682 190227 44085 3.91691 3.91691 -140.392 -3.91691 0 0 585099. 2024.56 0.26 0.06 0.10 -1 -1 0.26 0.0169902 0.0148516 146 94 31 31 93 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.57 vpr 64.14 MiB 0.03 7352 -1 -1 1 0.06 -1 -1 34172 -1 -1 30 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65680 30 32 404 328 1 182 92 17 17 289 -1 unnamed_device 25.4 MiB 0.29 992 11063 2679 7283 1101 64.1 MiB 0.09 0.00 3.74723 -113.498 -3.74723 3.74723 0.91 0.00021966 0.000173512 0.0141335 0.0114634 -1 -1 -1 -1 28 2320 21 6.65987e+06 380340 500653. 1732.36 0.88 0.0559482 0.0468534 21970 115934 -1 1911 18 1016 1843 106397 26846 3.08637 3.08637 -110.967 -3.08637 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0158639 0.0140921 136 92 26 26 90 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.90 vpr 64.11 MiB 0.02 7132 -1 -1 1 0.05 -1 -1 34024 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65644 32 32 407 319 1 198 85 17 17 289 -1 unnamed_device 25.3 MiB 0.39 1074 13477 4127 7567 1783 64.1 MiB 0.12 0.00 4.06547 -141.302 -4.06547 4.06547 1.00 0.000228597 0.000180904 0.0201545 0.0164508 -1 -1 -1 -1 32 2517 20 6.65987e+06 266238 554710. 1919.41 0.96 0.0598829 0.0497928 22834 132086 -1 2263 21 1834 3159 192050 44920 3.36097 3.36097 -134.209 -3.36097 0 0 701300. 2426.64 0.34 0.07 0.12 -1 -1 0.34 0.0181254 0.0160363 154 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.14 vpr 64.09 MiB 0.02 7372 -1 -1 1 0.03 -1 -1 34084 -1 -1 34 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65628 29 32 387 316 1 179 95 17 17 289 -1 unnamed_device 25.1 MiB 0.25 874 10895 2930 7022 943 64.1 MiB 0.09 0.00 3.36406 -101.988 -3.36406 3.36406 0.86 0.000220277 0.000174201 0.0133337 0.0107319 -1 -1 -1 -1 32 1935 18 6.65987e+06 431052 554710. 1919.41 0.89 0.0482552 0.039936 22834 132086 -1 1666 21 1137 1899 101145 25132 2.66151 2.66151 -98.0325 -2.66151 0 0 701300. 2426.64 0.30 0.04 0.12 -1 -1 0.30 0.0146317 0.0127484 134 88 26 26 85 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.05 vpr 63.50 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 33952 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 283 225 1 158 80 17 17 289 -1 unnamed_device 24.6 MiB 0.18 799 10056 2635 6899 522 63.5 MiB 0.08 0.00 3.5031 -122.874 -3.5031 3.5031 0.87 0.000205426 0.000165631 0.0129178 0.0104787 -1 -1 -1 -1 32 1971 18 6.65987e+06 202848 554710. 1919.41 0.91 0.0432357 0.0361987 22834 132086 -1 1754 22 1114 1735 125414 29154 2.86777 2.86777 -118.356 -2.86777 0 0 701300. 2426.64 0.29 0.05 0.11 -1 -1 0.29 0.0135667 0.0119384 117 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 5.04 vpr 63.94 MiB 0.03 7012 -1 -1 1 0.04 -1 -1 33880 -1 -1 33 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65472 32 32 407 319 1 194 97 17 17 289 -1 unnamed_device 25.5 MiB 0.41 1015 16525 5345 8784 2396 63.9 MiB 0.13 0.00 4.18856 -142.192 -4.18856 4.18856 1.03 0.000234025 0.000184401 0.021043 0.0171308 -1 -1 -1 -1 32 2391 18 6.65987e+06 418374 554710. 1919.41 0.97 0.061095 0.0511326 22834 132086 -1 1935 22 1491 2315 154663 35170 3.56843 3.56843 -134.747 -3.56843 0 0 701300. 2426.64 0.32 0.06 0.14 -1 -1 0.32 0.0188209 0.0165247 150 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.26 vpr 64.34 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 34012 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65880 32 32 407 319 1 201 85 17 17 289 -1 unnamed_device 25.4 MiB 0.30 1026 16081 4881 8736 2464 64.3 MiB 0.12 0.00 4.23393 -146.239 -4.23393 4.23393 0.85 0.000227134 0.000178885 0.0222291 0.0178092 -1 -1 -1 -1 32 2423 20 6.65987e+06 266238 554710. 1919.41 0.94 0.0621139 0.0513255 22834 132086 -1 2088 20 1618 2397 158021 36521 3.54323 3.54323 -139.034 -3.54323 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.0166336 0.0146456 157 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.81 vpr 63.68 MiB 0.02 7040 -1 -1 1 0.04 -1 -1 34116 -1 -1 29 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65204 32 32 315 267 1 158 93 17 17 289 -1 unnamed_device 24.8 MiB 0.25 688 16683 5557 7719 3407 63.7 MiB 0.10 0.00 3.44878 -105.048 -3.44878 3.44878 0.96 0.000192075 0.000150792 0.0183431 0.0147613 -1 -1 -1 -1 32 2061 28 6.65987e+06 367662 554710. 1919.41 1.10 0.0603129 0.0504057 22834 132086 -1 1604 22 1074 1599 128090 35387 2.74465 2.74465 -99.8729 -2.74465 0 0 701300. 2426.64 0.31 0.05 0.12 -1 -1 0.31 0.0149201 0.013139 111 55 32 32 54 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.32 vpr 63.91 MiB 0.02 6932 -1 -1 1 0.04 -1 -1 33900 -1 -1 18 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65448 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 25.1 MiB 0.21 720 9356 2387 5915 1054 63.9 MiB 0.08 0.00 3.4529 -113.153 -3.4529 3.4529 0.88 0.000182473 0.000145676 0.0118602 0.00971275 -1 -1 -1 -1 30 1921 19 6.65987e+06 228204 526063. 1820.29 0.92 0.0444613 0.037458 22546 126617 -1 1653 19 1135 1847 109681 25398 2.89017 2.89017 -110.427 -2.89017 0 0 666494. 2306.21 0.28 0.04 0.12 -1 -1 0.28 0.0128444 0.011367 118 4 93 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 6.30 vpr 64.00 MiB 0.02 7244 -1 -1 1 0.04 -1 -1 33892 -1 -1 32 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65536 32 32 381 303 1 188 96 17 17 289 -1 unnamed_device 25.0 MiB 0.38 913 5790 1032 4561 197 64.0 MiB 0.05 0.00 3.91316 -128.563 -3.91316 3.91316 0.85 0.000214525 0.000169549 0.00777021 0.0064358 -1 -1 -1 -1 26 2646 37 6.65987e+06 405696 477104. 1650.88 3.03 0.0950528 0.0790268 21682 110474 -1 2100 23 1573 2374 154692 36908 3.58831 3.58831 -133.102 -3.58831 0 0 585099. 2024.56 0.25 0.06 0.10 -1 -1 0.25 0.0169989 0.0146948 138 59 60 32 58 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.88 vpr 64.11 MiB 0.03 7320 -1 -1 1 0.04 -1 -1 33752 -1 -1 30 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65652 32 32 406 330 1 190 94 17 17 289 -1 unnamed_device 25.3 MiB 0.15 879 9892 2434 7009 449 64.1 MiB 0.10 0.00 4.11224 -123.302 -4.11224 4.11224 0.86 0.000321479 0.000268756 0.0144725 0.0118283 -1 -1 -1 -1 28 2708 31 6.65987e+06 380340 500653. 1732.36 1.43 0.0751404 0.0641647 21970 115934 -1 2190 24 1517 2512 179886 43994 3.75965 3.75965 -131.439 -3.75965 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0187983 0.0164705 134 88 28 28 88 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.56 vpr 64.03 MiB 0.03 7284 -1 -1 1 0.05 -1 -1 34032 -1 -1 35 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65564 32 32 399 285 1 228 99 17 17 289 -1 unnamed_device 25.6 MiB 0.22 1247 19251 5678 10972 2601 64.0 MiB 0.17 0.00 4.78976 -159.687 -4.78976 4.78976 0.86 0.000238781 0.000190561 0.0250133 0.0203764 -1 -1 -1 -1 32 2872 20 6.65987e+06 443730 554710. 1919.41 1.02 0.0727967 0.0613132 22834 132086 -1 2519 21 1954 3285 237082 51906 4.04943 4.04943 -149.419 -4.04943 0 0 701300. 2426.64 0.30 0.07 0.12 -1 -1 0.30 0.0175497 0.0155177 177 3 156 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.25 vpr 64.29 MiB 0.02 7276 -1 -1 1 0.04 -1 -1 33868 -1 -1 32 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65832 30 32 371 295 1 184 94 17 17 289 -1 unnamed_device 25.3 MiB 0.31 1003 9892 2469 6555 868 64.3 MiB 0.08 0.00 3.59821 -110.073 -3.59821 3.59821 0.85 0.00020839 0.000164853 0.0118818 0.00956624 -1 -1 -1 -1 32 2189 22 6.65987e+06 405696 554710. 1919.41 0.94 0.0497122 0.0414156 22834 132086 -1 1957 22 1356 2177 131501 31199 2.77671 2.77671 -109.109 -2.77671 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.0151062 0.0131895 136 59 60 30 56 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.36 vpr 63.53 MiB 0.02 6920 -1 -1 1 0.04 -1 -1 34212 -1 -1 20 27 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65056 27 32 269 226 1 143 79 17 17 289 -1 unnamed_device 24.8 MiB 0.12 768 12754 4322 6521 1911 63.5 MiB 0.08 0.00 3.3979 -99.6122 -3.3979 3.3979 0.96 0.00016626 0.000130912 0.0160227 0.013089 -1 -1 -1 -1 32 1486 19 6.65987e+06 253560 554710. 1919.41 0.97 0.0486231 0.0407528 22834 132086 -1 1328 19 850 1272 81588 19169 2.56737 2.56737 -92.6845 -2.56737 0 0 701300. 2426.64 0.31 0.04 0.13 -1 -1 0.31 0.0120134 0.0106387 107 34 54 27 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.41 vpr 64.48 MiB 0.03 7300 -1 -1 1 0.04 -1 -1 34204 -1 -1 40 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66028 32 32 493 378 1 232 104 17 17 289 -1 unnamed_device 26.0 MiB 0.28 1366 15232 4128 9656 1448 64.5 MiB 0.14 0.00 4.15924 -136.806 -4.15924 4.15924 0.85 0.000277765 0.000220544 0.0207731 0.0166701 -1 -1 -1 -1 32 3092 23 6.65987e+06 507120 554710. 1919.41 0.99 0.06996 0.0578366 22834 132086 -1 2778 24 2083 3703 243892 56131 3.46791 3.46791 -136.36 -3.46791 0 0 701300. 2426.64 0.31 0.07 0.12 -1 -1 0.31 0.0200441 0.0173711 184 95 62 31 95 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.17 vpr 64.46 MiB 0.02 7448 -1 -1 1 0.04 -1 -1 34200 -1 -1 21 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66012 31 32 455 371 1 189 84 17 17 289 -1 unnamed_device 25.5 MiB 0.24 989 7038 1632 4931 475 64.5 MiB 0.07 0.00 4.3087 -132.62 -4.3087 4.3087 0.84 0.000235578 0.000185919 0.0114304 0.00927209 -1 -1 -1 -1 32 2348 23 6.65987e+06 266238 554710. 1919.41 0.91 0.0526485 0.0432866 22834 132086 -1 2136 20 1285 2053 142990 32843 3.57811 3.57811 -134.798 -3.57811 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.0161723 0.0141581 145 124 0 0 124 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.48 vpr 63.89 MiB 0.02 7040 -1 -1 1 0.04 -1 -1 33896 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65424 32 32 355 304 1 151 80 17 17 289 -1 unnamed_device 24.9 MiB 0.22 741 9196 2428 5976 792 63.9 MiB 0.07 0.00 3.81463 -109.262 -3.81463 3.81463 0.95 0.000220879 0.000177835 0.0138884 0.0114192 -1 -1 -1 -1 32 1801 19 6.65987e+06 202848 554710. 1919.41 0.96 0.0532942 0.0449636 22834 132086 -1 1593 16 667 1046 64001 15581 2.76971 2.76971 -104.892 -2.76971 0 0 701300. 2426.64 0.31 0.04 0.13 -1 -1 0.31 0.0149849 0.013423 109 89 0 0 89 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.43 vpr 64.00 MiB 0.02 6912 -1 -1 1 0.04 -1 -1 34040 -1 -1 32 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65540 32 32 364 282 1 196 96 17 17 289 -1 unnamed_device 25.0 MiB 0.13 1123 15645 4083 9696 1866 64.0 MiB 0.12 0.00 4.2837 -136.384 -4.2837 4.2837 0.96 0.000211771 0.000167069 0.0188431 0.0153039 -1 -1 -1 -1 26 2734 22 6.65987e+06 405696 477104. 1650.88 1.01 0.0583938 0.0487463 21682 110474 -1 2304 21 1435 2192 157562 36356 3.90497 3.90497 -138.663 -3.90497 0 0 585099. 2024.56 0.25 0.05 0.10 -1 -1 0.25 0.0161463 0.0142706 146 34 90 30 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.86 vpr 64.05 MiB 0.03 7372 -1 -1 1 0.04 -1 -1 34460 -1 -1 36 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65584 31 32 443 336 1 220 99 17 17 289 -1 unnamed_device 25.6 MiB 0.34 1167 13551 3218 9177 1156 64.0 MiB 0.13 0.00 4.22766 -133.836 -4.22766 4.22766 0.90 0.000263693 0.000210924 0.0194889 0.0159014 -1 -1 -1 -1 32 2393 23 6.65987e+06 456408 554710. 1919.41 1.00 0.0709292 0.0599018 22834 132086 -1 2240 21 1644 2505 148012 35341 3.52031 3.52031 -130.484 -3.52031 0 0 701300. 2426.64 0.34 0.06 0.13 -1 -1 0.34 0.019955 0.0176184 171 64 87 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 6.08 vpr 64.07 MiB 0.02 7212 -1 -1 1 0.04 -1 -1 34212 -1 -1 33 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65604 30 32 373 297 1 186 95 17 17 289 -1 unnamed_device 25.0 MiB 0.30 1070 11111 2802 7426 883 64.1 MiB 0.09 0.00 3.62941 -110.797 -3.62941 3.62941 0.89 0.000216898 0.000171859 0.0133401 0.0108081 -1 -1 -1 -1 22 3059 42 6.65987e+06 418374 420624. 1455.45 2.81 0.0855172 0.0706322 20818 92861 -1 2541 19 1204 2230 204381 44907 3.36171 3.36171 -117.007 -3.36171 0 0 500653. 1732.36 0.23 0.06 0.08 -1 -1 0.23 0.0143945 0.0126119 134 61 58 30 58 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.28 vpr 64.42 MiB 0.02 7276 -1 -1 1 0.04 -1 -1 34076 -1 -1 42 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65964 32 32 407 319 1 201 106 17 17 289 -1 unnamed_device 25.3 MiB 0.26 1074 12606 3053 8336 1217 64.4 MiB 0.11 0.00 4.0783 -140.694 -4.0783 4.0783 0.85 0.000234095 0.000184681 0.0145852 0.0117767 -1 -1 -1 -1 30 2478 23 6.65987e+06 532476 526063. 1820.29 0.98 0.0550997 0.0457093 22546 126617 -1 2051 21 1402 2299 137271 31767 3.45817 3.45817 -133.145 -3.45817 0 0 666494. 2306.21 0.28 0.05 0.11 -1 -1 0.28 0.0156737 0.0136999 157 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.59 vpr 63.81 MiB 0.02 7204 -1 -1 1 0.04 -1 -1 34304 -1 -1 38 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65340 32 32 405 318 1 200 102 17 17 289 -1 unnamed_device 25.3 MiB 0.31 984 6766 1232 5172 362 63.8 MiB 0.07 0.00 3.41884 -115.761 -3.41884 3.41884 0.93 0.000247148 0.000195377 0.00970804 0.00800792 -1 -1 -1 -1 26 2790 23 6.65987e+06 481764 477104. 1650.88 0.94 0.0585829 0.0496962 21682 110474 -1 2277 22 1589 2490 166815 39888 2.87011 2.87011 -115.85 -2.87011 0 0 585099. 2024.56 0.26 0.07 0.10 -1 -1 0.26 0.0227187 0.0202367 155 65 63 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.90 vpr 63.59 MiB 0.02 7036 -1 -1 1 0.04 -1 -1 33988 -1 -1 16 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65112 29 32 287 238 1 135 77 17 17 289 -1 unnamed_device 24.8 MiB 0.09 508 12791 3386 7672 1733 63.6 MiB 0.06 0.00 3.7595 -104.085 -3.7595 3.7595 0.84 0.000167729 0.000131427 0.0150113 0.0120138 -1 -1 -1 -1 32 1446 20 6.65987e+06 202848 554710. 1919.41 0.86 0.0446822 0.0369271 22834 132086 -1 1280 19 920 1333 92562 23039 2.80171 2.80171 -100.186 -2.80171 0 0 701300. 2426.64 0.29 0.04 0.12 -1 -1 0.29 0.0111545 0.00976707 93 34 58 29 29 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.35 vpr 63.76 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 34116 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65292 32 32 334 290 1 154 81 17 17 289 -1 unnamed_device 24.8 MiB 0.20 872 14431 4553 8297 1581 63.8 MiB 0.09 0.00 3.69338 -109.525 -3.69338 3.69338 0.91 0.000212239 0.00017062 0.0188757 0.0153019 -1 -1 -1 -1 32 1890 18 6.65987e+06 215526 554710. 1919.41 0.94 0.0540843 0.0450317 22834 132086 -1 1798 17 771 1118 82831 18046 2.62671 2.62671 -102.907 -2.62671 0 0 701300. 2426.64 0.29 0.04 0.13 -1 -1 0.29 0.0123393 0.0109298 111 82 0 0 82 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 5.81 vpr 64.08 MiB 0.03 7044 -1 -1 1 0.04 -1 -1 34024 -1 -1 37 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65620 31 32 365 281 1 196 100 17 17 289 -1 unnamed_device 25.1 MiB 0.24 964 13556 3768 8523 1265 64.1 MiB 0.12 0.00 4.3897 -133.197 -4.3897 4.3897 0.86 0.000230146 0.000184894 0.0159005 0.0130657 -1 -1 -1 -1 28 2998 50 6.65987e+06 469086 500653. 1732.36 2.10 0.0712368 0.05962 21970 115934 -1 2210 24 2070 3451 281681 63736 3.91377 3.91377 -140.951 -3.91377 0 0 612192. 2118.31 0.27 0.10 0.11 -1 -1 0.27 0.024783 0.0221684 150 34 93 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.60 vpr 63.76 MiB 0.02 7180 -1 -1 1 0.06 -1 -1 33988 -1 -1 31 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65292 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 24.9 MiB 0.27 621 11063 2736 7707 620 63.8 MiB 0.08 0.00 3.58224 -95.8028 -3.58224 3.58224 0.91 0.000171037 0.000133562 0.0112281 0.00901717 -1 -1 -1 -1 26 1813 22 6.65987e+06 393018 477104. 1650.88 1.02 0.0490225 0.0412671 21682 110474 -1 1602 17 840 1268 82834 21231 2.78565 2.78565 -100.012 -2.78565 0 0 585099. 2024.56 0.26 0.04 0.10 -1 -1 0.26 0.0114202 0.0101537 108 56 29 29 52 26 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.77 vpr 63.80 MiB 0.02 7028 -1 -1 1 0.05 -1 -1 33896 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65328 32 32 314 256 1 160 80 17 17 289 -1 unnamed_device 24.9 MiB 0.23 823 7992 1920 5681 391 63.8 MiB 0.08 0.00 3.5141 -118.56 -3.5141 3.5141 0.95 0.000212288 0.000163298 0.0115542 0.00939533 -1 -1 -1 -1 32 1965 19 6.65987e+06 202848 554710. 1919.41 1.03 0.045829 0.0384227 22834 132086 -1 1725 18 1124 1875 121897 29067 2.82857 2.82857 -115.262 -2.82857 0 0 701300. 2426.64 0.32 0.05 0.12 -1 -1 0.32 0.0133285 0.0118801 119 34 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.35 vpr 64.30 MiB 0.03 7328 -1 -1 1 0.04 -1 -1 34104 -1 -1 36 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65848 31 32 387 307 1 189 99 17 17 289 -1 unnamed_device 25.5 MiB 0.28 997 12411 3191 8197 1023 64.3 MiB 0.09 0.00 3.50507 -117.588 -3.50507 3.50507 0.91 0.000225858 0.000175333 0.0148189 0.0118768 -1 -1 -1 -1 26 2261 19 6.65987e+06 456408 477104. 1650.88 0.88 0.0564569 0.0473976 21682 110474 -1 1929 20 1442 2138 126025 29548 2.78571 2.78571 -115.079 -2.78571 0 0 585099. 2024.56 0.25 0.06 0.10 -1 -1 0.25 0.0180723 0.0160056 142 64 58 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.08 vpr 63.61 MiB 0.02 6968 -1 -1 1 0.04 -1 -1 33824 -1 -1 16 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65140 31 32 308 262 1 147 79 17 17 289 -1 unnamed_device 24.7 MiB 0.32 889 12754 3806 7303 1645 63.6 MiB 0.08 0.00 3.11304 -101.246 -3.11304 3.11304 0.84 0.000195861 0.000155969 0.0154357 0.0123096 -1 -1 -1 -1 32 1732 19 6.65987e+06 202848 554710. 1919.41 0.88 0.0452196 0.037293 22834 132086 -1 1557 13 635 1065 56669 14489 2.67545 2.67545 -99.9304 -2.67545 0 0 701300. 2426.64 0.29 0.03 0.11 -1 -1 0.29 0.00953536 0.00851094 105 55 31 31 53 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 5.65 vpr 64.28 MiB 0.02 7132 -1 -1 1 0.04 -1 -1 34016 -1 -1 32 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65820 32 32 383 307 1 184 96 17 17 289 -1 unnamed_device 25.3 MiB 0.37 929 17616 5738 7949 3929 64.3 MiB 0.11 0.00 3.3979 -111.1 -3.3979 3.3979 0.87 0.000223965 0.000176453 0.0208594 0.0168011 -1 -1 -1 -1 32 2317 41 6.65987e+06 405696 554710. 1919.41 2.03 0.0852565 0.0710206 22834 132086 -1 1896 18 1239 2139 175466 43245 2.75477 2.75477 -106.462 -2.75477 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0168361 0.0150402 136 65 52 26 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.62 vpr 63.93 MiB 0.02 7308 -1 -1 1 0.03 -1 -1 34104 -1 -1 36 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65460 31 32 422 339 1 195 99 17 17 289 -1 unnamed_device 25.4 MiB 0.80 966 17427 4771 10069 2587 63.9 MiB 0.13 0.00 3.7525 -119.295 -3.7525 3.7525 0.85 0.000247417 0.00019615 0.0214676 0.0171495 -1 -1 -1 -1 28 2373 19 6.65987e+06 456408 500653. 1732.36 0.85 0.0599269 0.0493077 21970 115934 -1 2028 19 1642 2395 148618 35956 3.00737 3.00737 -117.232 -3.00737 0 0 612192. 2118.31 0.26 0.05 0.10 -1 -1 0.26 0.016465 0.0142604 148 93 31 31 92 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.63 vpr 63.84 MiB 0.02 6912 -1 -1 1 0.04 -1 -1 33908 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65376 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 25.0 MiB 0.29 861 11652 3522 6006 2124 63.8 MiB 0.08 0.00 2.81844 -100.349 -2.81844 2.81844 0.97 0.000198971 0.00015632 0.0156976 0.0127349 -1 -1 -1 -1 32 1853 21 6.65987e+06 228204 554710. 1919.41 1.01 0.0534988 0.0447903 22834 132086 -1 1607 17 1010 1569 98798 22749 2.60745 2.60745 -102.851 -2.60745 0 0 701300. 2426.64 0.30 0.04 0.12 -1 -1 0.30 0.0131704 0.011693 115 61 32 32 60 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.22 vpr 63.85 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 33804 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65380 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 25.1 MiB 0.32 667 7380 1595 4913 872 63.8 MiB 0.05 0.00 3.38184 -112.707 -3.38184 3.38184 0.84 0.000206345 0.000165141 0.00994296 0.00808268 -1 -1 -1 -1 32 2059 26 6.65987e+06 228204 554710. 1919.41 1.01 0.0465543 0.038809 22834 132086 -1 1562 19 1091 1685 116660 29140 2.76171 2.76171 -110.403 -2.76171 0 0 701300. 2426.64 0.29 0.04 0.12 -1 -1 0.29 0.0124826 0.0109317 121 63 32 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.45 vpr 63.78 MiB 0.02 7264 -1 -1 1 0.04 -1 -1 34304 -1 -1 36 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65308 32 32 407 319 1 198 100 17 17 289 -1 unnamed_device 25.2 MiB 0.26 1042 12164 2979 8000 1185 63.8 MiB 0.10 0.00 4.02524 -139.262 -4.02524 4.02524 0.89 0.000224224 0.000177437 0.0143822 0.011598 -1 -1 -1 -1 28 2574 23 6.65987e+06 456408 500653. 1732.36 0.93 0.0544088 0.0451301 21970 115934 -1 2245 21 1795 2760 183069 42394 3.45191 3.45191 -135.897 -3.45191 0 0 612192. 2118.31 0.26 0.06 0.12 -1 -1 0.26 0.017424 0.0153585 154 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.23 vpr 64.05 MiB 0.02 7212 -1 -1 1 0.04 -1 -1 34152 -1 -1 32 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65592 29 32 367 293 1 183 93 17 17 289 -1 unnamed_device 25.1 MiB 0.28 974 17313 5216 9261 2836 64.1 MiB 0.13 0.00 3.57304 -105.909 -3.57304 3.57304 0.87 0.000215211 0.000171489 0.0209218 0.0168287 -1 -1 -1 -1 32 2030 20 6.65987e+06 405696 554710. 1919.41 0.87 0.0572275 0.0471326 22834 132086 -1 1783 15 787 1212 72557 17895 2.73571 2.73571 -101.927 -2.73571 0 0 701300. 2426.64 0.29 0.03 0.11 -1 -1 0.29 0.0132598 0.0118308 133 62 56 29 58 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.26 vpr 64.08 MiB 0.02 7196 -1 -1 1 0.04 -1 -1 34044 -1 -1 37 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65616 32 32 469 381 1 200 101 17 17 289 -1 unnamed_device 25.6 MiB 0.35 1004 11616 2968 7911 737 64.1 MiB 0.10 0.00 3.97241 -135.454 -3.97241 3.97241 0.86 0.000245837 0.000193262 0.0149478 0.0118908 -1 -1 -1 -1 32 2350 23 6.65987e+06 469086 554710. 1919.41 0.91 0.0575117 0.0473782 22834 132086 -1 2119 18 1433 2346 143697 34733 3.52231 3.52231 -134.27 -3.52231 0 0 701300. 2426.64 0.29 0.05 0.11 -1 -1 0.29 0.0155355 0.0136356 156 127 0 0 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 5.70 vpr 63.50 MiB 0.02 6808 -1 -1 1 0.03 -1 -1 33768 -1 -1 16 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65024 31 32 259 212 1 146 79 17 17 289 -1 unnamed_device 24.7 MiB 0.18 635 8698 2288 5521 889 63.5 MiB 0.07 0.00 2.9397 -95.8867 -2.9397 2.9397 0.87 0.000194796 0.000158562 0.0113121 0.00927696 -1 -1 -1 -1 32 1618 16 6.65987e+06 202848 554710. 1919.41 2.45 0.0849356 0.070936 22834 132086 -1 1428 19 892 1396 78771 21607 2.61571 2.61571 -97.4937 -2.61571 0 0 701300. 2426.64 0.30 0.04 0.12 -1 -1 0.30 0.0115836 0.0102602 105 4 85 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.50 vpr 64.24 MiB 0.02 7304 -1 -1 1 0.04 -1 -1 34068 -1 -1 33 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65784 32 32 418 338 1 190 97 17 17 289 -1 unnamed_device 25.4 MiB 0.22 948 20077 6167 11074 2836 64.2 MiB 0.15 0.00 4.10497 -133.778 -4.10497 4.10497 0.88 0.000237769 0.000187399 0.0253409 0.0202843 -1 -1 -1 -1 32 2138 21 6.65987e+06 418374 554710. 1919.41 0.96 0.0680995 0.0564173 22834 132086 -1 1855 19 1230 1767 113991 26733 3.46417 3.46417 -126.503 -3.46417 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0195772 0.0172145 142 92 28 28 92 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.96 vpr 63.83 MiB 0.02 7196 -1 -1 1 0.04 -1 -1 33884 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 25.0 MiB 0.24 805 9196 3450 4876 870 63.8 MiB 0.07 0.00 3.54047 -120.422 -3.54047 3.54047 0.91 0.000223891 0.00017629 0.0154269 0.0126552 -1 -1 -1 -1 30 2166 35 6.65987e+06 202848 526063. 1820.29 1.44 0.0876728 0.0760202 22546 126617 -1 1721 17 1153 1677 119370 27737 2.75177 2.75177 -114.486 -2.75177 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0177851 0.0159531 115 96 0 0 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.54 vpr 63.97 MiB 0.02 7188 -1 -1 1 0.05 -1 -1 33996 -1 -1 35 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65508 32 32 401 316 1 196 99 17 17 289 -1 unnamed_device 25.4 MiB 0.27 1002 18111 5520 9663 2928 64.0 MiB 0.15 0.00 3.45184 -118.995 -3.45184 3.45184 0.89 0.000297556 0.000242959 0.0238077 0.0191885 -1 -1 -1 -1 32 2250 18 6.65987e+06 443730 554710. 1919.41 0.95 0.0645535 0.0537115 22834 132086 -1 1984 20 1211 1785 114450 27538 2.92871 2.92871 -113.309 -2.92871 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0158785 0.0139949 149 65 61 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.35 vpr 64.25 MiB 0.03 7276 -1 -1 1 0.04 -1 -1 34484 -1 -1 43 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65792 32 32 500 382 1 232 107 17 17 289 -1 unnamed_device 25.8 MiB 0.32 1201 15034 3694 9653 1687 64.2 MiB 0.13 0.00 4.6905 -158.567 -4.6905 4.6905 0.93 0.000296697 0.000225422 0.0193272 0.0156803 -1 -1 -1 -1 26 3580 40 6.65987e+06 545154 477104. 1650.88 1.78 0.105786 0.0907775 21682 110474 -1 2748 23 2234 3617 241095 54547 4.27157 4.27157 -157.997 -4.27157 0 0 585099. 2024.56 0.27 0.08 0.11 -1 -1 0.27 0.0222677 0.0196067 186 96 64 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.32 vpr 63.14 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 33872 -1 -1 15 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64652 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 24.6 MiB 0.18 532 10509 2640 7460 409 63.1 MiB 0.06 0.00 2.61752 -80.0454 -2.61752 2.61752 0.92 0.000148961 0.000116709 0.0120144 0.00966443 -1 -1 -1 -1 26 1435 38 6.65987e+06 190170 477104. 1650.88 1.07 0.0433009 0.0357958 21682 110474 -1 1200 16 635 870 65985 16366 2.23045 2.23045 -84.1729 -2.23045 0 0 585099. 2024.56 0.26 0.03 0.10 -1 -1 0.26 0.00857646 0.00757015 83 56 0 0 53 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.97 vpr 63.71 MiB 0.02 6816 -1 -1 1 0.03 -1 -1 34036 -1 -1 16 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65240 30 32 296 244 1 137 78 17 17 289 -1 unnamed_device 24.9 MiB 0.14 762 10536 3371 5501 1664 63.7 MiB 0.07 0.00 3.53704 -109.534 -3.53704 3.53704 0.86 0.000176247 0.000139416 0.0134536 0.010957 -1 -1 -1 -1 32 1600 16 6.65987e+06 202848 554710. 1919.41 0.90 0.0449791 0.0376944 22834 132086 -1 1431 19 799 1198 93640 20131 2.50811 2.50811 -100.397 -2.50811 0 0 701300. 2426.64 0.30 0.04 0.12 -1 -1 0.30 0.0116723 0.0102421 96 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.26 vpr 63.74 MiB 0.02 6940 -1 -1 1 0.04 -1 -1 33740 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65268 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 24.8 MiB 0.20 856 9872 2316 7018 538 63.7 MiB 0.08 0.00 3.4859 -122.574 -3.4859 3.4859 0.87 0.000204285 0.000164586 0.0126941 0.0103389 -1 -1 -1 -1 32 2258 21 6.65987e+06 228204 554710. 1919.41 0.97 0.0503115 0.0423163 22834 132086 -1 1925 15 1074 1910 122835 28729 2.94997 2.94997 -119.966 -2.94997 0 0 701300. 2426.64 0.30 0.04 0.12 -1 -1 0.30 0.0116685 0.0104679 126 34 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.98 vpr 63.58 MiB 0.02 6948 -1 -1 1 0.04 -1 -1 33828 -1 -1 34 25 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65104 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 24.6 MiB 0.18 702 13351 3659 7846 1846 63.6 MiB 0.09 0.00 3.31884 -88.9455 -3.31884 3.31884 0.94 0.000331638 0.000267458 0.0136609 0.0111658 -1 -1 -1 -1 26 1711 17 6.65987e+06 431052 477104. 1650.88 0.84 0.0395022 0.0330243 21682 110474 -1 1496 21 986 1564 109230 25903 2.73151 2.73151 -90.9013 -2.73151 0 0 585099. 2024.56 0.25 0.04 0.10 -1 -1 0.25 0.0105045 0.0091572 103 34 50 25 25 25 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.33 vpr 64.41 MiB 0.02 7240 -1 -1 1 0.03 -1 -1 34344 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65956 32 32 432 346 1 193 84 17 17 289 -1 unnamed_device 25.5 MiB 0.26 877 14541 4608 7775 2158 64.4 MiB 0.11 0.00 4.02035 -125.217 -4.02035 4.02035 0.84 0.000215236 0.00016857 0.0203307 0.0162665 -1 -1 -1 -1 32 2388 35 6.65987e+06 253560 554710. 1919.41 1.08 0.0753804 0.0628972 22834 132086 -1 1943 20 1480 2653 154776 38270 3.30865 3.30865 -119.433 -3.30865 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.0158793 0.0139114 147 94 32 32 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.30 vpr 64.15 MiB 0.02 7184 -1 -1 1 0.04 -1 -1 34108 -1 -1 37 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65692 31 32 421 339 1 193 100 17 17 289 -1 unnamed_device 25.3 MiB 0.28 939 18660 5305 10506 2849 64.2 MiB 0.14 0.00 3.4903 -116.281 -3.4903 3.4903 0.82 0.000240794 0.0001918 0.0230166 0.0185783 -1 -1 -1 -1 32 2168 23 6.65987e+06 469086 554710. 1919.41 0.95 0.0651704 0.0539486 22834 132086 -1 1955 17 1391 2276 132266 32346 3.08657 3.08657 -112.981 -3.08657 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.0150481 0.0133464 146 94 29 29 93 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 8.05 vpr 65.00 MiB 0.03 7376 -1 -1 1 0.04 -1 -1 34296 -1 -1 26 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66560 32 32 438 350 1 187 90 17 17 289 -1 unnamed_device 26.2 MiB 1.00 781 14160 4399 7086 2675 65.0 MiB 0.09 0.00 3.72605 -134.976 -3.72605 3.72605 0.86 0.000234623 0.000184919 0.0207347 0.0168121 -1 -1 -1 -1 58 2355 45 6.95648e+06 376368 997811. 3452.63 3.43 0.1131 0.0929055 30370 251734 -1 1777 22 1827 2905 256685 55164 3.82046 3.82046 -140.977 -3.82046 0 0 1.25153e+06 4330.55 0.50 0.08 0.24 -1 -1 0.50 0.0194132 0.0171401 85 96 32 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 7.20 vpr 64.96 MiB 0.02 7224 -1 -1 1 0.04 -1 -1 34340 -1 -1 14 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66516 30 32 409 330 1 179 76 17 17 289 -1 unnamed_device 26.1 MiB 2.18 824 12716 4465 6411 1840 65.0 MiB 0.08 0.00 3.9478 -132.405 -3.9478 3.9478 0.89 0.000226062 0.000178265 0.0212191 0.0171123 -1 -1 -1 -1 38 2654 28 6.95648e+06 202660 678818. 2348.85 1.77 0.0734624 0.0603106 26626 170182 -1 2188 22 1858 2789 247969 51753 4.03506 4.03506 -147.29 -4.03506 0 0 902133. 3121.57 0.33 0.07 0.15 -1 -1 0.33 0.0163367 0.0142434 76 91 30 30 89 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 8.37 vpr 64.86 MiB 0.04 6992 -1 -1 1 0.04 -1 -1 34212 -1 -1 19 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66416 32 32 387 309 1 179 83 17 17 289 -1 unnamed_device 26.0 MiB 0.85 1022 7103 1835 4569 699 64.9 MiB 0.06 0.00 3.60914 -132.635 -3.60914 3.60914 0.88 0.000377173 0.000299614 0.0116577 0.00964621 -1 -1 -1 -1 46 2565 43 6.95648e+06 275038 828058. 2865.25 4.18 0.118892 0.0985321 28066 200906 -1 2228 20 1383 2090 172291 34620 3.58116 3.58116 -138.28 -3.58116 0 0 1.01997e+06 3529.29 0.38 0.05 0.17 -1 -1 0.38 0.0156659 0.0137637 77 65 54 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 6.53 vpr 64.63 MiB 0.03 7244 -1 -1 1 0.04 -1 -1 34000 -1 -1 16 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66180 29 32 343 267 1 176 77 17 17 289 -1 unnamed_device 25.9 MiB 0.51 752 10672 3799 5216 1657 64.6 MiB 0.07 0.00 4.001 -128.21 -4.001 4.001 0.89 0.000203993 0.000162004 0.0162375 0.0133566 -1 -1 -1 -1 40 2598 38 6.95648e+06 231611 706193. 2443.58 2.62 0.092438 0.077457 26914 176310 -1 2092 24 1815 2619 252347 55632 4.49236 4.49236 -154.879 -4.49236 0 0 926341. 3205.33 0.35 0.08 0.16 -1 -1 0.35 0.0176845 0.0155424 75 34 87 29 29 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 10.79 vpr 64.83 MiB 0.02 7100 -1 -1 1 0.04 -1 -1 33932 -1 -1 13 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66388 32 32 376 288 1 187 77 17 17 289 -1 unnamed_device 25.9 MiB 0.87 812 8879 3631 4902 346 64.8 MiB 0.06 0.00 3.71619 -136.578 -3.71619 3.71619 0.90 0.000217302 0.000171809 0.0146666 0.0120464 -1 -1 -1 -1 60 2779 26 6.95648e+06 188184 1.01997e+06 3529.29 6.32 0.117777 0.0972151 30658 258169 -1 2020 20 1917 3309 267682 58055 3.68116 3.68116 -146.369 -3.68116 0 0 1.27783e+06 4421.56 0.55 0.08 0.25 -1 -1 0.55 0.0173787 0.015413 78 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 13.89 vpr 64.77 MiB 0.02 7056 -1 -1 1 0.04 -1 -1 34116 -1 -1 29 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66320 32 32 402 316 1 191 93 17 17 289 -1 unnamed_device 26.1 MiB 0.49 804 15213 5066 7689 2458 64.8 MiB 0.10 0.00 3.0985 -115.525 -3.0985 3.0985 0.90 0.000226379 0.000178662 0.0204726 0.0165431 -1 -1 -1 -1 40 2302 35 6.95648e+06 419795 706193. 2443.58 9.94 0.165808 0.137529 26914 176310 -1 1940 19 1565 2193 178455 41014 3.18097 3.18097 -120.927 -3.18097 0 0 926341. 3205.33 0.35 0.06 0.18 -1 -1 0.35 0.0165518 0.0146712 89 64 63 32 63 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 11.60 vpr 64.03 MiB 0.02 7128 -1 -1 1 0.04 -1 -1 34124 -1 -1 14 27 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65568 27 32 269 226 1 131 73 17 17 289 -1 unnamed_device 25.5 MiB 6.24 466 7825 3200 4121 504 64.0 MiB 0.04 0.00 3.26916 -94.6801 -3.26916 3.26916 0.90 0.000159241 0.000124218 0.0100214 0.00811157 -1 -1 -1 -1 38 1802 28 6.95648e+06 202660 678818. 2348.85 2.11 0.0580563 0.0477318 26626 170182 -1 1357 23 1123 1624 130296 32272 3.38283 3.38283 -105.787 -3.38283 0 0 902133. 3121.57 0.40 0.06 0.16 -1 -1 0.40 0.0151281 0.0132054 55 34 54 27 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 15.25 vpr 64.51 MiB 0.02 7144 -1 -1 1 0.04 -1 -1 33884 -1 -1 17 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66060 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 25.6 MiB 0.66 720 11088 4590 6028 470 64.5 MiB 0.07 0.00 3.0082 -105.111 -3.0082 3.0082 0.92 0.000231919 0.000168537 0.0157324 0.0128738 -1 -1 -1 -1 44 2805 44 6.95648e+06 246087 787024. 2723.27 11.35 0.158193 0.131613 27778 195446 -1 1830 18 1273 1799 152459 38105 3.36257 3.36257 -113.798 -3.36257 0 0 997811. 3452.63 0.39 0.05 0.17 -1 -1 0.39 0.0136364 0.0120364 77 4 115 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 7.00 vpr 64.75 MiB 0.02 7160 -1 -1 1 0.04 -1 -1 33972 -1 -1 11 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66304 31 32 338 292 1 143 74 17 17 289 -1 unnamed_device 25.8 MiB 1.84 523 9839 2724 5527 1588 64.8 MiB 0.06 0.00 3.10275 -98.6883 -3.10275 3.10275 0.87 0.000223336 0.00018019 0.0152576 0.0122849 -1 -1 -1 -1 42 1667 49 6.95648e+06 159232 744469. 2576.02 1.87 0.0680408 0.0559074 27202 183097 -1 1242 24 987 1542 129535 31017 3.07417 3.07417 -108.139 -3.07417 0 0 949917. 3286.91 0.36 0.05 0.17 -1 -1 0.36 0.014507 0.0125942 57 85 0 0 84 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 6.41 vpr 64.49 MiB 0.02 6804 -1 -1 1 0.03 -1 -1 33924 -1 -1 10 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66036 32 32 314 256 1 156 74 17 17 289 -1 unnamed_device 25.9 MiB 1.02 638 10614 4216 4843 1555 64.5 MiB 0.06 0.00 2.95005 -114.898 -2.95005 2.95005 0.93 0.000189591 0.000149738 0.0158569 0.0129286 -1 -1 -1 -1 38 2010 47 6.95648e+06 144757 678818. 2348.85 2.13 0.0800227 0.0660846 26626 170182 -1 1682 21 1536 2200 204120 42048 3.20292 3.20292 -127.541 -3.20292 0 0 902133. 3121.57 0.33 0.06 0.15 -1 -1 0.33 0.0132027 0.0116085 62 34 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 7.05 vpr 64.66 MiB 0.02 7100 -1 -1 1 0.04 -1 -1 33736 -1 -1 12 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66216 30 32 325 273 1 148 74 17 17 289 -1 unnamed_device 25.8 MiB 2.12 652 11079 4648 6085 346 64.7 MiB 0.06 0.00 3.1095 -111.937 -3.1095 3.1095 0.85 0.000185081 0.000145664 0.0151523 0.0121886 -1 -1 -1 -1 36 1864 27 6.95648e+06 173708 648988. 2245.63 1.87 0.0716854 0.0589095 26050 158493 -1 1465 21 1330 1798 134831 29950 3.06667 3.06667 -117.899 -3.06667 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0146652 0.0129001 60 63 30 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 7.00 vpr 64.54 MiB 0.02 7108 -1 -1 1 0.04 -1 -1 34220 -1 -1 12 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66092 32 32 331 280 1 150 76 17 17 289 -1 unnamed_device 25.7 MiB 0.96 538 10476 4359 5709 408 64.5 MiB 0.06 0.00 2.9793 -106.415 -2.9793 2.9793 0.87 0.000184954 0.000145034 0.0145094 0.011746 -1 -1 -1 -1 52 1632 21 6.95648e+06 173708 926341. 3205.33 2.72 0.0706911 0.058667 29218 227130 -1 1345 24 1114 1571 160473 46447 3.27657 3.27657 -114.812 -3.27657 0 0 1.14541e+06 3963.36 0.39 0.06 0.19 -1 -1 0.39 0.0156895 0.0137389 60 65 25 25 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 9.80 vpr 64.81 MiB 0.02 7004 -1 -1 1 0.04 -1 -1 34092 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66368 32 32 386 305 1 180 85 17 17 289 -1 unnamed_device 25.9 MiB 1.50 751 11803 3276 6505 2022 64.8 MiB 0.08 0.00 3.1024 -116.607 -3.1024 3.1024 0.93 0.000218532 0.000172421 0.0171091 0.0139767 -1 -1 -1 -1 40 3036 49 6.95648e+06 303989 706193. 2443.58 4.74 0.0984285 0.0819917 26914 176310 -1 2162 25 1825 2799 320543 71019 3.35787 3.35787 -136.972 -3.35787 0 0 926341. 3205.33 0.36 0.08 0.18 -1 -1 0.36 0.0176333 0.0153125 79 58 64 32 57 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 7.13 vpr 64.93 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 34216 -1 -1 26 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66484 32 32 407 319 1 192 90 17 17 289 -1 unnamed_device 26.2 MiB 1.05 814 16371 6936 9066 369 64.9 MiB 0.10 0.00 3.79319 -140.457 -3.79319 3.79319 0.93 0.000227824 0.000179479 0.0215847 0.0174207 -1 -1 -1 -1 40 2624 30 6.95648e+06 376368 706193. 2443.58 2.68 0.0941303 0.0779886 26914 176310 -1 2220 23 2215 3165 387799 96045 4.45166 4.45166 -158.511 -4.45166 0 0 926341. 3205.33 0.35 0.10 0.16 -1 -1 0.35 0.017607 0.0153551 87 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 6.64 vpr 63.98 MiB 0.02 6864 -1 -1 1 0.03 -1 -1 34132 -1 -1 13 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65516 29 32 272 228 1 141 74 17 17 289 -1 unnamed_device 25.6 MiB 1.20 465 11234 4544 5569 1121 64.0 MiB 0.06 0.00 3.14676 -95.8879 -3.14676 3.14676 0.92 0.000165855 0.000129683 0.0143056 0.011617 -1 -1 -1 -1 42 1841 46 6.95648e+06 188184 744469. 2576.02 2.15 0.0645886 0.0536616 27202 183097 -1 1312 22 1137 1681 147723 42177 3.01362 3.01362 -104.969 -3.01362 0 0 949917. 3286.91 0.35 0.05 0.16 -1 -1 0.35 0.0123785 0.0108412 58 29 58 29 24 24 +fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 22.15 vpr 65.19 MiB 0.02 7072 -1 -1 1 0.04 -1 -1 33896 -1 -1 13 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66756 32 32 401 315 1 186 77 17 17 289 -1 unnamed_device 26.1 MiB 1.84 727 13443 5705 7147 591 65.2 MiB 0.11 0.00 3.1505 -117.517 -3.1505 3.1505 0.93 0.000229954 0.000181505 0.0292832 0.0238386 -1 -1 -1 -1 50 2722 37 6.95648e+06 188184 902133. 3121.57 16.76 0.17932 0.148263 28642 213929 -1 1873 25 1935 3112 349416 88572 3.70312 3.70312 -135.946 -3.70312 0 0 1.08113e+06 3740.92 0.41 0.09 0.19 -1 -1 0.41 0.0176833 0.0153476 77 63 64 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 7.42 vpr 64.70 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 33912 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66256 32 32 383 303 1 179 84 17 17 289 -1 unnamed_device 25.9 MiB 1.63 707 11064 3431 5769 1864 64.7 MiB 0.07 0.00 3.0804 -113.798 -3.0804 3.0804 0.85 0.000228172 0.000180987 0.0174747 0.0142219 -1 -1 -1 -1 46 2318 36 6.95648e+06 289514 828058. 2865.25 2.45 0.0835152 0.06892 28066 200906 -1 1732 25 1625 2120 272273 97944 3.26132 3.26132 -124.624 -3.26132 0 0 1.01997e+06 3529.29 0.39 0.08 0.19 -1 -1 0.39 0.0179264 0.0156254 78 57 64 32 56 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 6.43 vpr 64.52 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 33696 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66064 32 32 339 284 1 156 84 17 17 289 -1 unnamed_device 25.6 MiB 0.88 574 10698 2981 5511 2206 64.5 MiB 0.06 0.00 2.43656 -93.1005 -2.43656 2.43656 0.89 0.000208642 0.000166267 0.0138876 0.011309 -1 -1 -1 -1 46 1570 42 6.95648e+06 289514 828058. 2865.25 2.22 0.0774884 0.0640786 28066 200906 -1 1288 21 1166 1606 125868 31593 2.33483 2.33483 -97.298 -2.33483 0 0 1.01997e+06 3529.29 0.39 0.05 0.20 -1 -1 0.39 0.0139052 0.0121568 67 65 29 29 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 5.14 vpr 63.99 MiB 0.02 6728 -1 -1 1 0.04 -1 -1 33912 -1 -1 10 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65524 30 32 226 208 1 118 72 17 17 289 -1 unnamed_device 25.6 MiB 0.42 450 11098 4782 5950 366 64.0 MiB 0.05 0.00 2.21746 -80.5091 -2.21746 2.21746 0.93 0.000147255 0.000115763 0.0129774 0.0104718 -1 -1 -1 -1 36 1394 20 6.95648e+06 144757 648988. 2245.63 1.55 0.0539263 0.0446022 26050 158493 -1 1139 20 730 928 91203 20471 2.48208 2.48208 -93.4098 -2.48208 0 0 828058. 2865.25 0.31 0.03 0.14 -1 -1 0.31 0.00900591 0.00786554 45 34 24 24 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 6.97 vpr 64.76 MiB 0.02 7068 -1 -1 1 0.04 -1 -1 33972 -1 -1 11 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66316 31 32 335 280 1 152 74 17 17 289 -1 unnamed_device 25.8 MiB 1.40 541 9374 3783 5060 531 64.8 MiB 0.06 0.00 3.8646 -129.431 -3.8646 3.8646 0.88 0.000195028 0.000153635 0.0143635 0.011709 -1 -1 -1 -1 42 1992 39 6.95648e+06 159232 744469. 2576.02 2.20 0.075925 0.0626627 27202 183097 -1 1405 24 1023 1412 113163 26412 3.76892 3.76892 -129.965 -3.76892 0 0 949917. 3286.91 0.37 0.05 0.16 -1 -1 0.37 0.0160129 0.014042 61 64 31 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 6.37 vpr 64.71 MiB 0.02 7220 -1 -1 1 0.05 -1 -1 34036 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66264 32 32 366 283 1 184 85 17 17 289 -1 unnamed_device 25.9 MiB 0.55 668 13663 3947 7828 1888 64.7 MiB 0.09 0.00 3.70334 -128.05 -3.70334 3.70334 0.97 0.000215034 0.000170437 0.0192106 0.0156092 -1 -1 -1 -1 46 2240 45 6.95648e+06 303989 828058. 2865.25 2.32 0.0860662 0.0719979 28066 200906 -1 1563 20 1524 2028 140595 33315 3.68886 3.68886 -133.096 -3.68886 0 0 1.01997e+06 3529.29 0.37 0.05 0.18 -1 -1 0.37 0.0151998 0.0134221 81 34 91 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 16.81 vpr 65.01 MiB 0.02 7376 -1 -1 1 0.04 -1 -1 34692 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66568 32 32 460 375 1 188 91 17 17 289 -1 unnamed_device 26.2 MiB 1.24 791 14779 5223 7361 2195 65.0 MiB 0.09 0.00 3.66119 -126.81 -3.66119 3.66119 0.91 0.000238926 0.000187306 0.020416 0.0164924 -1 -1 -1 -1 48 2577 33 6.95648e+06 390843 865456. 2994.66 12.12 0.197193 0.162203 28354 207349 -1 1933 21 1542 2309 180595 40330 3.81596 3.81596 -136.074 -3.81596 0 0 1.05005e+06 3633.38 0.39 0.06 0.18 -1 -1 0.39 0.016401 0.0142197 85 124 0 0 125 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 6.72 vpr 63.87 MiB 0.02 6992 -1 -1 1 0.03 -1 -1 34096 -1 -1 13 26 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65404 26 32 198 186 1 108 71 17 17 289 -1 unnamed_device 25.3 MiB 1.73 352 7809 2730 3957 1122 63.9 MiB 0.04 0.00 2.19726 -66.7151 -2.19726 2.19726 0.89 0.000126848 9.9376e-05 0.00895844 0.00732295 -1 -1 -1 -1 46 892 24 6.95648e+06 188184 828058. 2865.25 1.83 0.0446986 0.0370973 28066 200906 -1 604 17 553 688 32667 9718 2.22483 2.22483 -65.3089 -2.22483 0 0 1.01997e+06 3529.29 0.38 0.02 0.17 -1 -1 0.38 0.00831079 0.00739636 44 30 26 26 22 22 +fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 6.58 vpr 64.64 MiB 0.02 7112 -1 -1 1 0.04 -1 -1 33528 -1 -1 12 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66196 32 32 333 251 1 180 76 17 17 289 -1 unnamed_device 25.9 MiB 1.20 755 9836 4062 5477 297 64.6 MiB 0.06 0.00 4.01986 -136.639 -4.01986 4.01986 0.88 0.000197592 0.000156166 0.0149909 0.012293 -1 -1 -1 -1 42 2992 24 6.95648e+06 173708 744469. 2576.02 2.09 0.0694728 0.0583928 27202 183097 -1 2087 23 1911 2887 275152 61216 4.09781 4.09781 -148.697 -4.09781 0 0 949917. 3286.91 0.36 0.07 0.16 -1 -1 0.36 0.0154741 0.0135685 74 3 122 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 4.94 vpr 63.73 MiB 0.02 6652 -1 -1 1 0.04 -1 -1 34112 -1 -1 8 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 25.2 MiB 0.30 731 9906 3689 5081 1136 63.7 MiB 0.05 0.00 2.15326 -87.6492 -2.15326 2.15326 0.90 0.000128976 0.000100746 0.0104179 0.00844287 -1 -1 -1 -1 34 1601 34 6.95648e+06 115805 618332. 2139.56 1.44 0.0539755 0.0450008 25762 151098 -1 1513 21 741 939 95976 19405 2.04638 2.04638 -92.5632 -2.04638 0 0 787024. 2723.27 0.31 0.04 0.13 -1 -1 0.31 0.0101093 0.00892957 44 3 53 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 8.87 vpr 64.86 MiB 0.02 7120 -1 -1 1 0.04 -1 -1 33932 -1 -1 26 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66420 32 32 376 288 1 187 90 17 17 289 -1 unnamed_device 25.9 MiB 0.69 780 14763 5307 7672 1784 64.9 MiB 0.10 0.00 3.76019 -137.184 -3.76019 3.76019 0.89 0.000223111 0.000176079 0.0188675 0.0151189 -1 -1 -1 -1 46 2359 26 6.95648e+06 376368 828058. 2865.25 4.88 0.111971 0.0915639 28066 200906 -1 1907 25 2100 3140 250198 55970 4.61946 4.61946 -154.809 -4.61946 0 0 1.01997e+06 3529.29 0.39 0.07 0.18 -1 -1 0.39 0.0166747 0.0145066 85 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 5.56 vpr 64.76 MiB 0.02 7136 -1 -1 1 0.04 -1 -1 34124 -1 -1 28 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66316 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 25.9 MiB 0.36 983 14168 4026 8379 1763 64.8 MiB 0.09 0.00 3.0955 -119.792 -3.0955 3.0955 0.91 0.000206109 0.000162206 0.0170754 0.0138691 -1 -1 -1 -1 38 2608 30 6.95648e+06 405319 678818. 2348.85 1.91 0.0695205 0.0582158 26626 170182 -1 2113 22 1601 2271 178677 36607 3.05267 3.05267 -126.051 -3.05267 0 0 902133. 3121.57 0.33 0.06 0.15 -1 -1 0.33 0.015779 0.0139181 87 3 124 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 17.53 vpr 65.03 MiB 0.02 7220 -1 -1 1 0.04 -1 -1 34252 -1 -1 28 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66592 32 32 407 319 1 189 92 17 17 289 -1 unnamed_device 26.4 MiB 0.44 796 18308 6118 9933 2257 65.0 MiB 0.11 0.00 3.79319 -137.71 -3.79319 3.79319 0.91 0.000223675 0.000175846 0.0230543 0.0184878 -1 -1 -1 -1 42 3010 27 6.95648e+06 405319 744469. 2576.02 13.61 0.170031 0.140978 27202 183097 -1 2261 22 2081 3328 316829 67059 3.99296 3.99296 -152.048 -3.99296 0 0 949917. 3286.91 0.35 0.08 0.18 -1 -1 0.35 0.018077 0.0158003 87 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 13.83 vpr 64.54 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 34084 -1 -1 10 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66092 32 32 294 246 1 146 74 17 17 289 -1 unnamed_device 25.8 MiB 1.12 513 12009 5130 6527 352 64.5 MiB 0.06 0.00 2.8982 -102.347 -2.8982 2.8982 0.92 0.000180234 0.000141889 0.0167292 0.0135707 -1 -1 -1 -1 40 2016 38 6.95648e+06 144757 706193. 2443.58 9.44 0.137635 0.113977 26914 176310 -1 1573 22 1257 1866 181387 50915 3.21542 3.21542 -115.096 -3.21542 0 0 926341. 3205.33 0.34 0.06 0.15 -1 -1 0.34 0.0129709 0.0113353 57 34 54 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 8.20 vpr 64.12 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 34144 -1 -1 12 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65664 30 32 296 244 1 148 74 17 17 289 -1 unnamed_device 25.6 MiB 0.73 522 8134 3289 4515 330 64.1 MiB 0.05 0.00 3.1175 -109.73 -3.1175 3.1175 0.86 0.000183202 0.00014411 0.0118641 0.00966177 -1 -1 -1 -1 44 1586 22 6.95648e+06 173708 787024. 2723.27 4.38 0.0844167 0.069379 27778 195446 -1 1302 18 1147 1527 116551 27325 2.94137 2.94137 -112.054 -2.94137 0 0 997811. 3452.63 0.37 0.04 0.17 -1 -1 0.37 0.0111119 0.00978567 60 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 11.56 vpr 64.29 MiB 0.02 7048 -1 -1 1 0.04 -1 -1 33908 -1 -1 13 28 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65832 28 32 278 232 1 144 73 17 17 289 -1 unnamed_device 25.9 MiB 0.75 506 10257 3642 4936 1679 64.3 MiB 0.06 0.00 3.0435 -98.1657 -3.0435 3.0435 0.94 0.000167384 0.000131795 0.0140753 0.0114719 -1 -1 -1 -1 42 1657 36 6.95648e+06 188184 744469. 2576.02 7.49 0.125247 0.104037 27202 183097 -1 1283 22 1196 1811 121533 30067 2.98487 2.98487 -100.837 -2.98487 0 0 949917. 3286.91 0.36 0.04 0.17 -1 -1 0.36 0.0126576 0.0111039 61 34 56 28 28 28 +fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 5.82 vpr 64.68 MiB 0.02 6932 -1 -1 1 0.04 -1 -1 33904 -1 -1 10 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66236 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 25.9 MiB 0.29 692 9374 3935 5270 169 64.7 MiB 0.05 0.00 2.93285 -115.319 -2.93285 2.93285 0.90 0.000186509 0.000148655 0.0132487 0.0108422 -1 -1 -1 -1 42 2095 24 6.95648e+06 144757 744469. 2576.02 2.37 0.0737983 0.0622524 27202 183097 -1 1784 20 1499 2162 196373 40794 3.45672 3.45672 -128.776 -3.45672 0 0 949917. 3286.91 0.36 0.06 0.16 -1 -1 0.36 0.0145075 0.0129358 64 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 6.18 vpr 64.46 MiB 0.02 7008 -1 -1 1 0.05 -1 -1 34264 -1 -1 21 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66008 31 32 303 249 1 156 84 17 17 289 -1 unnamed_device 25.6 MiB 0.33 589 13443 5223 6848 1372 64.5 MiB 0.08 0.00 3.0875 -112.189 -3.0875 3.0875 0.89 0.000180375 0.000142557 0.0156359 0.0126973 -1 -1 -1 -1 40 2277 40 6.95648e+06 303989 706193. 2443.58 2.59 0.0863775 0.0726952 26914 176310 -1 1711 19 1230 1878 161304 37653 3.12307 3.12307 -117.037 -3.12307 0 0 926341. 3205.33 0.34 0.05 0.16 -1 -1 0.34 0.0124819 0.0110377 68 34 61 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 8.97 vpr 64.50 MiB 0.02 6932 -1 -1 1 0.04 -1 -1 33968 -1 -1 18 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66052 29 32 312 264 1 148 79 17 17 289 -1 unnamed_device 25.7 MiB 0.86 508 10219 3550 4648 2021 64.5 MiB 0.05 0.00 2.43392 -85.0275 -2.43392 2.43392 0.88 0.000185664 0.000146513 0.0130751 0.0106328 -1 -1 -1 -1 50 1315 21 6.95648e+06 260562 902133. 3121.57 4.69 0.0827601 0.0679859 28642 213929 -1 1174 20 1184 1648 116798 30070 2.38503 2.38503 -89.2481 -2.38503 0 0 1.08113e+06 3740.92 0.43 0.04 0.20 -1 -1 0.43 0.0129333 0.0113869 64 61 29 29 57 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 22.38 vpr 65.12 MiB 0.03 7264 -1 -1 1 0.04 -1 -1 34224 -1 -1 28 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66688 32 32 423 310 1 219 92 17 17 289 -1 unnamed_device 26.2 MiB 0.87 1016 13340 4236 7350 1754 65.1 MiB 0.09 0.00 3.83055 -140.164 -3.83055 3.83055 0.94 0.000244124 0.000191787 0.0198359 0.0162278 -1 -1 -1 -1 40 3491 28 6.95648e+06 405319 706193. 2443.58 18.01 0.182583 0.152555 26914 176310 -1 2536 25 2446 3889 419881 121943 4.40622 4.40622 -160.278 -4.40622 0 0 926341. 3205.33 0.35 0.11 0.17 -1 -1 0.35 0.021037 0.0183338 100 29 128 32 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 6.62 vpr 64.89 MiB 0.03 7200 -1 -1 1 0.05 -1 -1 33936 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66452 32 32 403 317 1 190 91 17 17 289 -1 unnamed_device 26.2 MiB 0.99 765 12739 4335 6808 1596 64.9 MiB 0.08 0.00 3.0804 -114.704 -3.0804 3.0804 0.93 0.000229302 0.000181126 0.0171639 0.0138984 -1 -1 -1 -1 40 2322 24 6.95648e+06 390843 706193. 2443.58 2.22 0.0839727 0.0694767 26914 176310 -1 1836 21 1974 2849 235748 51580 3.58982 3.58982 -126.816 -3.58982 0 0 926341. 3205.33 0.34 0.07 0.16 -1 -1 0.34 0.0163169 0.0143021 87 65 62 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 16.43 vpr 64.77 MiB 0.02 7168 -1 -1 1 0.04 -1 -1 34384 -1 -1 15 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66320 31 32 353 302 1 150 78 17 17 289 -1 unnamed_device 26.2 MiB 1.16 526 12362 5185 6683 494 64.8 MiB 0.07 0.00 3.26916 -109.86 -3.26916 3.26916 0.90 0.000193955 0.000151724 0.0177465 0.0143926 -1 -1 -1 -1 44 2107 41 6.95648e+06 217135 787024. 2723.27 11.90 0.143665 0.118702 27778 195446 -1 1503 21 1138 1668 143770 38815 2.99487 2.99487 -114.993 -2.99487 0 0 997811. 3452.63 0.38 0.05 0.17 -1 -1 0.38 0.0130607 0.0113697 62 90 0 0 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 6.84 vpr 64.98 MiB 0.02 7336 -1 -1 1 0.07 -1 -1 33884 -1 -1 14 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66536 31 32 391 309 1 186 77 17 17 289 -1 unnamed_device 26.1 MiB 0.68 824 12954 4665 6336 1953 65.0 MiB 0.08 0.00 3.0625 -110.593 -3.0625 3.0625 0.93 0.000245805 0.000199531 0.02032 0.0165501 -1 -1 -1 -1 36 3000 33 6.95648e+06 202660 648988. 2245.63 2.79 0.0995819 0.0831907 26050 158493 -1 2382 22 1959 2972 306645 63529 3.32342 3.32342 -129.62 -3.32342 0 0 828058. 2865.25 0.33 0.08 0.14 -1 -1 0.33 0.0168405 0.0146826 79 64 60 30 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 8.03 vpr 64.76 MiB 0.03 7396 -1 -1 1 0.05 -1 -1 34212 -1 -1 14 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66316 31 32 455 371 1 185 77 17 17 289 -1 unnamed_device 26.1 MiB 2.35 778 10998 4559 6059 380 64.8 MiB 0.08 0.00 4.63397 -149.774 -4.63397 4.63397 0.90 0.00024371 0.000190966 0.0198411 0.0159577 -1 -1 -1 -1 42 3197 35 6.95648e+06 202660 744469. 2576.02 2.23 0.0831513 0.0680942 27202 183097 -1 2238 23 1687 2592 248478 54871 4.77941 4.77941 -161.64 -4.77941 0 0 949917. 3286.91 0.39 0.07 0.16 -1 -1 0.39 0.018557 0.0161691 78 124 0 0 124 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 8.04 vpr 65.06 MiB 0.03 7216 -1 -1 1 0.04 -1 -1 34216 -1 -1 13 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66624 31 32 413 333 1 180 76 17 17 289 -1 unnamed_device 26.3 MiB 1.79 719 13676 5548 6572 1556 65.1 MiB 0.08 0.00 4.52934 -135.424 -4.52934 4.52934 0.94 0.00022981 0.000180504 0.0233361 0.0188824 -1 -1 -1 -1 52 2392 26 6.95648e+06 188184 926341. 3205.33 2.82 0.0893647 0.073465 29218 227130 -1 1864 21 1198 1901 178376 40105 4.50686 4.50686 -147.707 -4.50686 0 0 1.14541e+06 3963.36 0.42 0.05 0.21 -1 -1 0.42 0.0159139 0.0139252 75 90 31 31 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 6.92 vpr 64.86 MiB 0.03 7264 -1 -1 1 0.04 -1 -1 34160 -1 -1 25 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66412 31 32 391 309 1 185 88 17 17 289 -1 unnamed_device 26.0 MiB 0.95 804 14128 5884 7757 487 64.9 MiB 0.09 0.00 3.1856 -115.963 -3.1856 3.1856 0.95 0.000227981 0.000179419 0.0199528 0.0162187 -1 -1 -1 -1 46 2396 33 6.95648e+06 361892 828058. 2865.25 2.42 0.0875106 0.0721169 28066 200906 -1 1860 22 1647 2448 203706 42981 3.11687 3.11687 -120.842 -3.11687 0 0 1.01997e+06 3529.29 0.39 0.07 0.18 -1 -1 0.39 0.0179078 0.0156786 85 64 60 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 7.04 vpr 65.00 MiB 0.02 7104 -1 -1 1 0.04 -1 -1 34216 -1 -1 26 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66560 32 32 407 319 1 190 90 17 17 289 -1 unnamed_device 26.0 MiB 0.56 956 10743 3793 5013 1937 65.0 MiB 0.07 0.00 3.77119 -139.239 -3.77119 3.77119 0.88 0.000262731 0.000210666 0.0144867 0.0117058 -1 -1 -1 -1 40 2758 24 6.95648e+06 376368 706193. 2443.58 3.17 0.0846341 0.0701485 26914 176310 -1 2298 24 2115 3188 341880 77779 4.25266 4.25266 -156.202 -4.25266 0 0 926341. 3205.33 0.35 0.12 0.16 -1 -1 0.35 0.0261686 0.0233303 86 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 17.21 vpr 65.20 MiB 0.03 7516 -1 -1 1 0.04 -1 -1 34080 -1 -1 31 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66764 32 32 496 380 1 222 95 17 17 289 -1 unnamed_device 26.6 MiB 1.10 1006 8087 1735 5255 1097 65.2 MiB 0.07 0.00 3.89228 -139.02 -3.89228 3.89228 0.88 0.000281155 0.000223372 0.0137383 0.0113495 -1 -1 -1 -1 44 3004 27 6.95648e+06 448746 787024. 2723.27 12.54 0.181343 0.150161 27778 195446 -1 2432 23 2302 3634 298290 63479 3.89701 3.89701 -145.351 -3.89701 0 0 997811. 3452.63 0.45 0.10 0.17 -1 -1 0.45 0.0254826 0.0225055 104 96 62 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 6.57 vpr 64.53 MiB 0.02 7012 -1 -1 1 0.04 -1 -1 34256 -1 -1 11 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66076 31 32 305 250 1 152 74 17 17 289 -1 unnamed_device 25.7 MiB 0.67 589 10304 4334 5652 318 64.5 MiB 0.06 0.00 3.38836 -119.14 -3.38836 3.38836 0.97 0.000184644 0.000145692 0.0143092 0.0116647 -1 -1 -1 -1 36 2300 43 6.95648e+06 159232 648988. 2245.63 2.69 0.0850846 0.0712621 26050 158493 -1 1707 19 1387 1919 175590 41198 3.54282 3.54282 -128.096 -3.54282 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0123226 0.0108318 62 34 62 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 6.67 vpr 64.86 MiB 0.02 7144 -1 -1 1 0.04 -1 -1 34096 -1 -1 27 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66412 31 32 395 311 1 188 90 17 17 289 -1 unnamed_device 25.9 MiB 0.73 807 13959 3748 8318 1893 64.9 MiB 0.09 0.00 3.90275 -135.486 -3.90275 3.90275 0.98 0.000231152 0.000182294 0.0194515 0.0158095 -1 -1 -1 -1 42 2665 23 6.95648e+06 390843 744469. 2576.02 2.40 0.0885421 0.0735368 27202 183097 -1 2191 20 1849 2845 264362 56154 4.00046 4.00046 -148.359 -4.00046 0 0 949917. 3286.91 0.35 0.07 0.16 -1 -1 0.35 0.0172906 0.0153058 86 64 62 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 9.86 vpr 64.84 MiB 0.02 7284 -1 -1 1 0.05 -1 -1 34128 -1 -1 26 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66396 32 32 397 313 1 188 90 17 17 289 -1 unnamed_device 25.9 MiB 0.91 803 11145 4511 6144 490 64.8 MiB 0.08 0.00 3.29596 -117.163 -3.29596 3.29596 1.00 0.00025319 0.000201584 0.0164162 0.0133755 -1 -1 -1 -1 54 2502 46 6.95648e+06 376368 949917. 3286.91 5.33 0.134508 0.111689 29506 232905 -1 1854 23 1537 2548 207024 46249 3.37657 3.37657 -119.135 -3.37657 0 0 1.17392e+06 4061.99 0.44 0.07 0.23 -1 -1 0.44 0.018406 0.0160299 85 63 62 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 20.67 vpr 64.77 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 34068 -1 -1 13 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66328 32 32 345 257 1 187 77 17 17 289 -1 unnamed_device 26.0 MiB 1.03 760 7738 3134 4374 230 64.8 MiB 0.06 0.00 3.65689 -135.736 -3.65689 3.65689 0.91 0.000208226 0.000165098 0.0131697 0.0109817 -1 -1 -1 -1 44 3035 42 6.95648e+06 188184 787024. 2723.27 16.17 0.150528 0.126399 27778 195446 -1 2241 25 2075 3424 412749 84918 4.22456 4.22456 -154.747 -4.22456 0 0 997811. 3452.63 0.38 0.11 0.19 -1 -1 0.38 0.0196571 0.0172957 78 3 128 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 7.16 vpr 64.93 MiB 0.02 7136 -1 -1 1 0.04 -1 -1 35196 -1 -1 23 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66484 32 32 424 343 1 182 87 17 17 289 -1 unnamed_device 26.0 MiB 1.63 808 11991 3810 6067 2114 64.9 MiB 0.07 0.00 3.1768 -117.392 -3.1768 3.1768 0.93 0.000225908 0.000177617 0.0169376 0.0137758 -1 -1 -1 -1 46 2027 40 6.95648e+06 332941 828058. 2865.25 2.07 0.0826164 0.0685564 28066 200906 -1 1562 25 1554 2445 143436 36834 3.24547 3.24547 -120.275 -3.24547 0 0 1.01997e+06 3529.29 0.39 0.06 0.18 -1 -1 0.39 0.0196859 0.0172229 81 96 25 25 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 10.06 vpr 64.93 MiB 0.02 7096 -1 -1 1 0.04 -1 -1 34224 -1 -1 28 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66488 32 32 395 311 1 186 92 17 17 289 -1 unnamed_device 26.0 MiB 0.97 754 13547 4133 6686 2728 64.9 MiB 0.08 0.00 3.20182 -116.76 -3.20182 3.20182 0.87 0.000221515 0.000173773 0.0174201 0.0141381 -1 -1 -1 -1 62 1903 45 6.95648e+06 405319 1.05005e+06 3633.38 5.60 0.131132 0.107906 30946 263737 -1 1557 21 1400 2192 153638 36037 3.33447 3.33447 -119.513 -3.33447 0 0 1.30136e+06 4502.97 0.48 0.06 0.25 -1 -1 0.48 0.0168398 0.0148329 85 61 64 32 60 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 6.78 vpr 64.77 MiB 0.02 7096 -1 -1 1 0.04 -1 -1 34028 -1 -1 28 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66320 32 32 405 318 1 192 92 17 17 289 -1 unnamed_device 25.8 MiB 0.60 757 10649 2685 6746 1218 64.8 MiB 0.08 0.00 3.0976 -113.249 -3.0976 3.0976 0.93 0.000241516 0.000189827 0.0145193 0.0118193 -1 -1 -1 -1 46 2065 27 6.95648e+06 405319 828058. 2865.25 2.79 0.103912 0.0882595 28066 200906 -1 1586 24 1814 2753 205756 46457 3.70132 3.70132 -124.198 -3.70132 0 0 1.01997e+06 3529.29 0.37 0.06 0.17 -1 -1 0.37 0.0178136 0.0155666 88 65 63 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 9.26 vpr 64.89 MiB 0.02 7104 -1 -1 1 0.04 -1 -1 34192 -1 -1 28 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66448 32 32 376 288 1 186 92 17 17 289 -1 unnamed_device 26.1 MiB 0.70 928 15410 5078 8249 2083 64.9 MiB 0.09 0.00 3.79319 -139.701 -3.79319 3.79319 0.88 0.000213977 0.000169198 0.0188611 0.0152911 -1 -1 -1 -1 40 2754 46 6.95648e+06 405319 706193. 2443.58 5.13 0.135831 0.112571 26914 176310 -1 2163 26 2152 3359 338665 68157 4.44696 4.44696 -155.621 -4.44696 0 0 926341. 3205.33 0.35 0.10 0.16 -1 -1 0.35 0.0224472 0.0198026 85 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 6.46 vpr 64.83 MiB 0.02 7148 -1 -1 1 0.04 -1 -1 34200 -1 -1 30 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66384 32 32 407 319 1 189 94 17 17 289 -1 unnamed_device 26.2 MiB 0.93 943 13300 4128 7027 2145 64.8 MiB 0.09 0.00 3.71121 -138.47 -3.71121 3.71121 0.86 0.000223809 0.000176276 0.0173522 0.0139768 -1 -1 -1 -1 38 2603 25 6.95648e+06 434271 678818. 2348.85 2.18 0.0736655 0.061108 26626 170182 -1 2217 22 2042 2904 244651 49913 4.10546 4.10546 -156.118 -4.10546 0 0 902133. 3121.57 0.34 0.07 0.15 -1 -1 0.34 0.0182399 0.0160496 88 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 6.80 vpr 65.05 MiB 0.02 7444 -1 -1 1 0.04 -1 -1 34108 -1 -1 25 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66608 31 32 449 367 1 185 88 17 17 289 -1 unnamed_device 26.3 MiB 1.33 822 11983 4768 6508 707 65.0 MiB 0.08 0.00 4.19045 -134.89 -4.19045 4.19045 0.88 0.000232981 0.000182747 0.0172167 0.0138456 -1 -1 -1 -1 44 3065 36 6.95648e+06 361892 787024. 2723.27 2.30 0.0813348 0.0666819 27778 195446 -1 2156 24 1620 2571 220150 47265 3.90802 3.90802 -141.741 -3.90802 0 0 997811. 3452.63 0.35 0.06 0.18 -1 -1 0.35 0.0174361 0.0151142 84 122 0 0 122 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 7.62 vpr 65.14 MiB 0.02 7332 -1 -1 1 0.04 -1 -1 34148 -1 -1 13 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66704 32 32 432 346 1 187 77 17 17 289 -1 unnamed_device 26.4 MiB 1.16 916 10346 4298 5834 214 65.1 MiB 0.07 0.00 3.78635 -132.849 -3.78635 3.78635 0.87 0.000239372 0.000188908 0.0176065 0.0142739 -1 -1 -1 -1 40 2838 43 6.95648e+06 188184 706193. 2443.58 3.23 0.109399 0.091322 26914 176310 -1 2395 25 2012 3475 302270 61431 4.05536 4.05536 -144.597 -4.05536 0 0 926341. 3205.33 0.35 0.08 0.15 -1 -1 0.35 0.0202057 0.0176138 78 94 32 32 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 6.19 vpr 64.55 MiB 0.02 7080 -1 -1 1 0.04 -1 -1 34064 -1 -1 23 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66104 32 32 312 255 1 160 87 17 17 289 -1 unnamed_device 25.8 MiB 0.19 593 10839 4452 5958 429 64.6 MiB 0.06 0.00 3.1395 -116.22 -3.1395 3.1395 0.98 0.000190664 0.000150679 0.0134183 0.0110167 -1 -1 -1 -1 52 1919 46 6.95648e+06 332941 926341. 3205.33 2.50 0.0704246 0.0588283 29218 227130 -1 1377 22 1306 2047 164073 39616 3.21397 3.21397 -117.571 -3.21397 0 0 1.14541e+06 3963.36 0.41 0.05 0.20 -1 -1 0.41 0.0135256 0.0119354 71 34 63 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 8.85 vpr 64.59 MiB 0.02 7128 -1 -1 1 0.04 -1 -1 34028 -1 -1 10 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66136 32 32 370 314 1 158 74 17 17 289 -1 unnamed_device 25.9 MiB 1.10 610 8444 3495 4676 273 64.6 MiB 0.06 0.00 3.0405 -112.422 -3.0405 3.0405 0.87 0.000207265 0.000162308 0.015009 0.0121732 -1 -1 -1 -1 54 1619 33 6.95648e+06 144757 949917. 3286.91 4.54 0.113795 0.094251 29506 232905 -1 1400 20 1334 2002 142611 34362 2.91042 2.91042 -115.234 -2.91042 0 0 1.17392e+06 4061.99 0.42 0.05 0.21 -1 -1 0.42 0.0133302 0.0116432 63 94 0 0 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 9.84 vpr 65.23 MiB 0.03 7428 -1 -1 1 0.05 -1 -1 34136 -1 -1 30 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66800 32 32 469 351 1 223 94 17 17 289 -1 unnamed_device 26.5 MiB 0.64 1002 14152 3897 8059 2196 65.2 MiB 0.10 0.00 4.44024 -157.04 -4.44024 4.44024 0.90 0.000270991 0.000202877 0.0204007 0.0165046 -1 -1 -1 -1 54 2847 28 6.95648e+06 434271 949917. 3286.91 5.55 0.146423 0.120541 29506 232905 -1 2413 22 2492 3987 334924 69467 5.105 5.105 -170.327 -5.105 0 0 1.17392e+06 4061.99 0.45 0.08 0.23 -1 -1 0.45 0.0196065 0.0171244 103 65 96 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 9.20 vpr 64.82 MiB 0.03 7212 -1 -1 1 0.04 -1 -1 34092 -1 -1 24 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66372 32 32 368 284 1 186 88 17 17 289 -1 unnamed_device 26.0 MiB 0.99 717 11983 4638 6220 1125 64.8 MiB 0.07 0.00 3.1457 -117.079 -3.1457 3.1457 0.93 0.00021327 0.000167169 0.0157745 0.0128311 -1 -1 -1 -1 50 1871 22 6.95648e+06 347416 902133. 3121.57 4.77 0.109303 0.0898091 28642 213929 -1 1593 21 1525 2029 161990 37722 3.09382 3.09382 -119.83 -3.09382 0 0 1.08113e+06 3740.92 0.38 0.05 0.19 -1 -1 0.38 0.0144461 0.0127325 83 34 92 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 14.51 vpr 64.41 MiB 0.02 6868 -1 -1 1 0.05 -1 -1 33972 -1 -1 19 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65960 30 32 296 244 1 152 81 17 17 289 -1 unnamed_device 25.6 MiB 0.43 530 10406 4243 5603 560 64.4 MiB 0.06 0.00 3.0735 -106.794 -3.0735 3.0735 0.95 0.000177113 0.000140137 0.0130579 0.0106643 -1 -1 -1 -1 46 2070 48 6.95648e+06 275038 828058. 2865.25 10.66 0.138624 0.114224 28066 200906 -1 1518 22 1368 2030 165280 41198 3.38277 3.38277 -119.705 -3.38277 0 0 1.01997e+06 3529.29 0.38 0.06 0.18 -1 -1 0.38 0.0144493 0.0127054 65 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 21.64 vpr 65.59 MiB 0.03 7552 -1 -1 1 0.04 -1 -1 34576 -1 -1 31 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 67160 32 32 531 413 1 225 95 17 17 289 -1 unnamed_device 26.7 MiB 1.98 1126 15215 3732 10105 1378 65.6 MiB 0.11 0.00 4.49524 -160.999 -4.49524 4.49524 0.91 0.000277122 0.000218207 0.0227717 0.0183203 -1 -1 -1 -1 50 2881 24 6.95648e+06 448746 902133. 3121.57 16.05 0.189725 0.155869 28642 213929 -1 2578 31 3160 4685 568753 162228 4.90641 4.90641 -174.584 -4.90641 0 0 1.08113e+06 3740.92 0.40 0.14 0.20 -1 -1 0.40 0.0246224 0.021161 103 127 32 32 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 7.26 vpr 64.74 MiB 0.02 7212 -1 -1 1 0.04 -1 -1 33988 -1 -1 28 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66296 32 32 376 288 1 187 92 17 17 289 -1 unnamed_device 25.9 MiB 1.19 804 14375 4842 7223 2310 64.7 MiB 0.09 0.00 3.73321 -136.441 -3.73321 3.73321 0.91 0.00023495 0.000181802 0.019628 0.0156462 -1 -1 -1 -1 38 2611 35 6.95648e+06 405319 678818. 2348.85 2.71 0.0860244 0.0711827 26626 170182 -1 2014 20 1844 2478 200323 42987 4.19176 4.19176 -151.15 -4.19176 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0158272 0.0139857 86 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 6.73 vpr 64.41 MiB 0.02 7036 -1 -1 1 0.04 -1 -1 34048 -1 -1 24 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65956 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 25.6 MiB 0.34 657 12763 5246 7178 339 64.4 MiB 0.07 0.00 3.05815 -115.564 -3.05815 3.05815 0.95 0.000177746 0.00014024 0.0142729 0.0116152 -1 -1 -1 -1 44 2146 46 6.95648e+06 347416 787024. 2723.27 2.97 0.0770502 0.0643692 27778 195446 -1 1671 22 1455 2303 215548 49561 3.06182 3.06182 -121.432 -3.06182 0 0 997811. 3452.63 0.37 0.06 0.18 -1 -1 0.37 0.0130258 0.0114721 70 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 8.32 vpr 65.28 MiB 0.02 7152 -1 -1 1 0.04 -1 -1 34212 -1 -1 31 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66844 32 32 438 320 1 225 95 17 17 289 -1 unnamed_device 26.6 MiB 0.59 924 14567 5117 6799 2651 65.3 MiB 0.09 0.00 4.52824 -160.177 -4.52824 4.52824 0.90 0.000258541 0.000203289 0.0203798 0.0163495 -1 -1 -1 -1 54 2956 48 6.95648e+06 448746 949917. 3286.91 4.27 0.143044 0.120937 29506 232905 -1 2123 25 2625 4340 365708 77292 4.93141 4.93141 -174.44 -4.93141 0 0 1.17392e+06 4061.99 0.43 0.09 0.22 -1 -1 0.43 0.0199232 0.0174305 105 34 128 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 6.16 vpr 64.40 MiB 0.02 6968 -1 -1 1 0.04 -1 -1 34060 -1 -1 10 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65944 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 25.7 MiB 0.46 618 10614 4475 5915 224 64.4 MiB 0.07 0.00 2.92185 -113.699 -2.92185 2.92185 0.88 0.00018251 0.000144346 0.0155734 0.0127086 -1 -1 -1 -1 42 2090 30 6.95648e+06 144757 744469. 2576.02 2.34 0.0745111 0.0622874 27202 183097 -1 1664 22 1482 2083 190322 42506 3.54902 3.54902 -129.428 -3.54902 0 0 949917. 3286.91 0.38 0.06 0.17 -1 -1 0.38 0.0138243 0.0121699 62 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 6.82 vpr 64.64 MiB 0.02 6896 -1 -1 1 0.04 -1 -1 33848 -1 -1 21 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66192 30 32 296 244 1 151 83 17 17 289 -1 unnamed_device 25.8 MiB 0.86 581 11423 4387 5607 1429 64.6 MiB 0.06 0.00 3.09676 -109.06 -3.09676 3.09676 0.94 0.00017616 0.000139195 0.0134055 0.0109111 -1 -1 -1 -1 38 2169 24 6.95648e+06 303989 678818. 2348.85 2.72 0.0680768 0.0566394 26626 170182 -1 1705 19 1262 1896 159278 35800 3.29047 3.29047 -118.286 -3.29047 0 0 902133. 3121.57 0.32 0.05 0.14 -1 -1 0.32 0.0117107 0.0103167 65 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 7.79 vpr 64.72 MiB 0.03 7360 -1 -1 1 0.05 -1 -1 33964 -1 -1 20 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66272 29 32 393 319 1 174 81 17 17 289 -1 unnamed_device 25.9 MiB 1.46 706 12856 4700 6071 2085 64.7 MiB 0.08 0.00 3.39446 -107.663 -3.39446 3.39446 0.92 0.000217516 0.000170667 0.0187291 0.0150647 -1 -1 -1 -1 48 2585 27 6.95648e+06 289514 865456. 2994.66 2.90 0.0815825 0.0670468 28354 207349 -1 1848 23 1855 2985 245230 53011 3.14017 3.14017 -111.992 -3.14017 0 0 1.05005e+06 3633.38 0.40 0.07 0.19 -1 -1 0.40 0.0165896 0.0144423 77 88 29 29 85 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 6.49 vpr 64.99 MiB 0.02 7244 -1 -1 1 0.04 -1 -1 34280 -1 -1 13 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66552 32 32 407 319 1 187 77 17 17 289 -1 unnamed_device 26.3 MiB 0.98 916 13443 5641 5955 1847 65.0 MiB 0.08 0.00 3.65689 -139.305 -3.65689 3.65689 0.94 0.000224687 0.000176073 0.0219294 0.0177426 -1 -1 -1 -1 38 2547 30 6.95648e+06 188184 678818. 2348.85 2.13 0.0926103 0.0763618 26626 170182 -1 2038 23 2099 2802 225317 45977 4.20396 4.20396 -156.519 -4.20396 0 0 902133. 3121.57 0.36 0.07 0.15 -1 -1 0.36 0.0187435 0.0165436 78 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 17.91 vpr 64.77 MiB 0.02 7260 -1 -1 1 0.04 -1 -1 34140 -1 -1 25 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66328 32 32 407 319 1 190 89 17 17 289 -1 unnamed_device 26.2 MiB 1.63 890 14345 5510 6931 1904 64.8 MiB 0.09 0.00 3.74419 -138.408 -3.74419 3.74419 0.94 0.000229795 0.00018157 0.020398 0.0166344 -1 -1 -1 -1 44 2825 32 6.95648e+06 361892 787024. 2723.27 12.85 0.162697 0.134687 27778 195446 -1 2253 23 2097 3396 341835 67034 3.97096 3.97096 -151.638 -3.97096 0 0 997811. 3452.63 0.36 0.08 0.18 -1 -1 0.36 0.0178915 0.0156493 85 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 7.27 vpr 64.61 MiB 0.02 7084 -1 -1 1 0.04 -1 -1 34268 -1 -1 24 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66160 32 32 345 287 1 155 88 17 17 289 -1 unnamed_device 25.9 MiB 1.15 685 10813 4185 5763 865 64.6 MiB 0.07 0.00 3.05815 -117.015 -3.05815 3.05815 0.87 0.000211399 0.000168865 0.013871 0.0113358 -1 -1 -1 -1 38 2302 41 6.95648e+06 347416 678818. 2348.85 2.94 0.0828702 0.0689799 26626 170182 -1 1775 24 1664 2547 243914 50177 3.66012 3.66012 -130.469 -3.66012 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0159306 0.0139314 69 65 32 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 6.60 vpr 64.61 MiB 0.02 7076 -1 -1 1 0.04 -1 -1 34000 -1 -1 10 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66156 31 32 353 302 1 147 73 17 17 289 -1 unnamed_device 25.9 MiB 1.60 614 10105 3298 5142 1665 64.6 MiB 0.06 0.00 3.30215 -110.502 -3.30215 3.30215 0.92 0.00020189 0.000157769 0.0159286 0.0129477 -1 -1 -1 -1 34 2377 38 6.95648e+06 144757 618332. 2139.56 1.84 0.0703885 0.0578344 25762 151098 -1 1803 22 1288 2089 189612 39986 3.38272 3.38272 -122.082 -3.38272 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0149488 0.0131026 59 90 0 0 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 6.21 vpr 64.81 MiB 0.02 7100 -1 -1 1 0.05 -1 -1 34124 -1 -1 22 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66364 30 32 374 297 1 178 84 17 17 289 -1 unnamed_device 26.0 MiB 1.04 894 12345 3722 6620 2003 64.8 MiB 0.08 0.00 3.13882 -115.049 -3.13882 3.13882 0.86 0.000221886 0.000175646 0.0178594 0.0145778 -1 -1 -1 -1 38 2426 44 6.95648e+06 318465 678818. 2348.85 1.92 0.090211 0.0746643 26626 170182 -1 2079 20 1592 2318 183339 38278 3.05087 3.05087 -119.658 -3.05087 0 0 902133. 3121.57 0.34 0.06 0.15 -1 -1 0.34 0.0154315 0.0136452 79 60 60 30 57 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 7.73 vpr 64.60 MiB 0.02 7188 -1 -1 1 0.04 -1 -1 34208 -1 -1 16 28 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66152 28 32 332 260 1 172 76 17 17 289 -1 unnamed_device 25.9 MiB 0.97 684 10156 4202 5354 600 64.6 MiB 0.06 0.00 4.24545 -126.653 -4.24545 4.24545 0.93 0.000192669 0.000151488 0.0149186 0.0121693 -1 -1 -1 -1 38 2845 34 6.95648e+06 231611 678818. 2348.85 3.43 0.084095 0.0699684 26626 170182 -1 1926 20 1595 2394 207734 45081 4.31207 4.31207 -140.039 -4.31207 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0138195 0.0122008 74 34 84 28 28 28 +fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 9.02 vpr 64.78 MiB 0.02 7144 -1 -1 1 0.04 -1 -1 33712 -1 -1 12 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66332 30 32 325 273 1 151 74 17 17 289 -1 unnamed_device 25.8 MiB 0.86 566 9839 4104 5334 401 64.8 MiB 0.05 0.00 3.1757 -110.199 -3.1757 3.1757 0.86 0.000193069 0.000152319 0.0142794 0.0115806 -1 -1 -1 -1 50 1726 28 6.95648e+06 173708 902133. 3121.57 4.99 0.116906 0.0964559 28642 213929 -1 1227 21 1065 1471 107212 26572 2.95187 2.95187 -108.104 -2.95187 0 0 1.08113e+06 3740.92 0.41 0.04 0.18 -1 -1 0.41 0.0130154 0.0113477 62 63 30 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 5.90 vpr 64.85 MiB 0.02 7216 -1 -1 1 0.04 -1 -1 34128 -1 -1 10 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66408 32 32 361 308 1 152 74 17 17 289 -1 unnamed_device 26.1 MiB 1.30 777 7669 3175 4304 190 64.9 MiB 0.05 0.00 3.0765 -113.072 -3.0765 3.0765 0.86 0.000200006 0.000157345 0.0122941 0.00997865 -1 -1 -1 -1 34 2625 32 6.95648e+06 144757 618332. 2139.56 1.60 0.0617903 0.0510696 25762 151098 -1 2002 20 1217 1957 177673 36283 3.14797 3.14797 -123.964 -3.14797 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0124702 0.0108975 60 91 0 0 91 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 6.49 vpr 64.81 MiB 0.03 7040 -1 -1 1 0.04 -1 -1 34300 -1 -1 25 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66364 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 26.1 MiB 0.23 795 9448 3406 4746 1296 64.8 MiB 0.06 0.00 3.89245 -136.133 -3.89245 3.89245 0.96 0.000204126 0.000161555 0.0124641 0.0102658 -1 -1 -1 -1 50 2526 26 6.95648e+06 361892 902133. 3121.57 2.64 0.0798874 0.0673131 28642 213929 -1 2082 24 1953 2989 326472 72760 4.08232 4.08232 -148.35 -4.08232 0 0 1.08113e+06 3740.92 0.43 0.09 0.20 -1 -1 0.43 0.0177113 0.0155975 86 4 124 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 7.37 vpr 65.01 MiB 0.03 7208 -1 -1 1 0.04 -1 -1 34396 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66572 32 32 407 319 1 189 91 17 17 289 -1 unnamed_device 26.3 MiB 1.29 901 16819 7044 9402 373 65.0 MiB 0.10 0.00 3.78219 -139.905 -3.78219 3.78219 0.91 0.000240146 0.000190439 0.0226824 0.018375 -1 -1 -1 -1 46 2911 28 6.95648e+06 390843 828058. 2865.25 2.59 0.0903439 0.0749634 28066 200906 -1 2289 24 2138 3533 337475 66463 4.22456 4.22456 -150.248 -4.22456 0 0 1.01997e+06 3529.29 0.40 0.10 0.19 -1 -1 0.40 0.0227172 0.02014 86 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 22.24 vpr 64.97 MiB 0.02 7204 -1 -1 1 0.04 -1 -1 34052 -1 -1 26 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66532 32 32 407 319 1 187 90 17 17 289 -1 unnamed_device 26.2 MiB 1.89 831 9336 3198 4890 1248 65.0 MiB 0.07 0.00 3.70819 -135.715 -3.70819 3.70819 0.88 0.000228055 0.000179061 0.0158565 0.0133084 -1 -1 -1 -1 42 3156 48 6.95648e+06 376368 744469. 2576.02 17.06 0.172391 0.142946 27202 183097 -1 2435 22 1967 3152 360141 76398 4.12446 4.12446 -155.386 -4.12446 0 0 949917. 3286.91 0.36 0.09 0.16 -1 -1 0.36 0.0168665 0.0147847 85 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 10.43 vpr 64.92 MiB 0.02 7132 -1 -1 1 0.04 -1 -1 34160 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66476 32 32 399 315 1 188 91 17 17 289 -1 unnamed_device 26.0 MiB 1.09 826 13351 4666 6922 1763 64.9 MiB 0.09 0.00 3.75545 -130.629 -3.75545 3.75545 0.88 0.000227836 0.000178905 0.0177597 0.0144029 -1 -1 -1 -1 50 2978 25 6.95648e+06 390843 902133. 3121.57 5.83 0.133327 0.1111 28642 213929 -1 2275 22 1667 2850 301809 68282 4.12266 4.12266 -146.263 -4.12266 0 0 1.08113e+06 3740.92 0.41 0.09 0.19 -1 -1 0.41 0.0189752 0.0167048 86 65 60 30 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 6.10 vpr 64.14 MiB 0.02 7104 -1 -1 1 0.05 -1 -1 34096 -1 -1 12 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65680 30 32 296 244 1 150 74 17 17 289 -1 unnamed_device 25.6 MiB 0.94 555 9684 4044 5292 348 64.1 MiB 0.06 0.00 3.0515 -108.878 -3.0515 3.0515 0.89 0.000182529 0.000143516 0.0147098 0.0119706 -1 -1 -1 -1 42 2073 33 6.95648e+06 173708 744469. 2576.02 1.82 0.0595694 0.0493629 27202 183097 -1 1596 22 1212 1778 167730 38655 3.47987 3.47987 -116.054 -3.47987 0 0 949917. 3286.91 0.38 0.05 0.16 -1 -1 0.38 0.013393 0.0117449 62 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 9.71 vpr 64.84 MiB 0.03 7216 -1 -1 1 0.04 -1 -1 34188 -1 -1 15 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66392 30 32 383 303 1 183 77 17 17 289 -1 unnamed_device 26.0 MiB 0.88 676 11487 4792 6044 651 64.8 MiB 0.07 0.00 3.81154 -129.829 -3.81154 3.81154 0.89 0.000223264 0.000175834 0.0195119 0.0157657 -1 -1 -1 -1 58 1823 20 6.95648e+06 217135 997811. 3452.63 5.10 0.11921 0.0974393 30370 251734 -1 1500 22 1666 2309 181538 42357 3.90202 3.90202 -135.638 -3.90202 0 0 1.25153e+06 4330.55 0.48 0.06 0.26 -1 -1 0.48 0.0181925 0.0160434 78 63 60 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 8.02 vpr 65.15 MiB 0.02 7152 -1 -1 1 0.04 -1 -1 34408 -1 -1 31 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66712 32 32 469 381 1 190 95 17 17 289 -1 unnamed_device 26.3 MiB 1.45 807 14351 4061 7900 2390 65.1 MiB 0.10 0.00 3.71619 -135.355 -3.71619 3.71619 0.87 0.000242149 0.000189634 0.0197349 0.0156871 -1 -1 -1 -1 44 2736 32 6.95648e+06 448746 787024. 2723.27 3.26 0.0943559 0.0770163 27778 195446 -1 2048 24 1968 3027 269646 57971 4.36516 4.36516 -149.034 -4.36516 0 0 997811. 3452.63 0.38 0.08 0.17 -1 -1 0.38 0.0188403 0.016374 88 127 0 0 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 19.11 vpr 64.93 MiB 0.02 7240 -1 -1 1 0.03 -1 -1 34368 -1 -1 23 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66484 31 32 425 341 1 182 86 17 17 289 -1 unnamed_device 26.2 MiB 1.05 755 11426 4664 6319 443 64.9 MiB 0.07 0.00 3.965 -138.995 -3.965 3.965 0.95 0.000224938 0.000175226 0.016814 0.013629 -1 -1 -1 -1 40 2865 29 6.95648e+06 332941 706193. 2443.58 14.81 0.161344 0.133881 26914 176310 -1 2182 25 2062 3142 273104 59860 4.24982 4.24982 -156.52 -4.24982 0 0 926341. 3205.33 0.34 0.08 0.15 -1 -1 0.34 0.0179361 0.0155566 82 94 31 31 93 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 15.44 vpr 64.83 MiB 0.03 7408 -1 -1 1 0.05 -1 -1 34148 -1 -1 18 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66388 30 32 404 328 1 173 80 17 17 289 -1 unnamed_device 25.9 MiB 1.65 784 14872 4881 8007 1984 64.8 MiB 0.10 0.00 3.30586 -112.006 -3.30586 3.30586 0.98 0.000229518 0.000182241 0.0230142 0.0186668 -1 -1 -1 -1 38 2593 50 6.95648e+06 260562 678818. 2348.85 10.32 0.156399 0.12888 26626 170182 -1 2023 22 1656 2435 203578 43770 3.64817 3.64817 -128.587 -3.64817 0 0 902133. 3121.57 0.36 0.06 0.17 -1 -1 0.36 0.0173354 0.0151796 75 92 26 26 90 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 10.79 vpr 64.75 MiB 0.02 7180 -1 -1 1 0.04 -1 -1 33972 -1 -1 13 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66304 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 26.1 MiB 1.64 774 12628 4296 6544 1788 64.8 MiB 0.09 0.00 3.65989 -133.7 -3.65989 3.65989 0.93 0.000225501 0.000177352 0.0210304 0.017057 -1 -1 -1 -1 56 2268 28 6.95648e+06 188184 973134. 3367.25 5.52 0.133896 0.110156 29794 239141 -1 1965 23 2004 3295 323207 69714 4.00506 4.00506 -145.063 -4.00506 0 0 1.19926e+06 4149.71 0.47 0.09 0.22 -1 -1 0.47 0.0219458 0.0194073 81 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 6.46 vpr 65.05 MiB 0.02 7432 -1 -1 1 0.04 -1 -1 34136 -1 -1 22 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66608 29 32 387 316 1 171 83 17 17 289 -1 unnamed_device 26.3 MiB 1.16 660 10343 3670 4948 1725 65.0 MiB 0.06 0.00 3.14182 -102.041 -3.14182 3.14182 0.85 0.000216001 0.000169751 0.0148133 0.0119424 -1 -1 -1 -1 48 1872 25 6.95648e+06 318465 865456. 2994.66 2.11 0.0691322 0.056985 28354 207349 -1 1506 23 1650 2465 190161 46512 3.36557 3.36557 -109.184 -3.36557 0 0 1.05005e+06 3633.38 0.40 0.06 0.19 -1 -1 0.40 0.0163521 0.0141423 77 88 26 26 85 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 6.20 vpr 64.39 MiB 0.02 6988 -1 -1 1 0.04 -1 -1 33940 -1 -1 10 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65932 32 32 283 225 1 154 74 17 17 289 -1 unnamed_device 25.7 MiB 1.05 627 9219 3869 5158 192 64.4 MiB 0.05 0.00 2.93285 -114.246 -2.93285 2.93285 0.88 0.000173719 0.000136791 0.0125395 0.0102245 -1 -1 -1 -1 42 2181 39 6.95648e+06 144757 744469. 2576.02 1.93 0.0628374 0.0523296 27202 183097 -1 1534 24 1447 2206 231633 49492 3.04172 3.04172 -121.546 -3.04172 0 0 949917. 3286.91 0.35 0.06 0.16 -1 -1 0.35 0.0137872 0.0120645 61 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 9.51 vpr 64.75 MiB 0.02 7300 -1 -1 1 0.04 -1 -1 34012 -1 -1 24 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66300 32 32 407 319 1 187 88 17 17 289 -1 unnamed_device 26.0 MiB 3.62 762 15688 5820 7154 2714 64.7 MiB 0.09 0.00 3.77419 -136.123 -3.77419 3.77419 0.86 0.000239755 0.000189177 0.0218381 0.017622 -1 -1 -1 -1 52 2327 38 6.95648e+06 347416 926341. 3205.33 2.48 0.0930417 0.07722 29218 227130 -1 1788 21 1732 2608 247461 55039 3.72336 3.72336 -138.906 -3.72336 0 0 1.14541e+06 3963.36 0.44 0.07 0.20 -1 -1 0.44 0.0175968 0.0154856 84 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 5.81 vpr 64.76 MiB 0.02 7240 -1 -1 1 0.04 -1 -1 34228 -1 -1 13 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66316 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 26.2 MiB 0.65 800 13117 5732 6986 399 64.8 MiB 0.08 0.00 3.79019 -142.199 -3.79019 3.79019 0.87 0.000233292 0.000183539 0.0215899 0.017362 -1 -1 -1 -1 42 2801 38 6.95648e+06 188184 744469. 2576.02 1.88 0.0841351 0.06932 27202 183097 -1 2134 21 2023 2771 236429 52132 4.58946 4.58946 -167.199 -4.58946 0 0 949917. 3286.91 0.41 0.07 0.16 -1 -1 0.41 0.0182148 0.0160546 81 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 6.41 vpr 64.47 MiB 0.02 7056 -1 -1 1 0.05 -1 -1 33944 -1 -1 11 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66020 32 32 315 267 1 152 75 17 17 289 -1 unnamed_device 25.6 MiB 1.12 588 11767 4876 6592 299 64.5 MiB 0.07 0.00 3.25495 -109.546 -3.25495 3.25495 0.87 0.000187309 0.000148735 0.016871 0.0136924 -1 -1 -1 -1 40 2328 35 6.95648e+06 159232 706193. 2443.58 2.03 0.0855717 0.0716824 26914 176310 -1 1700 23 1248 1726 157147 36665 3.13222 3.13222 -115.466 -3.13222 0 0 926341. 3205.33 0.34 0.05 0.17 -1 -1 0.34 0.012786 0.0111443 60 55 32 32 54 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 5.38 vpr 64.48 MiB 0.02 6892 -1 -1 1 0.04 -1 -1 33880 -1 -1 11 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66032 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 25.8 MiB 0.35 663 10304 4294 5762 248 64.5 MiB 0.06 0.00 3.1207 -115.753 -3.1207 3.1207 0.94 0.000170214 0.000134269 0.013715 0.011162 -1 -1 -1 -1 38 2095 29 6.95648e+06 159232 678818. 2348.85 1.81 0.0618087 0.0519735 26626 170182 -1 1724 22 1477 2074 178892 37673 3.22492 3.22492 -127.369 -3.22492 0 0 902133. 3121.57 0.33 0.05 0.15 -1 -1 0.33 0.0124578 0.0109539 63 4 93 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 7.56 vpr 64.83 MiB 0.02 7096 -1 -1 1 0.05 -1 -1 33868 -1 -1 19 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66384 32 32 381 303 1 180 83 17 17 289 -1 unnamed_device 26.0 MiB 1.36 777 14303 6009 7962 332 64.8 MiB 0.09 0.00 3.70334 -127.778 -3.70334 3.70334 0.90 0.000221945 0.0001748 0.0200148 0.0161275 -1 -1 -1 -1 38 2444 23 6.95648e+06 275038 678818. 2348.85 2.80 0.0939672 0.0789434 26626 170182 -1 2002 22 1714 2362 193236 41883 3.74206 3.74206 -136.331 -3.74206 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0181231 0.0159587 78 59 60 32 58 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 9.23 vpr 64.88 MiB 0.02 7212 -1 -1 1 0.04 -1 -1 33696 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66432 32 32 406 330 1 182 82 17 17 289 -1 unnamed_device 26.0 MiB 0.91 731 8626 3469 4889 268 64.9 MiB 0.06 0.00 3.81155 -129.752 -3.81155 3.81155 0.93 0.000248911 0.000188435 0.013441 0.0109521 -1 -1 -1 -1 48 2266 39 6.95648e+06 260562 865456. 2994.66 5.02 0.122465 0.100661 28354 207349 -1 1829 24 1641 2329 190132 44178 3.85482 3.85482 -137.457 -3.85482 0 0 1.05005e+06 3633.38 0.40 0.06 0.19 -1 -1 0.40 0.0174174 0.0151428 78 88 28 28 88 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 17.26 vpr 65.27 MiB 0.03 7304 -1 -1 1 0.05 -1 -1 34000 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66832 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 26.5 MiB 0.52 1044 8863 1910 6662 291 65.3 MiB 0.08 0.00 4.51819 -157.939 -4.51819 4.51819 0.86 0.000319748 0.000264517 0.0139407 0.0115667 -1 -1 -1 -1 50 3254 46 6.95648e+06 390843 902133. 3121.57 13.19 0.16786 0.140261 28642 213929 -1 2601 23 2265 3520 330176 69586 5.00971 5.00971 -175.569 -5.00971 0 0 1.08113e+06 3740.92 0.44 0.10 0.19 -1 -1 0.44 0.0219849 0.0195489 100 3 156 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 6.52 vpr 64.76 MiB 0.02 7132 -1 -1 1 0.04 -1 -1 34036 -1 -1 18 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66312 30 32 371 295 1 176 80 17 17 289 -1 unnamed_device 25.9 MiB 1.07 700 12980 4665 6454 1861 64.8 MiB 0.08 0.00 3.39626 -111.442 -3.39626 3.39626 0.89 0.00023294 0.0001891 0.0188671 0.0153717 -1 -1 -1 -1 42 2399 42 6.95648e+06 260562 744469. 2576.02 2.13 0.0894231 0.0747699 27202 183097 -1 1832 24 1779 2637 270751 76578 3.65117 3.65117 -128.334 -3.65117 0 0 949917. 3286.91 0.35 0.08 0.16 -1 -1 0.35 0.0165509 0.0144569 77 59 60 30 56 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 5.35 vpr 64.23 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 34208 -1 -1 15 27 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65772 27 32 269 226 1 137 74 17 17 289 -1 unnamed_device 25.6 MiB 0.71 465 10459 4157 5359 943 64.2 MiB 0.05 0.00 3.15776 -95.8334 -3.15776 3.15776 0.87 0.000158263 0.000124441 0.012293 0.00989249 -1 -1 -1 -1 38 1517 32 6.95648e+06 217135 678818. 2348.85 1.63 0.0642212 0.0529898 26626 170182 -1 1145 24 1083 1361 116797 26385 2.95232 2.95232 -103.134 -2.95232 0 0 902133. 3121.57 0.33 0.04 0.15 -1 -1 0.33 0.0122704 0.0106515 57 34 54 27 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 7.98 vpr 65.41 MiB 0.03 7400 -1 -1 1 0.05 -1 -1 34336 -1 -1 30 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66976 32 32 493 378 1 222 94 17 17 289 -1 unnamed_device 26.7 MiB 0.76 967 13513 4601 6349 2563 65.4 MiB 0.09 0.00 4.037 -140.402 -4.037 4.037 0.90 0.000293894 0.000232593 0.0213245 0.0172793 -1 -1 -1 -1 54 3228 47 6.95648e+06 434271 949917. 3286.91 3.62 0.124946 0.104096 29506 232905 -1 2348 22 2355 4119 340687 74270 4.19956 4.19956 -151.003 -4.19956 0 0 1.17392e+06 4061.99 0.44 0.09 0.22 -1 -1 0.44 0.0201425 0.0176379 103 95 62 31 95 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 12.81 vpr 65.04 MiB 0.03 7464 -1 -1 1 0.04 -1 -1 34052 -1 -1 14 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66604 31 32 455 371 1 187 77 17 17 289 -1 unnamed_device 26.3 MiB 4.59 725 8716 3580 4721 415 65.0 MiB 0.06 0.00 4.38345 -145.342 -4.38345 4.38345 0.86 0.000232662 0.000182216 0.015017 0.0121551 -1 -1 -1 -1 48 2552 29 6.95648e+06 202660 865456. 2994.66 4.93 0.114341 0.093441 28354 207349 -1 2035 20 1717 2546 215311 49082 4.56616 4.56616 -158.056 -4.56616 0 0 1.05005e+06 3633.38 0.41 0.06 0.18 -1 -1 0.41 0.0162496 0.0142603 79 124 0 0 124 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 8.70 vpr 64.43 MiB 0.04 7024 -1 -1 1 0.03 -1 -1 33820 -1 -1 10 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65972 32 32 355 304 1 147 74 17 17 289 -1 unnamed_device 25.8 MiB 3.27 511 11389 4311 5427 1651 64.4 MiB 0.06 0.00 3.0346 -106.082 -3.0346 3.0346 0.91 0.000204073 0.000160716 0.0166817 0.0134103 -1 -1 -1 -1 44 1820 32 6.95648e+06 144757 787024. 2723.27 1.94 0.0704928 0.0576554 27778 195446 -1 1378 32 1449 2183 172466 42204 2.97582 2.97582 -113.957 -2.97582 0 0 997811. 3452.63 0.38 0.07 0.17 -1 -1 0.38 0.0192913 0.0165751 58 89 0 0 89 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 6.74 vpr 64.80 MiB 0.03 7192 -1 -1 1 0.04 -1 -1 34020 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66356 32 32 364 282 1 188 86 17 17 289 -1 unnamed_device 25.9 MiB 0.51 783 13316 4555 6721 2040 64.8 MiB 0.08 0.00 4.13126 -136.078 -4.13126 4.13126 0.87 0.000210752 0.000165589 0.0174281 0.0141272 -1 -1 -1 -1 44 2812 43 6.95648e+06 318465 787024. 2723.27 2.79 0.100177 0.0851224 27778 195446 -1 1993 22 1763 2594 234884 54553 4.01612 4.01612 -140.756 -4.01612 0 0 997811. 3452.63 0.39 0.07 0.18 -1 -1 0.39 0.016263 0.014295 83 34 90 30 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 6.39 vpr 65.05 MiB 0.03 7408 -1 -1 1 0.04 -1 -1 34212 -1 -1 23 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66608 31 32 443 336 1 210 86 17 17 289 -1 unnamed_device 26.2 MiB 0.95 989 12560 4640 6662 1258 65.0 MiB 0.09 0.00 4.078 -143.913 -4.078 4.078 0.96 0.000245233 0.000193202 0.019711 0.0160722 -1 -1 -1 -1 38 3186 38 6.95648e+06 332941 678818. 2348.85 2.17 0.0886507 0.0737925 26626 170182 -1 2432 22 2092 2923 240764 50827 4.35612 4.35612 -162.123 -4.35612 0 0 902133. 3121.57 0.35 0.07 0.15 -1 -1 0.35 0.0200045 0.0176863 95 64 87 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 7.06 vpr 64.93 MiB 0.02 7152 -1 -1 1 0.04 -1 -1 33928 -1 -1 20 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66488 30 32 373 297 1 178 82 17 17 289 -1 unnamed_device 26.1 MiB 1.09 739 10762 4429 5782 551 64.9 MiB 0.07 0.00 3.27396 -108.751 -3.27396 3.27396 0.95 0.000211036 0.000166681 0.0158295 0.0129393 -1 -1 -1 -1 46 2460 24 6.95648e+06 289514 828058. 2865.25 2.49 0.0780724 0.0652527 28066 200906 -1 1865 25 1663 2687 229618 51502 3.36257 3.36257 -114.136 -3.36257 0 0 1.01997e+06 3529.29 0.38 0.07 0.18 -1 -1 0.38 0.0167459 0.0145725 78 61 58 30 58 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 9.50 vpr 64.92 MiB 0.03 7200 -1 -1 1 0.05 -1 -1 33848 -1 -1 34 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66480 32 32 407 319 1 193 98 17 17 289 -1 unnamed_device 25.9 MiB 0.56 907 15848 6161 8045 1642 64.9 MiB 0.09 0.00 3.79319 -139.401 -3.79319 3.79319 0.89 0.000237061 0.00018656 0.0199186 0.0161513 -1 -1 -1 -1 50 2301 21 6.95648e+06 492173 902133. 3121.57 5.47 0.139175 0.114251 28642 213929 -1 1966 20 1889 2731 216206 44339 3.82986 3.82986 -142.739 -3.82986 0 0 1.08113e+06 3740.92 0.41 0.07 0.19 -1 -1 0.41 0.0188862 0.0167965 91 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 6.02 vpr 64.90 MiB 0.03 7188 -1 -1 1 0.04 -1 -1 33808 -1 -1 31 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66460 32 32 405 318 1 192 95 17 17 289 -1 unnamed_device 26.2 MiB 0.59 796 15215 5678 7656 1881 64.9 MiB 0.09 0.00 3.0797 -116.569 -3.0797 3.0797 0.89 0.000225108 0.000176083 0.0186307 0.0149886 -1 -1 -1 -1 42 2465 28 6.95648e+06 448746 744469. 2576.02 1.83 0.0756408 0.0624406 27202 183097 -1 1944 23 1707 2406 228872 48500 2.98197 2.98197 -120.753 -2.98197 0 0 949917. 3286.91 0.38 0.07 0.16 -1 -1 0.38 0.0192163 0.0169333 90 65 63 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 13.03 vpr 64.61 MiB 0.02 6996 -1 -1 1 0.04 -1 -1 33824 -1 -1 13 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66160 29 32 287 238 1 136 74 17 17 289 -1 unnamed_device 25.8 MiB 4.25 413 8444 3429 4545 470 64.6 MiB 0.04 0.00 3.17976 -99.6274 -3.17976 3.17976 0.87 0.000170127 0.000133803 0.011219 0.00908545 -1 -1 -1 -1 42 1495 26 6.95648e+06 188184 744469. 2576.02 5.70 0.109053 0.0897164 27202 183097 -1 1176 24 1072 1285 89928 23616 3.00387 3.00387 -105.425 -3.00387 0 0 949917. 3286.91 0.35 0.04 0.16 -1 -1 0.35 0.0139487 0.0122001 56 34 58 29 29 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 6.51 vpr 64.68 MiB 0.02 7204 -1 -1 1 0.05 -1 -1 33812 -1 -1 10 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66228 32 32 334 290 1 148 74 17 17 289 -1 unnamed_device 25.8 MiB 0.83 584 9839 4132 5456 251 64.7 MiB 0.05 0.00 2.9814 -102.92 -2.9814 2.9814 0.96 0.00019317 0.00015208 0.0148828 0.0121344 -1 -1 -1 -1 44 1714 41 6.95648e+06 144757 787024. 2723.27 2.08 0.075068 0.0620392 27778 195446 -1 1301 20 1069 1375 127540 30062 2.86342 2.86342 -103.55 -2.86342 0 0 997811. 3452.63 0.44 0.05 0.21 -1 -1 0.44 0.0150028 0.0132993 58 82 0 0 82 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 17.52 vpr 64.85 MiB 0.03 7180 -1 -1 1 0.04 -1 -1 34124 -1 -1 28 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66404 31 32 365 281 1 188 91 17 17 289 -1 unnamed_device 26.0 MiB 0.46 740 12331 4240 6152 1939 64.8 MiB 0.07 0.00 4.034 -137.168 -4.034 4.034 0.97 0.000221861 0.00017553 0.0166071 0.0136187 -1 -1 -1 -1 50 2491 38 6.95648e+06 405319 902133. 3121.57 13.50 0.151769 0.126089 28642 213929 -1 1888 23 2039 2998 270691 60908 3.87686 3.87686 -143.544 -3.87686 0 0 1.08113e+06 3740.92 0.42 0.07 0.19 -1 -1 0.42 0.0163729 0.0142794 86 34 93 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 6.61 vpr 64.20 MiB 0.02 7108 -1 -1 1 0.04 -1 -1 33884 -1 -1 14 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65740 29 32 297 254 1 144 75 17 17 289 -1 unnamed_device 25.7 MiB 1.23 591 12399 5279 6566 554 64.2 MiB 0.08 0.00 3.26295 -102.061 -3.26295 3.26295 0.93 0.000250933 0.000189948 0.0175493 0.014215 -1 -1 -1 -1 36 2054 38 6.95648e+06 202660 648988. 2245.63 2.06 0.0680597 0.0562175 26050 158493 -1 1467 19 1087 1494 102866 24191 2.92067 2.92067 -103.124 -2.92067 0 0 828058. 2865.25 0.33 0.04 0.14 -1 -1 0.33 0.0118012 0.0104176 59 56 29 29 52 26 +fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 8.86 vpr 64.46 MiB 0.02 6968 -1 -1 1 0.04 -1 -1 34036 -1 -1 10 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66008 32 32 314 256 1 154 74 17 17 289 -1 unnamed_device 25.6 MiB 1.30 698 10149 3910 5225 1014 64.5 MiB 0.06 0.00 3.05815 -118.306 -3.05815 3.05815 0.90 0.000201918 0.000161284 0.0151206 0.0123531 -1 -1 -1 -1 40 2047 29 6.95648e+06 144757 706193. 2443.58 4.31 0.0984338 0.0813051 26914 176310 -1 1712 22 1552 2132 221035 44123 3.20912 3.20912 -130.461 -3.20912 0 0 926341. 3205.33 0.35 0.07 0.16 -1 -1 0.35 0.0152114 0.0133454 61 34 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 8.59 vpr 64.68 MiB 0.03 7312 -1 -1 1 0.04 -1 -1 34048 -1 -1 24 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66232 31 32 387 307 1 181 87 17 17 289 -1 unnamed_device 25.9 MiB 1.07 746 14103 5624 7146 1333 64.7 MiB 0.09 0.00 3.238 -117.486 -3.238 3.238 0.93 0.000221803 0.000174577 0.0195382 0.0159103 -1 -1 -1 -1 40 2250 24 6.95648e+06 347416 706193. 2443.58 4.18 0.114716 0.0942168 26914 176310 -1 1847 21 1868 2477 207757 46529 3.35967 3.35967 -127.465 -3.35967 0 0 926341. 3205.33 0.36 0.10 0.16 -1 -1 0.36 0.026383 0.0232655 82 64 58 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 7.13 vpr 64.65 MiB 0.02 7004 -1 -1 1 0.04 -1 -1 33700 -1 -1 11 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66204 31 32 308 262 1 142 74 17 17 289 -1 unnamed_device 26.0 MiB 2.24 686 12474 3876 7111 1487 64.7 MiB 0.07 0.00 3.13575 -103.399 -3.13575 3.13575 0.87 0.000177189 0.000138948 0.0166928 0.0134323 -1 -1 -1 -1 34 2076 38 6.95648e+06 159232 618332. 2139.56 1.63 0.0663046 0.0543592 25762 151098 -1 1736 21 1111 1664 144444 31034 3.15417 3.15417 -115.942 -3.15417 0 0 787024. 2723.27 0.33 0.05 0.13 -1 -1 0.33 0.0125646 0.011034 56 55 31 31 53 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 16.68 vpr 64.75 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 34220 -1 -1 19 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66300 32 32 383 307 1 176 83 17 17 289 -1 unnamed_device 26.0 MiB 1.63 722 12503 5194 6872 437 64.7 MiB 0.08 0.00 3.23686 -109.678 -3.23686 3.23686 0.91 0.00021469 0.000168702 0.0179795 0.0146042 -1 -1 -1 -1 46 2507 26 6.95648e+06 275038 828058. 2865.25 11.62 0.149146 0.123515 28066 200906 -1 1771 21 1311 1957 149607 34456 3.06662 3.06662 -115.056 -3.06662 0 0 1.01997e+06 3529.29 0.38 0.05 0.18 -1 -1 0.38 0.0153966 0.0134858 76 65 52 26 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 7.09 vpr 65.04 MiB 0.02 7392 -1 -1 1 0.04 -1 -1 33912 -1 -1 25 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66600 31 32 422 339 1 187 88 17 17 289 -1 unnamed_device 26.4 MiB 1.51 718 15298 5475 7567 2256 65.0 MiB 0.10 0.00 3.37721 -115.369 -3.37721 3.37721 0.91 0.000248075 0.00019366 0.0222294 0.0179742 -1 -1 -1 -1 42 2454 37 6.95648e+06 361892 744469. 2576.02 2.28 0.0951706 0.0783908 27202 183097 -1 1975 22 1999 2722 234333 51424 3.31733 3.31733 -129.625 -3.31733 0 0 949917. 3286.91 0.35 0.07 0.16 -1 -1 0.35 0.0170811 0.0149316 85 93 31 31 92 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 6.57 vpr 64.73 MiB 0.02 6860 -1 -1 1 0.05 -1 -1 33676 -1 -1 10 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66284 32 32 333 279 1 154 74 17 17 289 -1 unnamed_device 25.9 MiB 0.89 564 10149 3066 5426 1657 64.7 MiB 0.07 0.00 2.9023 -103.177 -2.9023 2.9023 0.90 0.000213441 0.000168893 0.0163202 0.0132916 -1 -1 -1 -1 42 2076 27 6.95648e+06 144757 744469. 2576.02 2.26 0.0797797 0.0665196 27202 183097 -1 1578 21 1250 1859 168775 37839 3.11212 3.11212 -112.379 -3.11212 0 0 949917. 3286.91 0.36 0.05 0.18 -1 -1 0.36 0.0143999 0.0126939 61 61 32 32 60 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 7.20 vpr 64.75 MiB 0.02 6948 -1 -1 1 0.04 -1 -1 33892 -1 -1 10 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66304 32 32 339 283 1 158 74 17 17 289 -1 unnamed_device 26.1 MiB 1.08 612 8289 3415 4647 227 64.8 MiB 0.05 0.00 3.0515 -113.508 -3.0515 3.0515 0.87 0.000190414 0.00014924 0.0128486 0.0104754 -1 -1 -1 -1 50 1756 29 6.95648e+06 144757 902133. 3121.57 2.67 0.0790903 0.066076 28642 213929 -1 1545 25 1500 2310 182818 43587 3.21392 3.21392 -123.294 -3.21392 0 0 1.08113e+06 3740.92 0.44 0.07 0.20 -1 -1 0.44 0.0182631 0.015963 63 63 32 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 7.48 vpr 65.04 MiB 0.02 7136 -1 -1 1 0.04 -1 -1 34444 -1 -1 29 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66596 32 32 407 319 1 190 93 17 17 289 -1 unnamed_device 26.4 MiB 0.87 953 11433 2671 7909 853 65.0 MiB 0.08 0.00 3.79939 -142.687 -3.79939 3.79939 0.95 0.000245004 0.000186643 0.0162493 0.0131406 -1 -1 -1 -1 40 2518 29 6.95648e+06 419795 706193. 2443.58 3.19 0.096134 0.0806775 26914 176310 -1 2322 26 2210 3234 302908 68055 4.17756 4.17756 -157.903 -4.17756 0 0 926341. 3205.33 0.34 0.08 0.15 -1 -1 0.34 0.0179552 0.0155784 88 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 7.13 vpr 64.75 MiB 0.02 7316 -1 -1 1 0.04 -1 -1 33736 -1 -1 19 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66308 29 32 367 293 1 175 80 17 17 289 -1 unnamed_device 26.0 MiB 1.08 751 8336 2486 4818 1032 64.8 MiB 0.06 0.00 3.1658 -105.551 -3.1658 3.1658 0.94 0.000220737 0.000173858 0.0132219 0.0108729 -1 -1 -1 -1 38 2273 41 6.95648e+06 275038 678818. 2348.85 2.64 0.0842764 0.0700792 26626 170182 -1 1724 24 1515 2148 170944 40482 3.28747 3.28747 -116.09 -3.28747 0 0 902133. 3121.57 0.36 0.06 0.16 -1 -1 0.36 0.0186314 0.0163918 77 62 56 29 58 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 8.00 vpr 65.13 MiB 0.03 7224 -1 -1 1 0.04 -1 -1 34004 -1 -1 29 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66696 32 32 469 381 1 192 93 17 17 289 -1 unnamed_device 26.3 MiB 1.47 819 16473 6066 7302 3105 65.1 MiB 0.09 0.00 3.81039 -138.347 -3.81039 3.81039 0.93 0.000260637 0.000206957 0.0224718 0.0179151 -1 -1 -1 -1 54 2296 38 6.95648e+06 419795 949917. 3286.91 2.86 0.105012 0.0865294 29506 232905 -1 1872 24 2067 3118 252516 61667 4.04136 4.04136 -149.256 -4.04136 0 0 1.17392e+06 4061.99 0.47 0.08 0.24 -1 -1 0.47 0.0223094 0.0195709 89 127 0 0 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 9.03 vpr 64.53 MiB 0.02 6968 -1 -1 1 0.04 -1 -1 34100 -1 -1 11 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66080 31 32 259 212 1 143 74 17 17 289 -1 unnamed_device 25.8 MiB 1.29 577 9219 3376 4280 1563 64.5 MiB 0.05 0.00 3.0073 -101.365 -3.0073 3.0073 0.90 0.000184756 0.000136476 0.0127367 0.0104474 -1 -1 -1 -1 46 1633 20 6.95648e+06 159232 828058. 2865.25 4.39 0.0833155 0.068935 28066 200906 -1 1465 24 1351 2142 160288 37402 2.95362 2.95362 -109.8 -2.95362 0 0 1.01997e+06 3529.29 0.40 0.06 0.18 -1 -1 0.40 0.0143668 0.0126417 57 4 85 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 7.26 vpr 64.88 MiB 0.02 7328 -1 -1 1 0.04 -1 -1 34136 -1 -1 23 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66440 32 32 418 338 1 182 87 17 17 289 -1 unnamed_device 26.0 MiB 1.04 751 13335 4844 6817 1674 64.9 MiB 0.08 0.00 3.74945 -128.098 -3.74945 3.74945 0.86 0.000225074 0.000176138 0.0192665 0.0154518 -1 -1 -1 -1 52 2258 25 6.95648e+06 332941 926341. 3205.33 2.81 0.0848387 0.0697611 29218 227130 -1 1670 20 1547 2050 191458 44084 3.80366 3.80366 -136.165 -3.80366 0 0 1.14541e+06 3963.36 0.44 0.07 0.20 -1 -1 0.44 0.0206243 0.0183294 81 92 28 28 92 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 13.29 vpr 64.74 MiB 0.02 7040 -1 -1 1 0.04 -1 -1 33672 -1 -1 10 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66296 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 26.0 MiB 3.34 732 10149 4260 5733 156 64.7 MiB 0.06 0.00 2.97895 -115.858 -2.97895 2.97895 0.85 0.000202634 0.00015895 0.0156831 0.0126822 -1 -1 -1 -1 38 2140 50 6.95648e+06 144757 678818. 2348.85 6.72 0.131602 0.107826 26626 170182 -1 1736 21 1448 2001 193905 40098 3.66202 3.66202 -142.167 -3.66202 0 0 902133. 3121.57 0.32 0.06 0.15 -1 -1 0.32 0.0144774 0.0126478 61 96 0 0 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 9.12 vpr 64.81 MiB 0.02 7296 -1 -1 1 0.04 -1 -1 34156 -1 -1 24 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66368 32 32 401 316 1 188 88 17 17 289 -1 unnamed_device 25.9 MiB 1.09 784 11983 4223 5778 1982 64.8 MiB 0.07 0.00 3.13882 -116.487 -3.13882 3.13882 0.85 0.000230168 0.000186816 0.0155959 0.0126378 -1 -1 -1 -1 48 2133 27 6.95648e+06 347416 865456. 2994.66 4.68 0.11231 0.0922848 28354 207349 -1 1808 20 1412 2099 173202 38789 3.47987 3.47987 -125.608 -3.47987 0 0 1.05005e+06 3633.38 0.42 0.06 0.18 -1 -1 0.42 0.0164892 0.0145745 84 65 61 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 9.14 vpr 65.24 MiB 0.03 7376 -1 -1 1 0.05 -1 -1 34368 -1 -1 33 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66804 32 32 500 382 1 222 97 17 17 289 -1 unnamed_device 26.4 MiB 1.29 961 18301 6218 9454 2629 65.2 MiB 0.14 0.00 4.52824 -160.34 -4.52824 4.52824 0.90 0.000282344 0.000221166 0.0310152 0.0251819 -1 -1 -1 -1 44 3606 48 6.95648e+06 477698 787024. 2723.27 4.28 0.136446 0.113537 27778 195446 -1 2521 22 2606 4045 389217 80225 5.09591 5.09591 -178.791 -5.09591 0 0 997811. 3452.63 0.39 0.10 0.19 -1 -1 0.39 0.0206557 0.0181017 104 96 64 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 5.71 vpr 63.82 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 33692 -1 -1 10 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65352 30 32 246 229 1 117 72 17 17 289 -1 unnamed_device 25.4 MiB 0.65 399 8267 2578 4387 1302 63.8 MiB 0.04 0.00 2.20646 -75.9306 -2.20646 2.20646 0.87 0.000142794 0.000111322 0.00944963 0.00756744 -1 -1 -1 -1 38 1211 24 6.95648e+06 144757 678818. 2348.85 2.09 0.0576629 0.047849 26626 170182 -1 863 19 636 793 63794 16426 2.30318 2.30318 -81.2983 -2.30318 0 0 902133. 3121.57 0.34 0.03 0.15 -1 -1 0.34 0.00907669 0.00791915 45 56 0 0 53 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 8.51 vpr 64.46 MiB 0.02 6928 -1 -1 1 0.04 -1 -1 33876 -1 -1 12 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66012 30 32 296 244 1 141 74 17 17 289 -1 unnamed_device 25.7 MiB 2.90 478 9684 3860 5006 818 64.5 MiB 0.05 0.00 3.27575 -100.35 -3.27575 3.27575 0.90 0.00017829 0.00013946 0.0134907 0.0109151 -1 -1 -1 -1 62 1209 21 6.95648e+06 173708 1.05005e+06 3633.38 2.11 0.0627843 0.0519999 30946 263737 -1 1049 16 765 1119 81635 19720 3.04462 3.04462 -100.76 -3.04462 0 0 1.30136e+06 4502.97 0.48 0.03 0.26 -1 -1 0.48 0.011093 0.00990901 58 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 6.35 vpr 64.64 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 33828 -1 -1 10 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66192 32 32 314 256 1 161 74 17 17 289 -1 unnamed_device 25.8 MiB 0.30 594 9219 3126 4706 1387 64.6 MiB 0.06 0.00 2.93285 -111.664 -2.93285 2.93285 0.89 0.000193495 0.000152169 0.0140947 0.011479 -1 -1 -1 -1 48 2086 49 6.95648e+06 144757 865456. 2994.66 2.82 0.0914713 0.0769749 28354 207349 -1 1444 25 1555 2590 241051 52720 3.23742 3.23742 -116.56 -3.23742 0 0 1.05005e+06 3633.38 0.39 0.06 0.18 -1 -1 0.39 0.0145043 0.0126297 65 34 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 8.17 vpr 64.16 MiB 0.02 7032 -1 -1 1 0.04 -1 -1 33944 -1 -1 15 25 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65696 25 32 251 214 1 132 72 17 17 289 -1 unnamed_device 25.6 MiB 0.67 415 9310 3978 4599 733 64.2 MiB 0.05 0.00 3.24096 -89.5658 -3.24096 3.24096 0.91 0.000150234 0.000118013 0.0118018 0.00963869 -1 -1 -1 -1 46 1386 24 6.95648e+06 217135 828058. 2865.25 4.24 0.0787125 0.0645544 28066 200906 -1 1024 22 988 1311 88790 22117 3.09482 3.09482 -97.6336 -3.09482 0 0 1.01997e+06 3529.29 0.37 0.03 0.17 -1 -1 0.37 0.0105159 0.00921796 56 34 50 25 25 25 +fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 6.60 vpr 65.09 MiB 0.02 7264 -1 -1 1 0.04 -1 -1 34424 -1 -1 13 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66648 32 32 432 346 1 185 77 17 17 289 -1 unnamed_device 26.3 MiB 1.29 759 9368 3878 5207 283 65.1 MiB 0.06 0.00 3.79735 -132.334 -3.79735 3.79735 0.86 0.000235684 0.000185663 0.0162069 0.0130574 -1 -1 -1 -1 42 2874 46 6.95648e+06 188184 744469. 2576.02 2.10 0.0851568 0.0699239 27202 183097 -1 2057 20 1787 3006 204311 46800 4.14156 4.14156 -147.02 -4.14156 0 0 949917. 3286.91 0.37 0.06 0.16 -1 -1 0.37 0.017202 0.0150038 77 94 32 32 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 9.47 vpr 65.02 MiB 0.03 7264 -1 -1 1 0.04 -1 -1 34256 -1 -1 29 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66584 31 32 421 339 1 185 92 17 17 289 -1 unnamed_device 26.3 MiB 0.97 724 14789 4750 6856 3183 65.0 MiB 0.08 0.00 3.1508 -112.895 -3.1508 3.1508 0.93 0.000241088 0.000189278 0.020069 0.0162234 -1 -1 -1 -1 50 2096 22 6.95648e+06 419795 902133. 3121.57 4.97 0.127874 0.104191 28642 213929 -1 1718 22 1670 2258 210252 53762 3.38277 3.38277 -123.061 -3.38277 0 0 1.08113e+06 3740.92 0.42 0.07 0.20 -1 -1 0.42 0.0183852 0.0160435 87 94 29 29 93 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 6.72 vpr 65.02 MiB 0.02 7220 -1 -1 1 0.04 -1 -1 34412 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66576 32 32 438 350 1 287 86 17 17 289 -1 unnamed_device 26.0 MiB 0.91 1129 15584 6141 7449 1994 65.0 MiB 0.11 0.00 4.57544 -163.509 -4.57544 4.57544 0.90 0.000256551 0.000190975 0.0245724 0.0194269 -1 -1 -1 -1 46 3592 46 6.99608e+06 323745 828058. 2865.25 2.30 0.0953426 0.0786146 28066 200906 -1 2587 21 2350 2730 217587 46253 4.72831 4.72831 -167.527 -4.72831 0 0 1.01997e+06 3529.29 0.40 0.09 0.18 -1 -1 0.40 0.0239191 0.0214806 130 96 32 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 17.15 vpr 64.92 MiB 0.03 7400 -1 -1 1 0.04 -1 -1 34244 -1 -1 20 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66476 30 32 409 330 1 260 82 17 17 289 -1 unnamed_device 26.1 MiB 1.34 1071 14500 5786 6936 1778 64.9 MiB 0.09 0.00 4.41722 -148.996 -4.41722 4.41722 0.91 0.000219885 0.000173663 0.0210302 0.0170472 -1 -1 -1 -1 40 3344 43 6.99608e+06 294314 706193. 2443.58 12.29 0.160467 0.132561 26914 176310 -1 2810 22 2611 3549 326273 68335 4.77055 4.77055 -164.894 -4.77055 0 0 926341. 3205.33 0.41 0.10 0.17 -1 -1 0.41 0.0207406 0.0184143 118 91 30 30 89 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 6.39 vpr 64.78 MiB 0.02 7032 -1 -1 1 0.04 -1 -1 34276 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66336 32 32 387 309 1 241 82 17 17 289 -1 unnamed_device 25.8 MiB 1.19 1033 13610 5703 7532 375 64.8 MiB 0.09 0.00 3.59279 -130.543 -3.59279 3.59279 0.92 0.000221978 0.000174937 0.020334 0.0165081 -1 -1 -1 -1 42 2896 26 6.99608e+06 264882 744469. 2576.02 1.83 0.0776657 0.0642318 27202 183097 -1 2439 27 2060 2469 283936 77557 3.90106 3.90106 -147.238 -3.90106 0 0 949917. 3286.91 0.37 0.08 0.16 -1 -1 0.37 0.0179849 0.015607 106 65 54 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 6.79 vpr 64.49 MiB 0.03 7248 -1 -1 1 0.04 -1 -1 33816 -1 -1 18 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66040 29 32 343 267 1 201 79 17 17 289 -1 unnamed_device 25.8 MiB 0.92 736 8360 3365 4601 394 64.5 MiB 0.06 0.00 3.83534 -125.933 -3.83534 3.83534 0.93 0.000198805 0.000156982 0.0126025 0.0103601 -1 -1 -1 -1 46 2440 40 6.99608e+06 264882 828058. 2865.25 2.41 0.0784968 0.065211 28066 200906 -1 1699 23 1809 2706 201725 48097 3.69842 3.69842 -129.786 -3.69842 0 0 1.01997e+06 3529.29 0.38 0.07 0.18 -1 -1 0.38 0.0166733 0.0147321 89 34 87 29 29 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 7.03 vpr 64.68 MiB 0.02 7128 -1 -1 1 0.04 -1 -1 34012 -1 -1 15 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66232 32 32 376 288 1 218 79 17 17 289 -1 unnamed_device 25.8 MiB 0.68 971 12416 5616 6402 398 64.7 MiB 0.08 0.00 4.27644 -155.98 -4.27644 4.27644 0.94 0.000225399 0.000177801 0.0199569 0.016223 -1 -1 -1 -1 58 3083 25 6.99608e+06 220735 997811. 3452.63 2.76 0.0867376 0.0720953 30370 251734 -1 2384 22 2407 3869 335073 75781 4.52455 4.52455 -169.743 -4.52455 0 0 1.25153e+06 4330.55 0.46 0.08 0.24 -1 -1 0.46 0.0166317 0.0145535 93 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 18.93 vpr 65.00 MiB 0.03 7284 -1 -1 1 0.03 -1 -1 33972 -1 -1 32 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66564 32 32 402 316 1 251 96 17 17 289 -1 unnamed_device 26.1 MiB 0.55 1303 16740 4427 11097 1216 65.0 MiB 0.12 0.00 3.60699 -130.903 -3.60699 3.60699 0.95 0.000265786 0.000212407 0.0217323 0.0171063 -1 -1 -1 -1 42 3499 42 6.99608e+06 470902 744469. 2576.02 14.94 0.173292 0.142652 27202 183097 -1 2821 23 2284 3422 302441 61498 3.47801 3.47801 -139.661 -3.47801 0 0 949917. 3286.91 0.35 0.08 0.16 -1 -1 0.35 0.0165442 0.0143677 119 64 63 32 63 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 6.38 vpr 64.36 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 34448 -1 -1 15 27 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65904 27 32 269 226 1 158 74 17 17 289 -1 unnamed_device 25.5 MiB 1.08 620 8289 3348 4414 527 64.4 MiB 0.05 0.00 3.30124 -103.988 -3.30124 3.30124 0.92 0.000164832 0.000129364 0.011104 0.00910513 -1 -1 -1 -1 38 2206 37 6.99608e+06 220735 678818. 2348.85 2.05 0.0624406 0.0517512 26626 170182 -1 1627 20 1415 2004 178034 39532 3.42781 3.42781 -116.163 -3.42781 0 0 902133. 3121.57 0.33 0.05 0.16 -1 -1 0.33 0.0114146 0.0100981 68 34 54 27 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 6.64 vpr 64.32 MiB 0.02 7028 -1 -1 1 0.04 -1 -1 33776 -1 -1 17 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65864 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 25.5 MiB 0.61 683 10744 3839 5024 1881 64.3 MiB 0.06 0.00 2.89749 -100.387 -2.89749 2.89749 0.89 0.000208021 0.000167671 0.0147483 0.0120642 -1 -1 -1 -1 48 2190 43 6.99608e+06 250167 865456. 2994.66 2.66 0.0875022 0.0733762 28354 207349 -1 1656 40 1555 2279 153463 38129 2.99982 2.99982 -104.648 -2.99982 0 0 1.05005e+06 3633.38 0.39 0.06 0.18 -1 -1 0.39 0.0209512 0.0180261 77 4 115 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 8.03 vpr 64.57 MiB 0.03 7244 -1 -1 1 0.04 -1 -1 33928 -1 -1 15 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66120 31 32 338 292 1 223 78 17 17 289 -1 unnamed_device 25.5 MiB 2.00 947 14022 5302 5947 2773 64.6 MiB 0.08 0.00 3.20894 -116.628 -3.20894 3.20894 0.98 0.000185548 0.000145468 0.0180258 0.0144448 -1 -1 -1 -1 40 2806 38 6.99608e+06 220735 706193. 2443.58 2.65 0.0826562 0.0679059 26914 176310 -1 2185 21 1918 2321 201084 44015 3.61232 3.61232 -128.383 -3.61232 0 0 926341. 3205.33 0.36 0.06 0.16 -1 -1 0.36 0.0147471 0.0129955 97 85 0 0 84 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 5.98 vpr 64.37 MiB 0.02 6864 -1 -1 1 0.04 -1 -1 33940 -1 -1 13 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65916 32 32 314 256 1 187 77 17 17 289 -1 unnamed_device 25.5 MiB 0.88 683 10346 4298 5768 280 64.4 MiB 0.06 0.00 3.58749 -133.196 -3.58749 3.58749 0.88 0.000184517 0.000144827 0.0147298 0.0119218 -1 -1 -1 -1 44 2545 37 6.99608e+06 191304 787024. 2723.27 1.94 0.0650786 0.0540414 27778 195446 -1 1751 23 1642 2048 187978 40362 3.46386 3.46386 -137.45 -3.46386 0 0 997811. 3452.63 0.37 0.06 0.17 -1 -1 0.37 0.0134516 0.0117071 79 34 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 15.67 vpr 64.59 MiB 0.02 7160 -1 -1 1 0.04 -1 -1 33872 -1 -1 15 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66144 30 32 325 273 1 199 77 17 17 289 -1 unnamed_device 25.7 MiB 2.60 858 10835 4264 5113 1458 64.6 MiB 0.07 0.00 3.85932 -133.017 -3.85932 3.85932 0.89 0.000228664 0.00017075 0.015762 0.0128334 -1 -1 -1 -1 38 2629 24 6.99608e+06 220735 678818. 2348.85 9.82 0.117817 0.0978823 26626 170182 -1 2253 21 1903 2516 240687 49362 4.0616 4.0616 -149.942 -4.0616 0 0 902133. 3121.57 0.36 0.07 0.15 -1 -1 0.36 0.0156374 0.0138203 88 63 30 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 8.84 vpr 64.63 MiB 0.03 7028 -1 -1 1 0.04 -1 -1 34068 -1 -1 14 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66180 32 32 331 280 1 210 78 17 17 289 -1 unnamed_device 25.9 MiB 1.01 1076 12030 4001 6276 1753 64.6 MiB 0.07 0.00 3.0643 -120.829 -3.0643 3.0643 0.90 0.000187766 0.000146823 0.0165646 0.0134265 -1 -1 -1 -1 42 2511 22 6.99608e+06 206020 744469. 2576.02 4.50 0.10835 0.0891181 27202 183097 -1 2136 21 1429 1546 146785 29158 3.10717 3.10717 -124.077 -3.10717 0 0 949917. 3286.91 0.39 0.06 0.17 -1 -1 0.39 0.0150911 0.0133468 91 65 25 25 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 7.10 vpr 64.69 MiB 0.02 7032 -1 -1 1 0.04 -1 -1 33788 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66240 32 32 386 305 1 233 81 17 17 289 -1 unnamed_device 26.0 MiB 1.28 895 11281 2962 6708 1611 64.7 MiB 0.08 0.00 3.59905 -128.853 -3.59905 3.59905 0.90 0.000217265 0.000171723 0.0168805 0.0137522 -1 -1 -1 -1 52 2384 30 6.99608e+06 250167 926341. 3205.33 2.29 0.0832343 0.0691071 29218 227130 -1 1808 22 1838 2530 221273 51876 3.56236 3.56236 -127.029 -3.56236 0 0 1.14541e+06 3963.36 0.44 0.10 0.21 -1 -1 0.44 0.0268683 0.0241377 102 58 64 32 57 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 6.97 vpr 64.93 MiB 0.02 7012 -1 -1 1 0.04 -1 -1 33996 -1 -1 19 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66488 32 32 407 319 1 254 83 17 17 289 -1 unnamed_device 26.1 MiB 1.01 1060 14303 4176 8339 1788 64.9 MiB 0.10 0.00 4.32484 -157.119 -4.32484 4.32484 0.86 0.000228273 0.000181066 0.021611 0.0176053 -1 -1 -1 -1 44 3344 49 6.99608e+06 279598 787024. 2723.27 2.53 0.115953 0.0977417 27778 195446 -1 2644 27 2823 3703 365004 96103 4.77951 4.77951 -170.822 -4.77951 0 0 997811. 3452.63 0.38 0.10 0.18 -1 -1 0.38 0.0198805 0.0173017 112 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 7.94 vpr 64.17 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33860 -1 -1 14 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65712 29 32 272 228 1 161 75 17 17 289 -1 unnamed_device 25.5 MiB 2.81 528 11293 4020 5114 2159 64.2 MiB 0.06 0.00 2.96115 -97.0174 -2.96115 2.96115 0.91 0.00016812 0.000132053 0.0140809 0.011337 -1 -1 -1 -1 44 1846 48 6.99608e+06 206020 787024. 2723.27 1.97 0.0617599 0.0510219 27778 195446 -1 1210 23 1155 1592 117420 29265 3.09402 3.09402 -101.629 -3.09402 0 0 997811. 3452.63 0.37 0.04 0.17 -1 -1 0.37 0.0119803 0.0104181 67 29 58 29 24 24 +fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 8.97 vpr 64.71 MiB 0.02 7236 -1 -1 1 0.04 -1 -1 33740 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66268 32 32 401 315 1 244 80 17 17 289 -1 unnamed_device 26.0 MiB 3.54 1210 15904 6463 7649 1792 64.7 MiB 0.11 0.00 3.55749 -134.258 -3.55749 3.55749 0.89 0.000276565 0.000198363 0.0251793 0.0202427 -1 -1 -1 -1 44 3316 27 6.99608e+06 235451 787024. 2723.27 1.99 0.0789806 0.0649081 27778 195446 -1 2713 24 2754 3921 308371 65001 3.77371 3.77371 -148.338 -3.77371 0 0 997811. 3452.63 0.39 0.08 0.18 -1 -1 0.39 0.0188446 0.0164977 107 63 64 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 7.83 vpr 63.92 MiB 0.02 7204 -1 -1 1 0.04 -1 -1 34004 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65452 32 32 383 303 1 230 81 17 17 289 -1 unnamed_device 24.9 MiB 1.56 1122 6731 1632 4419 680 63.9 MiB 0.05 0.00 3.32994 -132.194 -3.32994 3.32994 0.86 0.000216404 0.000171511 0.0112045 0.00928907 -1 -1 -1 -1 38 3078 24 6.99608e+06 250167 678818. 2348.85 3.01 0.0829187 0.0695957 26626 170182 -1 2529 22 2206 2773 235780 47709 3.37357 3.37357 -139.703 -3.37357 0 0 902133. 3121.57 0.33 0.07 0.15 -1 -1 0.33 0.017632 0.0155809 99 57 64 32 56 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 6.31 vpr 64.55 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 34124 -1 -1 14 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66096 32 32 339 284 1 218 78 17 17 289 -1 unnamed_device 25.8 MiB 0.98 951 13856 5691 6655 1510 64.5 MiB 0.09 0.00 3.13279 -121.703 -3.13279 3.13279 0.89 0.000192635 0.000151222 0.0185732 0.0149532 -1 -1 -1 -1 42 2770 34 6.99608e+06 206020 744469. 2576.02 2.06 0.0717668 0.0593217 27202 183097 -1 2294 22 1963 2449 242421 49435 2.89357 2.89357 -123.932 -2.89357 0 0 949917. 3286.91 0.34 0.07 0.16 -1 -1 0.34 0.0166457 0.0146168 91 65 29 29 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 8.94 vpr 64.03 MiB 0.02 6828 -1 -1 1 0.04 -1 -1 33932 -1 -1 11 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65568 30 32 226 208 1 138 73 17 17 289 -1 unnamed_device 25.5 MiB 3.67 516 9193 3770 5081 342 64.0 MiB 0.05 0.00 2.37536 -87.628 -2.37536 2.37536 0.90 0.000143022 0.00011231 0.0108855 0.00882625 -1 -1 -1 -1 38 1648 28 6.99608e+06 161872 678818. 2348.85 2.05 0.0527568 0.0435179 26626 170182 -1 1217 17 751 798 77910 17444 2.51033 2.51033 -88.5237 -2.51033 0 0 902133. 3121.57 0.33 0.04 0.15 -1 -1 0.33 0.0102322 0.0091404 56 34 24 24 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 12.84 vpr 64.84 MiB 0.02 7076 -1 -1 1 0.04 -1 -1 34176 -1 -1 15 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66392 31 32 335 280 1 209 78 17 17 289 -1 unnamed_device 25.8 MiB 3.39 1023 8046 2352 4947 747 64.8 MiB 0.05 0.00 3.80119 -135.035 -3.80119 3.80119 0.93 0.000196852 0.000155085 0.0117925 0.00964943 -1 -1 -1 -1 36 2779 37 6.99608e+06 220735 648988. 2245.63 6.08 0.126126 0.104714 26050 158493 -1 2361 35 2178 2743 703453 275626 3.70341 3.70341 -145.617 -3.70341 0 0 828058. 2865.25 0.31 0.18 0.14 -1 -1 0.31 0.0200274 0.0171948 91 64 31 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 17.02 vpr 64.86 MiB 0.02 7100 -1 -1 1 0.04 -1 -1 33772 -1 -1 23 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66420 32 32 366 283 1 215 87 17 17 289 -1 unnamed_device 25.9 MiB 0.61 873 12759 5251 7214 294 64.9 MiB 0.09 0.00 4.03513 -142.757 -4.03513 4.03513 0.92 0.00022868 0.000182409 0.019295 0.0157573 -1 -1 -1 -1 42 3024 42 6.99608e+06 338461 744469. 2576.02 13.02 0.167627 0.140752 27202 183097 -1 2381 21 2303 3171 353724 88771 4.2429 4.2429 -160.748 -4.2429 0 0 949917. 3286.91 0.35 0.09 0.15 -1 -1 0.35 0.0164715 0.0145842 97 34 91 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 7.26 vpr 64.95 MiB 0.02 7336 -1 -1 1 0.04 -1 -1 34640 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66512 32 32 460 375 1 303 86 17 17 289 -1 unnamed_device 26.4 MiB 1.61 1281 15206 5059 7438 2709 65.0 MiB 0.10 0.00 4.01908 -142.049 -4.01908 4.01908 0.94 0.00024776 0.000195763 0.0238021 0.0193291 -1 -1 -1 -1 44 3544 44 6.99608e+06 323745 787024. 2723.27 2.19 0.0952422 0.0783053 27778 195446 -1 2668 21 2329 2642 220547 47314 4.23596 4.23596 -149.084 -4.23596 0 0 997811. 3452.63 0.37 0.07 0.17 -1 -1 0.37 0.0206637 0.0182305 138 124 0 0 125 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 9.79 vpr 63.85 MiB 0.02 6760 -1 -1 1 0.03 -1 -1 34244 -1 -1 15 26 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65384 26 32 198 186 1 125 73 17 17 289 -1 unnamed_device 25.2 MiB 1.43 402 7369 3107 3789 473 63.9 MiB 0.04 0.00 2.6716 -78.5602 -2.6716 2.6716 0.90 0.000124012 9.6894e-05 0.00776235 0.0063422 -1 -1 -1 -1 38 1306 36 6.99608e+06 220735 678818. 2348.85 5.25 0.0848133 0.0698763 26626 170182 -1 1045 19 808 960 79733 19945 2.39737 2.39737 -79.3385 -2.39737 0 0 902133. 3121.57 0.34 0.03 0.15 -1 -1 0.34 0.00823031 0.00722705 52 30 26 26 22 22 +fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 9.67 vpr 64.46 MiB 0.02 7036 -1 -1 1 0.05 -1 -1 33840 -1 -1 12 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66008 32 32 333 251 1 181 76 17 17 289 -1 unnamed_device 25.5 MiB 1.39 705 12076 4649 5860 1567 64.5 MiB 0.07 0.00 3.97238 -132.995 -3.97238 3.97238 0.86 0.000201558 0.000159801 0.017976 0.0146283 -1 -1 -1 -1 50 2384 26 6.99608e+06 176588 902133. 3121.57 4.92 0.113966 0.0944526 28642 213929 -1 1792 24 1691 2632 239714 84603 3.74246 3.74246 -137.322 -3.74246 0 0 1.08113e+06 3740.92 0.38 0.07 0.19 -1 -1 0.38 0.0150641 0.0131455 75 3 122 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 7.03 vpr 63.45 MiB 0.02 6800 -1 -1 1 0.03 -1 -1 34132 -1 -1 8 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 24.9 MiB 0.29 736 9906 3603 5031 1272 63.4 MiB 0.05 0.00 2.06111 -84.6894 -2.06111 2.06111 0.90 0.000131147 0.00010301 0.0106301 0.00864822 -1 -1 -1 -1 38 1557 18 6.99608e+06 117725 678818. 2348.85 3.69 0.060559 0.050037 26626 170182 -1 1417 21 744 947 87887 17619 1.88582 1.88582 -87.8319 -1.88582 0 0 902133. 3121.57 0.32 0.03 0.14 -1 -1 0.32 0.00869922 0.0075739 44 3 53 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 10.53 vpr 64.63 MiB 0.02 7220 -1 -1 1 0.04 -1 -1 33924 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66184 32 32 376 288 1 218 81 17 17 289 -1 unnamed_device 25.8 MiB 1.32 835 12856 4936 6167 1753 64.6 MiB 0.08 0.00 3.83288 -138.607 -3.83288 3.83288 0.89 0.00021599 0.00016998 0.0192495 0.0156266 -1 -1 -1 -1 54 2823 49 6.99608e+06 250167 949917. 3286.91 5.84 0.127506 0.105907 29506 232905 -1 1943 24 2035 2954 239818 56718 4.18862 4.18862 -149.145 -4.18862 0 0 1.17392e+06 4061.99 0.41 0.07 0.21 -1 -1 0.41 0.0161238 0.0141157 95 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 7.76 vpr 64.61 MiB 0.02 7036 -1 -1 1 0.04 -1 -1 33968 -1 -1 28 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66164 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 25.6 MiB 0.31 928 12512 3016 8778 718 64.6 MiB 0.08 0.00 2.93295 -114.372 -2.93295 2.93295 0.92 0.000211595 0.000167888 0.0151586 0.012329 -1 -1 -1 -1 44 2265 23 6.99608e+06 412039 787024. 2723.27 4.08 0.108468 0.0899133 27778 195446 -1 2105 20 1560 2345 187774 39648 2.71792 2.71792 -115.385 -2.71792 0 0 997811. 3452.63 0.37 0.05 0.19 -1 -1 0.37 0.0137771 0.0120984 87 3 124 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 7.09 vpr 65.05 MiB 0.03 7016 -1 -1 1 0.04 -1 -1 34328 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66616 32 32 407 319 1 256 85 17 17 289 -1 unnamed_device 26.2 MiB 0.97 1355 13105 4686 6378 2041 65.1 MiB 0.09 0.00 3.84405 -146.55 -3.84405 3.84405 0.89 0.000227416 0.000179618 0.0189816 0.0153595 -1 -1 -1 -1 40 3494 25 6.99608e+06 309029 706193. 2443.58 2.76 0.107855 0.0914165 26914 176310 -1 3059 23 2600 3681 340365 67795 4.29672 4.29672 -165.989 -4.29672 0 0 926341. 3205.33 0.34 0.10 0.16 -1 -1 0.34 0.0221362 0.0195217 115 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 13.01 vpr 64.24 MiB 0.02 6888 -1 -1 1 0.04 -1 -1 33968 -1 -1 11 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65784 32 32 294 246 1 176 75 17 17 289 -1 unnamed_device 25.5 MiB 1.65 631 8765 3568 4905 292 64.2 MiB 0.05 0.00 3.0305 -106.826 -3.0305 3.0305 0.89 0.000192463 0.000148115 0.0120014 0.00981235 -1 -1 -1 -1 42 2244 39 6.99608e+06 161872 744469. 2576.02 8.07 0.126436 0.105088 27202 183097 -1 1624 24 1481 2017 179077 44099 3.16022 3.16022 -117.765 -3.16022 0 0 949917. 3286.91 0.37 0.06 0.17 -1 -1 0.37 0.0152501 0.0134407 72 34 54 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 16.33 vpr 64.17 MiB 0.02 7124 -1 -1 1 0.04 -1 -1 34072 -1 -1 13 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65712 30 32 296 244 1 173 75 17 17 289 -1 unnamed_device 25.4 MiB 10.28 650 7975 2404 4392 1179 64.2 MiB 0.05 0.00 3.55679 -117.332 -3.55679 3.55679 0.89 0.000181414 0.000142478 0.0109445 0.00885478 -1 -1 -1 -1 46 2020 32 6.99608e+06 191304 828058. 2865.25 2.88 0.0674836 0.0559287 28066 200906 -1 1500 22 1463 2145 149531 35969 3.32751 3.32751 -121.447 -3.32751 0 0 1.01997e+06 3529.29 0.39 0.05 0.17 -1 -1 0.39 0.0130107 0.0113621 73 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 7.89 vpr 64.45 MiB 0.02 7076 -1 -1 1 0.04 -1 -1 33796 -1 -1 15 28 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65992 28 32 278 232 1 163 75 17 17 289 -1 unnamed_device 25.7 MiB 2.45 739 7975 3247 4368 360 64.4 MiB 0.05 0.00 3.69125 -116.208 -3.69125 3.69125 0.90 0.000171269 0.000134456 0.0110214 0.00894509 -1 -1 -1 -1 36 2348 36 6.99608e+06 220735 648988. 2245.63 2.26 0.067431 0.0558534 26050 158493 -1 1879 19 1330 1991 197562 41720 3.82091 3.82091 -129.865 -3.82091 0 0 828058. 2865.25 0.33 0.06 0.14 -1 -1 0.33 0.0121021 0.0106758 72 34 56 28 28 28 +fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 13.89 vpr 63.90 MiB 0.02 6992 -1 -1 1 0.05 -1 -1 34088 -1 -1 10 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65432 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 25.5 MiB 0.25 696 7204 2957 4121 126 63.9 MiB 0.05 0.00 2.86245 -113.51 -2.86245 2.86245 0.87 0.000174738 0.000137769 0.0102505 0.00842193 -1 -1 -1 -1 38 2346 45 6.99608e+06 147157 678818. 2348.85 10.31 0.126771 0.106509 26626 170182 -1 1846 24 1755 2665 264789 60946 3.64612 3.64612 -132.85 -3.64612 0 0 902133. 3121.57 0.34 0.08 0.15 -1 -1 0.34 0.0160565 0.01414 64 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 8.36 vpr 64.23 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 34244 -1 -1 15 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65768 31 32 303 249 1 185 78 17 17 289 -1 unnamed_device 25.4 MiB 0.85 755 9540 3925 5398 217 64.2 MiB 0.06 0.00 3.03145 -110.864 -3.03145 3.03145 0.87 0.000198195 0.000160054 0.0127329 0.0103744 -1 -1 -1 -1 40 2523 27 6.99608e+06 220735 706193. 2443.58 4.27 0.093284 0.0773987 26914 176310 -1 2055 21 1569 2175 195825 41460 3.20187 3.20187 -124.041 -3.20187 0 0 926341. 3205.33 0.35 0.07 0.15 -1 -1 0.35 0.015207 0.0133759 77 34 61 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 8.86 vpr 64.38 MiB 0.02 6976 -1 -1 1 0.05 -1 -1 34072 -1 -1 16 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65924 29 32 312 264 1 197 77 17 17 289 -1 unnamed_device 25.6 MiB 3.74 884 10835 4063 4821 1951 64.4 MiB 0.07 0.00 2.96441 -103.828 -2.96441 2.96441 0.87 0.000186289 0.000146998 0.014764 0.0119783 -1 -1 -1 -1 36 2555 23 6.99608e+06 235451 648988. 2245.63 1.88 0.0683152 0.0562131 26050 158493 -1 2091 20 1544 1894 174189 36379 3.00602 3.00602 -113.313 -3.00602 0 0 828058. 2865.25 0.33 0.05 0.15 -1 -1 0.33 0.0129121 0.0113548 86 61 29 29 57 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 10.36 vpr 65.03 MiB 0.03 7312 -1 -1 1 0.04 -1 -1 33976 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66592 32 32 423 310 1 243 84 17 17 289 -1 unnamed_device 26.1 MiB 1.26 1043 15273 6507 8280 486 65.0 MiB 0.11 0.00 3.92945 -143.749 -3.92945 3.92945 0.90 0.000260453 0.000207118 0.0242984 0.0196836 -1 -1 -1 -1 54 2852 24 6.99608e+06 294314 949917. 3286.91 5.48 0.136156 0.112953 29506 232905 -1 2312 20 2066 3110 245274 51049 3.94901 3.94901 -144.866 -3.94901 0 0 1.17392e+06 4061.99 0.45 0.07 0.22 -1 -1 0.45 0.0185153 0.0163252 106 29 128 32 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 10.07 vpr 65.06 MiB 0.02 7272 -1 -1 1 0.05 -1 -1 34240 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66620 32 32 403 317 1 252 82 17 17 289 -1 unnamed_device 26.2 MiB 0.98 1127 14500 5161 6829 2510 65.1 MiB 0.11 0.00 3.90969 -144.443 -3.90969 3.90969 0.97 0.00022537 0.000178072 0.0238396 0.0193545 -1 -1 -1 -1 46 3349 32 6.99608e+06 264882 828058. 2865.25 5.45 0.144589 0.119953 28066 200906 -1 2712 21 2653 3652 420598 86614 4.50691 4.50691 -161.912 -4.50691 0 0 1.01997e+06 3529.29 0.40 0.11 0.18 -1 -1 0.40 0.0200355 0.0178052 110 65 62 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 8.75 vpr 64.87 MiB 0.04 7184 -1 -1 1 0.05 -1 -1 34224 -1 -1 16 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66428 31 32 353 302 1 224 79 17 17 289 -1 unnamed_device 26.0 MiB 1.11 1061 8867 2259 5908 700 64.9 MiB 0.06 0.00 3.47679 -127.153 -3.47679 3.47679 0.94 0.000198827 0.000156777 0.0132116 0.0108281 -1 -1 -1 -1 40 2485 24 6.99608e+06 235451 706193. 2443.58 4.15 0.0987458 0.0811122 26914 176310 -1 2159 35 1875 1958 356327 152178 3.24576 3.24576 -128.28 -3.24576 0 0 926341. 3205.33 0.35 0.11 0.15 -1 -1 0.35 0.0193278 0.0166574 99 90 0 0 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 6.62 vpr 64.75 MiB 0.03 7340 -1 -1 1 0.04 -1 -1 34028 -1 -1 18 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66308 31 32 391 309 1 242 81 17 17 289 -1 unnamed_device 25.7 MiB 0.93 1183 15656 5841 7703 2112 64.8 MiB 0.10 0.00 3.61799 -134.688 -3.61799 3.61799 0.89 0.000243878 0.00019389 0.0244279 0.0198027 -1 -1 -1 -1 38 3186 45 6.99608e+06 264882 678818. 2348.85 2.38 0.108803 0.0906637 26626 170182 -1 2602 22 2070 2717 217416 44443 3.96456 3.96456 -147.834 -3.96456 0 0 902133. 3121.57 0.34 0.06 0.15 -1 -1 0.34 0.016686 0.0146295 106 64 60 30 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 7.13 vpr 64.73 MiB 0.03 7492 -1 -1 1 0.05 -1 -1 33892 -1 -1 23 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66288 31 32 455 371 1 302 86 17 17 289 -1 unnamed_device 26.2 MiB 1.23 1328 14072 5452 6377 2243 64.7 MiB 0.10 0.00 4.66638 -161.837 -4.66638 4.66638 1.00 0.00026324 0.000188344 0.0212729 0.0171409 -1 -1 -1 -1 46 3543 30 6.99608e+06 338461 828058. 2865.25 2.30 0.105781 0.0882015 28066 200906 -1 2828 22 2604 2998 246372 50453 4.5124 4.5124 -160.805 -4.5124 0 0 1.01997e+06 3529.29 0.38 0.07 0.18 -1 -1 0.38 0.018679 0.0164245 139 124 0 0 124 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 7.45 vpr 64.96 MiB 0.03 7256 -1 -1 1 0.04 -1 -1 33844 -1 -1 19 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66520 31 32 413 333 1 258 82 17 17 289 -1 unnamed_device 26.1 MiB 2.00 1336 12542 4792 5292 2458 65.0 MiB 0.09 0.00 4.63751 -159.484 -4.63751 4.63751 1.00 0.000235537 0.000186783 0.0194815 0.0157652 -1 -1 -1 -1 42 3461 26 6.99608e+06 279598 744469. 2576.02 1.98 0.0788019 0.0656015 27202 183097 -1 2660 24 2544 3518 276341 56932 4.72864 4.72864 -169.176 -4.72864 0 0 949917. 3286.91 0.38 0.09 0.17 -1 -1 0.38 0.0205658 0.0180924 117 90 31 31 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 8.90 vpr 64.93 MiB 0.03 7348 -1 -1 1 0.05 -1 -1 34364 -1 -1 20 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66488 31 32 391 309 1 241 83 17 17 289 -1 unnamed_device 26.0 MiB 2.87 1058 13763 5815 7487 461 64.9 MiB 0.10 0.00 3.62105 -130.075 -3.62105 3.62105 0.89 0.000230525 0.00018308 0.020619 0.0167743 -1 -1 -1 -1 44 2862 28 6.99608e+06 294314 787024. 2723.27 2.41 0.0877213 0.0728323 27778 195446 -1 2416 45 2982 4253 716827 286287 3.34176 3.34176 -130.053 -3.34176 0 0 997811. 3452.63 0.39 0.19 0.18 -1 -1 0.39 0.0279415 0.0240196 107 64 60 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 7.19 vpr 64.97 MiB 0.02 7108 -1 -1 1 0.04 -1 -1 34124 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66532 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 26.2 MiB 1.14 1214 6556 2392 3648 516 65.0 MiB 0.06 0.00 3.81945 -147.993 -3.81945 3.81945 0.96 0.000279184 0.000211029 0.0125466 0.0103975 -1 -1 -1 -1 46 2989 29 6.99608e+06 250167 828058. 2865.25 2.37 0.0880295 0.0738868 28066 200906 -1 2519 22 2224 2868 243990 48257 3.93982 3.93982 -158.396 -3.93982 0 0 1.01997e+06 3529.29 0.39 0.07 0.18 -1 -1 0.39 0.0172134 0.0151412 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 11.70 vpr 65.39 MiB 0.03 7280 -1 -1 1 0.05 -1 -1 34328 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66964 32 32 496 380 1 313 86 17 17 289 -1 unnamed_device 26.3 MiB 2.47 1472 16529 5767 8472 2290 65.4 MiB 0.12 0.00 4.63877 -169.362 -4.63877 4.63877 0.96 0.000278682 0.000220297 0.0283944 0.0229322 -1 -1 -1 -1 54 3517 23 6.99608e+06 323745 949917. 3286.91 5.53 0.165254 0.13574 29506 232905 -1 2937 23 3244 4571 325998 67875 4.62714 4.62714 -172.282 -4.62714 0 0 1.17392e+06 4061.99 0.42 0.09 0.22 -1 -1 0.42 0.0208079 0.0182433 139 96 62 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 6.62 vpr 64.37 MiB 0.03 7048 -1 -1 1 0.04 -1 -1 34068 -1 -1 13 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65912 31 32 305 250 1 181 76 17 17 289 -1 unnamed_device 25.5 MiB 1.06 800 9996 3753 4176 2067 64.4 MiB 0.06 0.00 3.1395 -118.047 -3.1395 3.1395 1.01 0.000178076 0.000139493 0.0139596 0.0113465 -1 -1 -1 -1 36 2337 45 6.99608e+06 191304 648988. 2245.63 1.99 0.0814393 0.0686644 26050 158493 -1 1864 21 1436 1769 154836 32636 3.27027 3.27027 -127.244 -3.27027 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0164549 0.0146028 75 34 62 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 24.57 vpr 64.99 MiB 0.04 7196 -1 -1 1 0.03 -1 -1 34036 -1 -1 18 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66552 31 32 395 311 1 243 81 17 17 289 -1 unnamed_device 26.3 MiB 0.94 1241 14606 4687 8344 1575 65.0 MiB 0.11 0.00 4.54014 -162.268 -4.54014 4.54014 1.11 0.000229253 0.000181223 0.0228013 0.0183964 -1 -1 -1 -1 42 3579 44 6.99608e+06 264882 744469. 2576.02 19.85 0.182388 0.152437 27202 183097 -1 2897 40 3258 3890 700493 284118 4.54181 4.54181 -172.073 -4.54181 0 0 949917. 3286.91 0.35 0.22 0.16 -1 -1 0.35 0.0312224 0.027283 106 64 62 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 7.21 vpr 64.75 MiB 0.04 7200 -1 -1 1 0.04 -1 -1 34136 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66300 32 32 397 313 1 246 84 17 17 289 -1 unnamed_device 25.9 MiB 1.54 1277 13077 4097 6940 2040 64.7 MiB 0.09 0.00 3.58873 -134.162 -3.58873 3.58873 0.99 0.000229633 0.000180938 0.0194183 0.0157603 -1 -1 -1 -1 42 3408 27 6.99608e+06 294314 744469. 2576.02 2.01 0.0800376 0.066476 27202 183097 -1 2874 20 1975 2784 237357 49435 3.78176 3.78176 -147.68 -3.78176 0 0 949917. 3286.91 0.36 0.08 0.17 -1 -1 0.36 0.0210986 0.0188864 108 63 62 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 7.17 vpr 64.48 MiB 0.02 7164 -1 -1 1 0.04 -1 -1 33912 -1 -1 13 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66032 32 32 345 257 1 187 77 17 17 289 -1 unnamed_device 25.8 MiB 1.04 749 9368 3828 5102 438 64.5 MiB 0.06 0.00 3.60355 -132.937 -3.60355 3.60355 0.93 0.000213125 0.00016731 0.0149499 0.012205 -1 -1 -1 -1 56 2389 27 6.99608e+06 191304 973134. 3367.25 2.49 0.0828029 0.0693947 29794 239141 -1 1739 21 1825 3135 221688 52565 4.10836 4.10836 -144.078 -4.10836 0 0 1.19926e+06 4149.71 0.45 0.09 0.22 -1 -1 0.45 0.0220902 0.0198719 78 3 128 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 7.58 vpr 64.88 MiB 0.02 7200 -1 -1 1 0.05 -1 -1 35376 -1 -1 19 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66440 32 32 424 343 1 266 83 17 17 289 -1 unnamed_device 26.0 MiB 1.73 1055 13763 3328 9921 514 64.9 MiB 0.10 0.00 3.32994 -126.121 -3.32994 3.32994 1.05 0.000235757 0.000185923 0.0213179 0.0172115 -1 -1 -1 -1 46 2877 36 6.99608e+06 279598 828058. 2865.25 2.04 0.0885915 0.0733459 28066 200906 -1 2244 24 2156 2518 186202 40719 3.11491 3.11491 -128.244 -3.11491 0 0 1.01997e+06 3529.29 0.41 0.07 0.19 -1 -1 0.41 0.0191306 0.0167801 120 96 25 25 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 7.61 vpr 64.83 MiB 0.02 7248 -1 -1 1 0.04 -1 -1 33692 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66388 32 32 395 311 1 242 84 17 17 289 -1 unnamed_device 26.1 MiB 1.29 953 16005 6898 8576 531 64.8 MiB 0.11 0.00 3.64909 -133.489 -3.64909 3.64909 1.00 0.000334781 0.000283085 0.0242111 0.0195343 -1 -1 -1 -1 48 3076 37 6.99608e+06 294314 865456. 2994.66 2.60 0.105148 0.0874982 28354 207349 -1 2291 33 2583 3434 447897 160188 3.62646 3.62646 -138.981 -3.62646 0 0 1.05005e+06 3633.38 0.42 0.13 0.19 -1 -1 0.42 0.0237183 0.0205342 106 61 64 32 60 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 9.83 vpr 65.03 MiB 0.04 7248 -1 -1 1 0.04 -1 -1 34216 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66588 32 32 405 318 1 253 81 17 17 289 -1 unnamed_device 26.2 MiB 1.10 1127 14956 5538 7035 2383 65.0 MiB 0.10 0.00 3.33684 -126.514 -3.33684 3.33684 1.03 0.000235847 0.000186941 0.0236408 0.0192234 -1 -1 -1 -1 40 3452 40 6.99608e+06 250167 706193. 2443.58 4.86 0.153182 0.127495 26914 176310 -1 2837 26 2758 3628 354269 73452 3.75877 3.75877 -139.778 -3.75877 0 0 926341. 3205.33 0.36 0.09 0.17 -1 -1 0.36 0.0196926 0.0170935 108 65 63 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 18.02 vpr 64.62 MiB 0.03 7020 -1 -1 1 0.05 -1 -1 33924 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66176 32 32 376 288 1 218 80 17 17 289 -1 unnamed_device 25.7 MiB 1.24 787 12120 3530 7317 1273 64.6 MiB 0.08 0.00 3.81568 -137.815 -3.81568 3.81568 1.02 0.000226601 0.00018029 0.0185994 0.0151811 -1 -1 -1 -1 44 3160 36 6.99608e+06 235451 787024. 2723.27 13.05 0.163989 0.136796 27778 195446 -1 2023 22 1937 2849 264595 59131 4.52531 4.52531 -148.671 -4.52531 0 0 997811. 3452.63 0.40 0.08 0.18 -1 -1 0.40 0.0176812 0.0155631 94 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 8.05 vpr 64.92 MiB 0.03 7192 -1 -1 1 0.05 -1 -1 34292 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66476 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 26.1 MiB 1.20 1023 14500 5955 7564 981 64.9 MiB 0.09 0.00 3.85505 -141.818 -3.85505 3.85505 1.00 0.000229601 0.000180682 0.0220592 0.0178484 -1 -1 -1 -1 40 3265 27 6.99608e+06 264882 706193. 2443.58 2.84 0.106177 0.0890127 26914 176310 -1 2514 24 2412 2879 253270 55483 4.58462 4.58462 -163.366 -4.58462 0 0 926341. 3205.33 0.37 0.08 0.17 -1 -1 0.37 0.0186295 0.0162461 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 8.07 vpr 64.79 MiB 0.04 7428 -1 -1 1 0.06 -1 -1 34412 -1 -1 22 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66340 31 32 449 367 1 290 85 17 17 289 -1 unnamed_device 26.4 MiB 2.11 1393 14035 5565 6766 1704 64.8 MiB 0.10 0.00 4.08308 -143.875 -4.08308 4.08308 0.96 0.000255139 0.000191975 0.0220399 0.0175298 -1 -1 -1 -1 46 3396 24 6.99608e+06 323745 828058. 2865.25 2.11 0.0987222 0.0814817 28066 200906 -1 2897 21 2039 2368 186090 38982 4.05885 4.05885 -147.773 -4.05885 0 0 1.01997e+06 3529.29 0.42 0.07 0.20 -1 -1 0.42 0.0220963 0.0195136 132 122 0 0 122 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 7.29 vpr 64.72 MiB 0.04 7324 -1 -1 1 0.04 -1 -1 34048 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66272 32 32 432 346 1 281 85 17 17 289 -1 unnamed_device 26.1 MiB 1.10 1279 12175 4545 5316 2314 64.7 MiB 0.08 0.00 3.76705 -140.253 -3.76705 3.76705 0.92 0.000232797 0.0001833 0.0178283 0.0143996 -1 -1 -1 -1 44 3707 38 6.99608e+06 309029 787024. 2723.27 2.65 0.131839 0.112332 27778 195446 -1 2915 24 2947 4111 348146 71102 4.12742 4.12742 -151.891 -4.12742 0 0 997811. 3452.63 0.42 0.10 0.18 -1 -1 0.42 0.0218334 0.0190478 127 94 32 32 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 7.20 vpr 64.54 MiB 0.02 6884 -1 -1 1 0.05 -1 -1 33952 -1 -1 14 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66084 32 32 312 255 1 191 78 17 17 289 -1 unnamed_device 25.6 MiB 0.74 779 12528 5280 6990 258 64.5 MiB 0.08 0.00 3.03405 -116.466 -3.03405 3.03405 1.15 0.000197674 0.000157028 0.0186377 0.015155 -1 -1 -1 -1 44 2359 27 6.99608e+06 206020 787024. 2723.27 2.62 0.0875906 0.0739883 27778 195446 -1 1755 23 1485 1957 158851 33470 3.01252 3.01252 -121.962 -3.01252 0 0 997811. 3452.63 0.41 0.05 0.18 -1 -1 0.41 0.0141257 0.0123691 80 34 63 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 7.32 vpr 64.68 MiB 0.04 7220 -1 -1 1 0.04 -1 -1 33992 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66228 32 32 370 314 1 244 80 17 17 289 -1 unnamed_device 25.7 MiB 1.19 1095 11776 4100 5415 2261 64.7 MiB 0.07 0.00 3.80663 -140.003 -3.80663 3.80663 0.96 0.000203846 0.000160834 0.0172515 0.0140532 -1 -1 -1 -1 42 3128 43 6.99608e+06 235451 744469. 2576.02 2.53 0.0989852 0.0837145 27202 183097 -1 2484 19 2059 2397 232017 45617 3.9203 3.9203 -148.03 -3.9203 0 0 949917. 3286.91 0.37 0.07 0.17 -1 -1 0.37 0.0165975 0.0147069 108 94 0 0 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 10.94 vpr 65.27 MiB 0.03 7388 -1 -1 1 0.05 -1 -1 34244 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66840 32 32 469 351 1 285 84 17 17 289 -1 unnamed_device 26.4 MiB 1.19 1196 15273 6544 8338 391 65.3 MiB 0.16 0.00 4.58129 -163.981 -4.58129 4.58129 1.04 0.000450118 0.000363648 0.0352161 0.0283251 -1 -1 -1 -1 46 3841 33 6.99608e+06 294314 828058. 2865.25 5.54 0.170843 0.141224 28066 200906 -1 2853 31 3498 4903 577189 179118 5.07386 5.07386 -178.208 -5.07386 0 0 1.01997e+06 3529.29 0.46 0.15 0.19 -1 -1 0.46 0.0267517 0.0233328 126 65 96 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 10.40 vpr 64.66 MiB 0.03 7028 -1 -1 1 0.06 -1 -1 33660 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66208 32 32 368 284 1 217 80 17 17 289 -1 unnamed_device 25.8 MiB 0.95 1017 10916 2707 7442 767 64.7 MiB 0.08 0.00 3.32994 -129.578 -3.32994 3.32994 1.03 0.000220964 0.000174747 0.0171409 0.0140139 -1 -1 -1 -1 40 2983 47 6.99608e+06 235451 706193. 2443.58 5.65 0.167246 0.139392 26914 176310 -1 2449 20 2023 2659 257257 52586 3.29722 3.29722 -135.821 -3.29722 0 0 926341. 3205.33 0.36 0.08 0.16 -1 -1 0.36 0.0181497 0.0161526 93 34 92 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 7.62 vpr 64.62 MiB 0.04 7124 -1 -1 1 0.06 -1 -1 33716 -1 -1 24 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66168 30 32 296 244 1 177 86 17 17 289 -1 unnamed_device 25.7 MiB 0.91 690 11426 4009 5678 1739 64.6 MiB 0.07 0.00 3.75245 -122.292 -3.75245 3.75245 1.02 0.000183527 0.000144647 0.014204 0.011658 -1 -1 -1 -1 44 2216 43 6.99608e+06 353176 787024. 2723.27 3.00 0.0941435 0.0801606 27778 195446 -1 1714 19 1437 2042 164297 38772 3.45281 3.45281 -128.923 -3.45281 0 0 997811. 3452.63 0.40 0.05 0.18 -1 -1 0.40 0.0135054 0.0119898 80 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 9.48 vpr 65.23 MiB 0.03 7544 -1 -1 1 0.07 -1 -1 34640 -1 -1 24 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66792 32 32 531 413 1 346 88 17 17 289 -1 unnamed_device 26.6 MiB 1.51 1502 15883 5809 7749 2325 65.2 MiB 0.14 0.00 5.34997 -187.982 -5.34997 5.34997 0.99 0.000299338 0.000236609 0.0285225 0.0231611 -1 -1 -1 -1 46 5240 46 6.99608e+06 353176 828058. 2865.25 3.95 0.194017 0.167436 28066 200906 -1 3304 22 3545 4353 341537 73539 5.87874 5.87874 -206.503 -5.87874 0 0 1.01997e+06 3529.29 0.39 0.09 0.19 -1 -1 0.39 0.0217812 0.019123 159 127 32 32 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 8.05 vpr 65.00 MiB 0.04 7120 -1 -1 1 0.05 -1 -1 33988 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66560 32 32 376 288 1 217 80 17 17 289 -1 unnamed_device 26.0 MiB 0.83 968 15044 5925 7449 1670 65.0 MiB 0.10 0.00 4.12908 -153.541 -4.12908 4.12908 1.01 0.000239089 0.000191199 0.0228993 0.0186079 -1 -1 -1 -1 40 2900 41 6.99608e+06 235451 706193. 2443.58 3.34 0.119757 0.101351 26914 176310 -1 2525 25 2533 3381 324820 65897 4.40225 4.40225 -165.491 -4.40225 0 0 926341. 3205.33 0.37 0.08 0.26 -1 -1 0.37 0.0181901 0.0159901 92 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 9.33 vpr 64.30 MiB 0.03 6768 -1 -1 1 0.04 -1 -1 33912 -1 -1 24 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65848 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 25.6 MiB 0.34 689 12763 5259 7126 378 64.3 MiB 0.07 0.00 2.98775 -114.562 -2.98775 2.98775 1.06 0.000182842 0.000144177 0.0144186 0.0116779 -1 -1 -1 -1 46 1939 24 6.99608e+06 353176 828058. 2865.25 5.26 0.106654 0.0893777 28066 200906 -1 1527 21 1501 2262 149821 33894 3.01532 3.01532 -116.678 -3.01532 0 0 1.01997e+06 3529.29 0.40 0.05 0.18 -1 -1 0.40 0.0122811 0.0107309 70 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 22.35 vpr 65.39 MiB 0.03 7272 -1 -1 1 0.05 -1 -1 34388 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66960 32 32 438 320 1 256 82 17 17 289 -1 unnamed_device 26.4 MiB 1.16 1185 13432 5656 7470 306 65.4 MiB 0.10 0.00 4.53729 -162.267 -4.53729 4.53729 1.07 0.000263201 0.000209673 0.0242107 0.019831 -1 -1 -1 -1 50 3497 30 6.99608e+06 264882 902133. 3121.57 17.27 0.194278 0.162778 28642 213929 -1 2557 23 2809 4093 320106 67773 4.92476 4.92476 -175.108 -4.92476 0 0 1.08113e+06 3740.92 0.44 0.09 0.19 -1 -1 0.44 0.022 0.0195436 112 34 128 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 7.14 vpr 63.99 MiB 0.04 6820 -1 -1 1 0.04 -1 -1 33864 -1 -1 10 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65524 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 25.5 MiB 0.47 620 10614 4481 5893 240 64.0 MiB 0.06 0.00 2.85145 -112.009 -2.85145 2.85145 1.06 0.000181273 0.000142885 0.0154868 0.0125779 -1 -1 -1 -1 42 2108 45 6.99608e+06 147157 744469. 2576.02 2.94 0.0891027 0.0749152 27202 183097 -1 1654 19 1373 2070 162626 36514 3.07762 3.07762 -125.323 -3.07762 0 0 949917. 3286.91 0.38 0.06 0.18 -1 -1 0.38 0.0130798 0.0115632 62 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 7.48 vpr 64.45 MiB 0.02 7028 -1 -1 1 0.05 -1 -1 33880 -1 -1 15 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65996 30 32 296 244 1 179 77 17 17 289 -1 unnamed_device 25.6 MiB 1.01 727 9857 3779 5192 886 64.4 MiB 0.06 0.00 3.3422 -117.21 -3.3422 3.3422 0.96 0.000177242 0.000138734 0.013353 0.0109116 -1 -1 -1 -1 40 2425 29 6.99608e+06 220735 706193. 2443.58 2.89 0.0840692 0.0709715 26914 176310 -1 1916 20 1616 2197 197378 43075 3.21021 3.21021 -124.104 -3.21021 0 0 926341. 3205.33 0.38 0.06 0.16 -1 -1 0.38 0.0127436 0.0111738 74 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 11.04 vpr 65.20 MiB 0.04 7208 -1 -1 1 0.05 -1 -1 34068 -1 -1 20 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66768 29 32 393 319 1 247 81 17 17 289 -1 unnamed_device 26.1 MiB 2.57 1127 11631 4219 5566 1846 65.2 MiB 0.09 0.00 3.87283 -130.664 -3.87283 3.87283 0.90 0.000246335 0.000175722 0.0184929 0.0148151 -1 -1 -1 -1 46 2874 30 6.99608e+06 294314 828058. 2865.25 4.55 0.151904 0.126726 28066 200906 -1 2379 21 1999 2648 197756 41044 3.9173 3.9173 -141.564 -3.9173 0 0 1.01997e+06 3529.29 0.42 0.07 0.18 -1 -1 0.42 0.0187342 0.0165578 114 88 29 29 85 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 7.61 vpr 64.86 MiB 0.04 7120 -1 -1 1 0.06 -1 -1 34240 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66420 32 32 407 319 1 250 82 17 17 289 -1 unnamed_device 25.8 MiB 1.27 1132 14856 6162 7872 822 64.9 MiB 0.10 0.00 4.33864 -160.209 -4.33864 4.33864 1.06 0.000234916 0.000185416 0.0222936 0.0180356 -1 -1 -1 -1 44 3237 40 6.99608e+06 264882 787024. 2723.27 2.18 0.0937399 0.0782887 27778 195446 -1 2651 20 2390 3242 290394 59117 4.7844 4.7844 -176.438 -4.7844 0 0 997811. 3452.63 0.48 0.09 0.21 -1 -1 0.48 0.022246 0.0199491 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 10.73 vpr 65.09 MiB 0.02 7032 -1 -1 1 0.06 -1 -1 34324 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66648 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 26.3 MiB 1.27 1170 5244 1136 3811 297 65.1 MiB 0.05 0.00 4.32144 -158.986 -4.32144 4.32144 1.00 0.000230503 0.000183217 0.0103799 0.00872211 -1 -1 -1 -1 46 3311 42 6.99608e+06 264882 828058. 2865.25 5.78 0.140111 0.117171 28066 200906 -1 2631 25 2845 3941 372150 72492 4.81551 4.81551 -175.677 -4.81551 0 0 1.01997e+06 3529.29 0.42 0.11 0.18 -1 -1 0.42 0.0232085 0.0205383 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 7.76 vpr 64.56 MiB 0.04 7028 -1 -1 1 0.05 -1 -1 34096 -1 -1 15 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66112 32 32 345 287 1 212 79 17 17 289 -1 unnamed_device 25.8 MiB 1.02 794 12585 5277 6958 350 64.6 MiB 0.08 0.00 3.32994 -125.061 -3.32994 3.32994 1.05 0.000216538 0.000172623 0.017844 0.0144158 -1 -1 -1 -1 46 2580 34 6.99608e+06 220735 828058. 2865.25 2.69 0.0977507 0.0828222 28066 200906 -1 1910 25 1963 2196 189424 42588 3.22421 3.22421 -123.588 -3.22421 0 0 1.01997e+06 3529.29 0.46 0.09 0.26 -1 -1 0.46 0.0238289 0.0211561 92 65 32 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 7.57 vpr 64.79 MiB 0.02 7280 -1 -1 1 0.04 -1 -1 34228 -1 -1 17 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66340 31 32 353 302 1 230 80 17 17 289 -1 unnamed_device 25.9 MiB 1.58 937 11260 4683 6230 347 64.8 MiB 0.07 0.00 3.34114 -121.926 -3.34114 3.34114 0.91 0.000199188 0.000155598 0.0158521 0.0128391 -1 -1 -1 -1 44 3020 31 6.99608e+06 250167 787024. 2723.27 2.28 0.0767243 0.0639963 27778 195446 -1 2260 19 1699 2118 179077 39695 3.21751 3.21751 -125.645 -3.21751 0 0 997811. 3452.63 0.49 0.06 0.30 -1 -1 0.49 0.0160912 0.0142798 102 90 0 0 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 19.88 vpr 65.00 MiB 0.02 7120 -1 -1 1 0.04 -1 -1 33824 -1 -1 19 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66560 30 32 374 297 1 226 81 17 17 289 -1 unnamed_device 26.0 MiB 1.53 946 9881 4003 5314 564 65.0 MiB 0.06 0.00 3.33639 -114.321 -3.33639 3.33639 0.89 0.000210503 0.000166889 0.0147582 0.0120876 -1 -1 -1 -1 48 2959 39 6.99608e+06 279598 865456. 2994.66 14.83 0.18864 0.158178 28354 207349 -1 2265 25 2205 3183 242898 56730 3.40657 3.40657 -123.648 -3.40657 0 0 1.05005e+06 3633.38 0.39 0.09 0.21 -1 -1 0.39 0.0225046 0.019885 101 60 60 30 57 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 7.49 vpr 64.64 MiB 0.04 7060 -1 -1 1 0.05 -1 -1 33944 -1 -1 18 28 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66188 28 32 332 260 1 197 78 17 17 289 -1 unnamed_device 25.8 MiB 1.06 820 9872 4067 5268 537 64.6 MiB 0.07 0.00 3.77115 -122.922 -3.77115 3.77115 1.04 0.000201984 0.000159159 0.0156494 0.0128189 -1 -1 -1 -1 40 2570 25 6.99608e+06 264882 706193. 2443.58 2.64 0.0885064 0.0746524 26914 176310 -1 1935 23 1944 2877 208629 46351 4.11642 4.11642 -137.526 -4.11642 0 0 926341. 3205.33 0.38 0.07 0.17 -1 -1 0.38 0.0161609 0.014186 87 34 84 28 28 28 +fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 8.53 vpr 64.61 MiB 0.02 7084 -1 -1 1 0.04 -1 -1 33752 -1 -1 15 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66156 30 32 325 273 1 204 77 17 17 289 -1 unnamed_device 25.8 MiB 1.97 887 12139 5086 6651 402 64.6 MiB 0.08 0.00 3.82453 -131.841 -3.82453 3.82453 1.01 0.000190891 0.000150526 0.0165867 0.0133726 -1 -1 -1 -1 38 3002 38 6.99608e+06 220735 678818. 2348.85 2.79 0.0817484 0.0683012 26626 170182 -1 2180 23 2088 2835 240005 53520 4.0456 4.0456 -144.414 -4.0456 0 0 902133. 3121.57 0.35 0.10 0.16 -1 -1 0.35 0.0265658 0.0238164 89 63 30 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 8.01 vpr 64.73 MiB 0.02 7076 -1 -1 1 0.04 -1 -1 33840 -1 -1 15 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66284 32 32 361 308 1 241 79 17 17 289 -1 unnamed_device 25.8 MiB 1.46 1045 13430 4937 5959 2534 64.7 MiB 0.09 0.00 3.53869 -131.536 -3.53869 3.53869 0.98 0.000226974 0.000181446 0.021796 0.0177445 -1 -1 -1 -1 42 3258 28 6.99608e+06 220735 744469. 2576.02 2.86 0.122763 0.104468 27202 183097 -1 2507 23 2060 2527 240062 48931 3.41506 3.41506 -131.615 -3.41506 0 0 949917. 3286.91 0.44 0.08 0.18 -1 -1 0.44 0.0197599 0.0175337 105 91 0 0 91 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 10.08 vpr 64.36 MiB 0.02 7012 -1 -1 1 0.06 -1 -1 33940 -1 -1 25 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65904 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 25.5 MiB 0.24 786 15688 6044 7337 2307 64.4 MiB 0.09 0.00 3.80415 -134.662 -3.80415 3.80415 0.94 0.000207018 0.000163483 0.0192247 0.0155336 -1 -1 -1 -1 50 2445 31 6.99608e+06 367892 902133. 3121.57 5.84 0.144802 0.121161 28642 213929 -1 1893 27 1933 3077 354526 108295 3.83602 3.83602 -140.433 -3.83602 0 0 1.08113e+06 3740.92 0.56 0.13 0.21 -1 -1 0.56 0.0254448 0.0226234 86 4 124 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 9.23 vpr 64.72 MiB 0.02 6964 -1 -1 1 0.04 -1 -1 34364 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66276 32 32 407 319 1 249 81 17 17 289 -1 unnamed_device 25.7 MiB 1.15 1115 10231 2817 7123 291 64.7 MiB 0.08 0.00 4.17744 -152.022 -4.17744 4.17744 0.98 0.000237474 0.000188475 0.0167349 0.0136416 -1 -1 -1 -1 40 3415 44 6.99608e+06 250167 706193. 2443.58 4.53 0.129967 0.110526 26914 176310 -1 2862 22 2433 3174 319335 66948 4.67185 4.67185 -173.93 -4.67185 0 0 926341. 3205.33 0.37 0.09 0.16 -1 -1 0.37 0.0183236 0.0160304 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 11.35 vpr 64.83 MiB 0.03 7272 -1 -1 1 0.05 -1 -1 34044 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66388 32 32 407 319 1 248 82 17 17 289 -1 unnamed_device 26.0 MiB 0.89 1023 12364 5104 6761 499 64.8 MiB 0.09 0.00 4.62599 -163.487 -4.62599 4.62599 0.96 0.00025509 0.000202524 0.0214635 0.0174224 -1 -1 -1 -1 56 2908 27 6.99608e+06 264882 973134. 3367.25 6.48 0.151693 0.126862 29794 239141 -1 2317 22 2227 3006 288568 62980 4.75244 4.75244 -174.769 -4.75244 0 0 1.19926e+06 4149.71 0.56 0.09 0.25 -1 -1 0.56 0.0195971 0.0172813 108 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 10.33 vpr 64.80 MiB 0.04 7296 -1 -1 1 0.05 -1 -1 34060 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66360 32 32 399 315 1 250 82 17 17 289 -1 unnamed_device 26.0 MiB 0.98 1222 13788 5033 6896 1859 64.8 MiB 0.10 0.00 3.88963 -144.009 -3.88963 3.88963 0.97 0.000237918 0.000188282 0.0224399 0.018179 -1 -1 -1 -1 48 3360 25 6.99608e+06 264882 865456. 2994.66 5.53 0.145925 0.121319 28354 207349 -1 2697 25 2410 3420 332373 94211 4.5327 4.5327 -160.035 -4.5327 0 0 1.05005e+06 3633.38 0.42 0.10 0.22 -1 -1 0.42 0.022398 0.0197546 107 65 60 30 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 7.36 vpr 64.47 MiB 0.04 6920 -1 -1 1 0.04 -1 -1 34004 -1 -1 13 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66020 30 32 296 244 1 179 75 17 17 289 -1 unnamed_device 25.7 MiB 1.04 692 12241 5462 6298 481 64.5 MiB 0.07 0.00 3.58339 -124.571 -3.58339 3.58339 0.96 0.000183567 0.000145119 0.016464 0.0133148 -1 -1 -1 -1 46 2629 41 6.99608e+06 191304 828058. 2865.25 2.93 0.0913011 0.0769988 28066 200906 -1 1796 22 1604 2143 175253 41225 3.70046 3.70046 -130.475 -3.70046 0 0 1.01997e+06 3529.29 0.39 0.06 0.18 -1 -1 0.39 0.0133216 0.0117077 76 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 12.51 vpr 64.85 MiB 0.03 7268 -1 -1 1 0.05 -1 -1 34044 -1 -1 18 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66404 30 32 383 303 1 237 80 17 17 289 -1 unnamed_device 26.1 MiB 2.48 1070 13152 5483 7188 481 64.8 MiB 0.09 0.00 4.67127 -156.182 -4.67127 4.67127 0.96 0.000220799 0.000174001 0.0198842 0.0161311 -1 -1 -1 -1 48 3187 28 6.99608e+06 264882 865456. 2994.66 6.17 0.160615 0.135791 28354 207349 -1 2699 22 2508 3656 360894 72560 4.52634 4.52634 -163.172 -4.52634 0 0 1.05005e+06 3633.38 0.49 0.09 0.21 -1 -1 0.49 0.0189266 0.0168442 105 63 60 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 19.85 vpr 64.96 MiB 0.02 7232 -1 -1 1 0.04 -1 -1 34680 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66524 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 26.4 MiB 1.10 1372 11615 4190 5568 1857 65.0 MiB 0.08 0.00 4.21664 -156.362 -4.21664 4.21664 0.94 0.000251187 0.000199215 0.0187836 0.0153504 -1 -1 -1 -1 40 3829 45 6.99608e+06 323745 706193. 2443.58 15.17 0.199108 0.16645 26914 176310 -1 2978 36 3494 3594 520134 155376 4.42125 4.42125 -171.567 -4.42125 0 0 926341. 3205.33 0.37 0.16 0.17 -1 -1 0.37 0.029087 0.0252145 139 127 0 0 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 9.10 vpr 65.30 MiB 0.04 7208 -1 -1 1 0.06 -1 -1 34368 -1 -1 22 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66864 31 32 425 341 1 275 85 17 17 289 -1 unnamed_device 26.2 MiB 1.84 1100 12733 5272 6860 601 65.3 MiB 0.08 0.00 4.42639 -152.998 -4.42639 4.42639 0.97 0.000238558 0.000187965 0.0196285 0.0159067 -1 -1 -1 -1 48 3368 46 6.99608e+06 323745 865456. 2994.66 3.26 0.131175 0.112289 28354 207349 -1 2413 23 2234 2691 265979 74364 4.47581 4.47581 -158.761 -4.47581 0 0 1.05005e+06 3633.38 0.45 0.09 0.21 -1 -1 0.45 0.022455 0.0198131 125 94 31 31 93 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 13.54 vpr 65.06 MiB 0.03 7396 -1 -1 1 0.04 -1 -1 34164 -1 -1 22 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66620 30 32 404 328 1 249 84 17 17 289 -1 unnamed_device 26.3 MiB 3.61 1072 15456 6553 7950 953 65.1 MiB 0.10 0.00 4.02117 -135.45 -4.02117 4.02117 0.91 0.00023127 0.000183021 0.0228896 0.0185834 -1 -1 -1 -1 56 3024 29 6.99608e+06 323745 973134. 3367.25 6.06 0.134823 0.111691 29794 239141 -1 2428 21 2511 3581 321365 69689 4.0536 4.0536 -145.26 -4.0536 0 0 1.19926e+06 4149.71 0.56 0.09 0.24 -1 -1 0.56 0.020629 0.0184456 114 92 26 26 90 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 8.50 vpr 65.12 MiB 0.03 7200 -1 -1 1 0.06 -1 -1 33956 -1 -1 19 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66680 32 32 407 319 1 252 83 17 17 289 -1 unnamed_device 26.2 MiB 1.18 985 15563 6705 8342 516 65.1 MiB 0.11 0.00 4.37079 -157.14 -4.37079 4.37079 0.96 0.000244224 0.000193967 0.0245303 0.0199559 -1 -1 -1 -1 46 3379 44 6.99608e+06 279598 828058. 2865.25 3.55 0.122301 0.102909 28066 200906 -1 2435 24 2773 3900 345445 73632 4.90351 4.90351 -180.423 -4.90351 0 0 1.01997e+06 3529.29 0.40 0.09 0.19 -1 -1 0.40 0.0193243 0.0170213 111 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 8.24 vpr 64.73 MiB 0.03 7328 -1 -1 1 0.04 -1 -1 33952 -1 -1 20 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66288 29 32 387 316 1 240 81 17 17 289 -1 unnamed_device 26.1 MiB 2.31 968 10931 3850 4814 2267 64.7 MiB 0.08 0.00 3.60679 -119.01 -3.60679 3.60679 0.97 0.000233745 0.00018581 0.0180819 0.0147759 -1 -1 -1 -1 46 3055 27 6.99608e+06 294314 828058. 2865.25 2.27 0.0895012 0.0745851 28066 200906 -1 2292 20 2055 2667 218326 46540 3.59056 3.59056 -126.802 -3.59056 0 0 1.01997e+06 3529.29 0.38 0.07 0.19 -1 -1 0.38 0.0165413 0.0146575 112 88 26 26 85 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 9.96 vpr 63.88 MiB 0.04 6892 -1 -1 1 0.06 -1 -1 33880 -1 -1 10 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65408 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 25.2 MiB 1.22 619 8599 3526 4877 196 63.9 MiB 0.05 0.00 2.86245 -112.136 -2.86245 2.86245 0.96 0.000182437 0.00014335 0.012375 0.0101449 -1 -1 -1 -1 40 2078 27 6.99608e+06 147157 706193. 2443.58 4.83 0.115725 0.0969317 26914 176310 -1 1639 22 1506 2359 231758 49054 3.11062 3.11062 -125.259 -3.11062 0 0 926341. 3205.33 0.46 0.07 0.18 -1 -1 0.46 0.0146732 0.0129554 62 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 8.59 vpr 64.82 MiB 0.02 7268 -1 -1 1 0.04 -1 -1 34160 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66380 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 26.0 MiB 0.95 1109 9872 4023 5633 216 64.8 MiB 0.07 0.00 4.66383 -167.571 -4.66383 4.66383 0.97 0.000235673 0.00018617 0.0159889 0.0130979 -1 -1 -1 -1 46 3504 47 6.99608e+06 264882 828058. 2865.25 3.92 0.128271 0.109678 28066 200906 -1 2628 22 2754 3808 344513 69188 4.63814 4.63814 -172.468 -4.63814 0 0 1.01997e+06 3529.29 0.40 0.10 0.19 -1 -1 0.40 0.0215152 0.0190731 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 10.22 vpr 64.87 MiB 0.03 7232 -1 -1 1 0.06 -1 -1 34044 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66424 32 32 407 319 1 255 81 17 17 289 -1 unnamed_device 26.1 MiB 1.10 1186 7431 1655 4558 1218 64.9 MiB 0.06 0.00 4.63877 -165.425 -4.63877 4.63877 1.10 0.00023726 0.000187721 0.0137169 0.0113967 -1 -1 -1 -1 46 3334 28 6.99608e+06 250167 828058. 2865.25 5.14 0.132956 0.110887 28066 200906 -1 2782 21 2611 3587 314892 64123 4.99504 4.99504 -179.011 -4.99504 0 0 1.01997e+06 3529.29 0.41 0.10 0.19 -1 -1 0.41 0.0232657 0.0207143 111 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 11.38 vpr 64.29 MiB 0.02 7124 -1 -1 1 0.04 -1 -1 34128 -1 -1 13 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65836 32 32 315 267 1 202 77 17 17 289 -1 unnamed_device 25.4 MiB 2.59 767 11324 4614 6133 577 64.3 MiB 0.07 0.00 3.24452 -113.178 -3.24452 3.24452 1.01 0.000188863 0.000148397 0.0164059 0.013244 -1 -1 -1 -1 50 2087 33 6.99608e+06 191304 902133. 3121.57 5.23 0.111749 0.0922598 28642 213929 -1 1750 22 1520 1805 167254 40121 3.17116 3.17116 -116.372 -3.17116 0 0 1.08113e+06 3740.92 0.41 0.06 0.20 -1 -1 0.41 0.0137683 0.0121121 85 55 32 32 54 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 6.80 vpr 64.05 MiB 0.03 6948 -1 -1 1 0.04 -1 -1 33956 -1 -1 11 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65592 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 25.5 MiB 0.30 622 11544 4964 6246 334 64.1 MiB 0.07 0.00 3.0382 -112.755 -3.0382 3.0382 1.03 0.000174419 0.000137133 0.0157621 0.0127219 -1 -1 -1 -1 40 2024 37 6.99608e+06 161872 706193. 2443.58 2.77 0.0888468 0.0749456 26914 176310 -1 1644 22 1433 2045 157217 34989 3.23292 3.23292 -128.697 -3.23292 0 0 926341. 3205.33 0.42 0.06 0.16 -1 -1 0.42 0.0150335 0.0133108 63 4 93 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 8.81 vpr 64.78 MiB 0.03 7260 -1 -1 1 0.06 -1 -1 34160 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66336 32 32 381 303 1 235 81 17 17 289 -1 unnamed_device 25.8 MiB 1.40 1014 12331 5132 6916 283 64.8 MiB 0.08 0.00 4.03648 -138.253 -4.03648 4.03648 0.88 0.000224398 0.000177353 0.0191869 0.0156482 -1 -1 -1 -1 40 2880 45 6.99608e+06 250167 706193. 2443.58 3.76 0.139968 0.11982 26914 176310 -1 2392 30 2487 2923 340079 108923 4.15651 4.15651 -149.701 -4.15651 0 0 926341. 3205.33 0.39 0.12 0.18 -1 -1 0.39 0.0265341 0.0234523 102 59 60 32 58 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 7.31 vpr 65.18 MiB 0.02 7160 -1 -1 1 0.04 -1 -1 33828 -1 -1 19 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66744 32 32 406 330 1 255 83 17 17 289 -1 unnamed_device 26.2 MiB 1.77 1180 13043 5079 5257 2707 65.2 MiB 0.09 0.00 4.34257 -148.625 -4.34257 4.34257 0.86 0.000221687 0.000174414 0.019097 0.0154854 -1 -1 -1 -1 42 3269 36 6.99608e+06 279598 744469. 2576.02 2.11 0.0975261 0.0817157 27202 183097 -1 2582 20 1874 2216 192897 41882 4.88771 4.88771 -160.403 -4.88771 0 0 949917. 3286.91 0.39 0.07 0.17 -1 -1 0.39 0.0181596 0.0160694 115 88 28 28 88 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 7.28 vpr 64.71 MiB 0.03 7240 -1 -1 1 0.04 -1 -1 34140 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66264 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 25.8 MiB 0.42 955 8251 1749 5614 888 64.7 MiB 0.06 0.00 4.24944 -150.187 -4.24944 4.24944 1.03 0.000244666 0.000194229 0.0129375 0.0106986 -1 -1 -1 -1 46 3149 33 6.99608e+06 397324 828058. 2865.25 3.05 0.100502 0.0849455 28066 200906 -1 2373 24 2395 3692 289671 67042 4.96765 4.96765 -169.524 -4.96765 0 0 1.01997e+06 3529.29 0.41 0.08 0.20 -1 -1 0.41 0.0203249 0.0178788 100 3 156 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 7.75 vpr 64.79 MiB 0.02 7172 -1 -1 1 0.04 -1 -1 34276 -1 -1 19 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66348 30 32 371 295 1 227 81 17 17 289 -1 unnamed_device 25.9 MiB 1.33 927 13731 4656 6820 2255 64.8 MiB 0.09 0.00 3.66815 -122.398 -3.66815 3.66815 0.99 0.000215167 0.000170522 0.0196807 0.0160048 -1 -1 -1 -1 40 3101 50 6.99608e+06 279598 706193. 2443.58 2.90 0.120925 0.102655 26914 176310 -1 2457 24 2089 2960 265283 57621 3.83386 3.83386 -135.408 -3.83386 0 0 926341. 3205.33 0.36 0.08 0.17 -1 -1 0.36 0.0185346 0.0162183 101 59 60 30 56 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 9.06 vpr 64.17 MiB 0.02 7084 -1 -1 1 0.04 -1 -1 34440 -1 -1 15 27 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65712 27 32 269 226 1 154 74 17 17 289 -1 unnamed_device 25.3 MiB 1.31 541 9684 4030 4997 657 64.2 MiB 0.05 0.00 3.64725 -107.533 -3.64725 3.64725 0.91 0.000165875 0.000129778 0.0121723 0.00980494 -1 -1 -1 -1 40 1670 31 6.99608e+06 220735 706193. 2443.58 4.38 0.0908062 0.0747262 26914 176310 -1 1289 23 1327 1813 134241 33091 3.67361 3.67361 -118.461 -3.67361 0 0 926341. 3205.33 0.36 0.05 0.19 -1 -1 0.36 0.0133586 0.0116462 69 34 54 27 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 26.94 vpr 64.98 MiB 0.03 7416 -1 -1 1 0.04 -1 -1 34476 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66544 32 32 493 378 1 313 85 17 17 289 -1 unnamed_device 26.3 MiB 1.20 1463 16639 6243 8235 2161 65.0 MiB 0.14 0.00 4.50929 -160.164 -4.50929 4.50929 1.07 0.000273708 0.000215604 0.0287644 0.0231826 -1 -1 -1 -1 44 4986 37 6.99608e+06 309029 787024. 2723.27 21.77 0.249919 0.210953 27778 195446 -1 3673 29 3360 4747 544559 133406 4.87551 4.87551 -175.219 -4.87551 0 0 997811. 3452.63 0.38 0.16 0.17 -1 -1 0.38 0.0307852 0.0271678 141 95 62 31 95 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 9.91 vpr 64.87 MiB 0.03 7396 -1 -1 1 0.04 -1 -1 34068 -1 -1 22 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66424 31 32 455 371 1 302 85 17 17 289 -1 unnamed_device 26.3 MiB 4.00 1356 9013 2876 4534 1603 64.9 MiB 0.07 0.00 4.69386 -166.35 -4.69386 4.69386 0.92 0.000245998 0.000192785 0.014553 0.0117492 -1 -1 -1 -1 44 3467 39 6.99608e+06 323745 787024. 2723.27 2.45 0.0860792 0.0717321 27778 195446 -1 2885 23 2489 2843 281652 56290 4.61614 4.61614 -169.29 -4.61614 0 0 997811. 3452.63 0.42 0.10 0.18 -1 -1 0.42 0.0243005 0.0216445 138 124 0 0 124 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 7.94 vpr 65.16 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 33960 -1 -1 15 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66724 32 32 355 304 1 233 79 17 17 289 -1 unnamed_device 26.2 MiB 2.21 1000 11233 4051 5131 2051 65.2 MiB 0.07 0.00 3.87353 -139.155 -3.87353 3.87353 1.07 0.00020629 0.000162597 0.0159494 0.0128761 -1 -1 -1 -1 42 3023 26 6.99608e+06 220735 744469. 2576.02 2.08 0.0761724 0.063116 27202 183097 -1 2389 26 1854 2214 239825 61842 3.8653 3.8653 -142.948 -3.8653 0 0 949917. 3286.91 0.38 0.09 0.18 -1 -1 0.38 0.0199554 0.0175196 102 89 0 0 89 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 15.78 vpr 64.51 MiB 0.02 7188 -1 -1 1 0.04 -1 -1 34152 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66056 32 32 364 282 1 217 80 17 17 289 -1 unnamed_device 25.7 MiB 0.83 1169 12636 4456 6200 1980 64.5 MiB 0.09 0.00 3.79315 -142.637 -3.79315 3.79315 0.94 0.00021798 0.000172042 0.0198969 0.0162891 -1 -1 -1 -1 38 3185 27 6.99608e+06 235451 678818. 2348.85 11.60 0.164354 0.138221 26626 170182 -1 2611 19 1807 2416 241303 47789 4.28592 4.28592 -158.196 -4.28592 0 0 902133. 3121.57 0.33 0.07 0.15 -1 -1 0.33 0.0151467 0.0134471 92 34 90 30 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 19.11 vpr 65.55 MiB 0.03 7344 -1 -1 1 0.04 -1 -1 34172 -1 -1 20 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 67124 31 32 443 336 1 261 83 17 17 289 -1 unnamed_device 26.4 MiB 1.97 1049 15023 6383 8122 518 65.6 MiB 0.11 0.00 3.84635 -136.528 -3.84635 3.84635 0.92 0.000253531 0.000201183 0.0243861 0.0196833 -1 -1 -1 -1 40 3609 38 6.99608e+06 294314 706193. 2443.58 13.60 0.226945 0.190607 26914 176310 -1 2749 23 2668 3522 344516 83684 4.70382 4.70382 -167.079 -4.70382 0 0 926341. 3205.33 0.42 0.10 0.16 -1 -1 0.42 0.0212536 0.018793 117 64 87 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 20.73 vpr 64.75 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 33744 -1 -1 20 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66308 30 32 373 297 1 228 82 17 17 289 -1 unnamed_device 25.8 MiB 1.47 1036 13788 5638 6916 1234 64.8 MiB 0.10 0.00 3.57859 -121.08 -3.57859 3.57859 1.05 0.000242529 0.000193445 0.0227281 0.0187643 -1 -1 -1 -1 40 3220 46 6.99608e+06 294314 706193. 2443.58 15.63 0.23602 0.200737 26914 176310 -1 2664 21 1946 2767 246252 52247 3.68771 3.68771 -136.702 -3.68771 0 0 926341. 3205.33 0.36 0.07 0.21 -1 -1 0.36 0.0162226 0.0142183 101 61 58 30 58 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 9.68 vpr 64.95 MiB 0.02 7224 -1 -1 1 0.05 -1 -1 34280 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66508 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 26.1 MiB 0.86 1035 13906 5211 6648 2047 64.9 MiB 0.09 0.00 4.17744 -150.853 -4.17744 4.17744 0.89 0.000231471 0.000183738 0.0209912 0.017012 -1 -1 -1 -1 48 3495 34 6.99608e+06 250167 865456. 2994.66 5.27 0.145665 0.120931 28354 207349 -1 2296 22 2401 2962 245034 63837 4.17065 4.17065 -153.323 -4.17065 0 0 1.05005e+06 3633.38 0.46 0.08 0.20 -1 -1 0.46 0.0203685 0.0181272 107 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 6.88 vpr 64.89 MiB 0.02 7300 -1 -1 1 0.04 -1 -1 34252 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66448 32 32 405 318 1 253 82 17 17 289 -1 unnamed_device 26.1 MiB 0.94 1310 11830 3448 6949 1433 64.9 MiB 0.08 0.00 3.36804 -132.941 -3.36804 3.36804 0.89 0.000229406 0.000182268 0.0182354 0.0148944 -1 -1 -1 -1 44 3412 43 6.99608e+06 264882 787024. 2723.27 2.38 0.106741 0.0896777 27778 195446 -1 2788 22 2105 2730 260926 49964 3.47181 3.47181 -144.609 -3.47181 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0204793 0.0182106 108 65 63 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 6.90 vpr 64.14 MiB 0.02 6924 -1 -1 1 0.04 -1 -1 34096 -1 -1 14 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65680 29 32 287 238 1 172 75 17 17 289 -1 unnamed_device 25.4 MiB 2.15 717 7817 3163 4313 341 64.1 MiB 0.05 0.00 3.32814 -114.16 -3.32814 3.32814 0.88 0.000167508 0.000131155 0.0105103 0.00859435 -1 -1 -1 -1 34 2160 23 6.99608e+06 206020 618332. 2139.56 1.63 0.0642117 0.0535912 25762 151098 -1 1728 21 1640 2113 173515 37088 3.14682 3.14682 -119.514 -3.14682 0 0 787024. 2723.27 0.32 0.05 0.13 -1 -1 0.32 0.012514 0.0110174 73 34 58 29 29 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 7.19 vpr 64.72 MiB 0.02 7208 -1 -1 1 0.04 -1 -1 34092 -1 -1 14 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66276 32 32 334 290 1 207 78 17 17 289 -1 unnamed_device 26.0 MiB 1.69 775 9540 3855 5429 256 64.7 MiB 0.07 0.00 3.76953 -126.145 -3.76953 3.76953 0.88 0.000189591 0.000148754 0.014697 0.0119656 -1 -1 -1 -1 44 2461 26 6.99608e+06 206020 787024. 2723.27 2.23 0.0748659 0.0622708 27778 195446 -1 1799 20 1631 1895 157957 35924 3.50831 3.50831 -126.821 -3.50831 0 0 997811. 3452.63 0.38 0.05 0.17 -1 -1 0.38 0.0132756 0.0117147 92 82 0 0 82 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 17.09 vpr 64.69 MiB 0.04 7152 -1 -1 1 0.04 -1 -1 34104 -1 -1 17 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66240 31 32 365 281 1 217 80 17 17 289 -1 unnamed_device 25.8 MiB 0.79 1165 8336 2649 4367 1320 64.7 MiB 0.06 0.00 3.85324 -142.791 -3.85324 3.85324 0.87 0.000221735 0.000175784 0.0133748 0.0110189 -1 -1 -1 -1 38 3159 42 6.99608e+06 250167 678818. 2348.85 13.01 0.159159 0.133767 26626 170182 -1 2624 20 2076 2837 251199 49612 4.45022 4.45022 -165.853 -4.45022 0 0 902133. 3121.57 0.36 0.08 0.15 -1 -1 0.36 0.0190315 0.0169495 92 34 93 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 14.27 vpr 64.15 MiB 0.02 7012 -1 -1 1 0.04 -1 -1 34104 -1 -1 16 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65692 29 32 297 254 1 191 77 17 17 289 -1 unnamed_device 25.3 MiB 2.68 702 10020 4191 5344 485 64.2 MiB 0.06 0.00 3.21559 -105.308 -3.21559 3.21559 0.88 0.000173013 0.000136256 0.0127916 0.0104004 -1 -1 -1 -1 40 2468 27 6.99608e+06 235451 706193. 2443.58 8.31 0.128088 0.106657 26914 176310 -1 1804 20 1390 1585 144363 33230 3.41836 3.41836 -114.125 -3.41836 0 0 926341. 3205.33 0.34 0.05 0.17 -1 -1 0.34 0.013462 0.0119273 81 56 29 29 52 26 +fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 7.42 vpr 64.32 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 34064 -1 -1 13 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65864 32 32 314 256 1 188 77 17 17 289 -1 unnamed_device 25.5 MiB 0.86 805 12628 5356 6957 315 64.3 MiB 0.08 0.00 3.56959 -132.322 -3.56959 3.56959 0.87 0.000182909 0.000143651 0.0179256 0.0145801 -1 -1 -1 -1 40 2423 42 6.99608e+06 191304 706193. 2443.58 3.32 0.0954545 0.0803613 26914 176310 -1 1979 23 1814 2286 214232 45833 3.48281 3.48281 -137.795 -3.48281 0 0 926341. 3205.33 0.34 0.06 0.16 -1 -1 0.34 0.0149147 0.013093 79 34 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 15.25 vpr 64.76 MiB 0.02 7192 -1 -1 1 0.04 -1 -1 34200 -1 -1 18 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66316 31 32 387 307 1 239 81 17 17 289 -1 unnamed_device 25.8 MiB 1.43 913 13381 5622 7065 694 64.8 MiB 0.08 0.00 4.07038 -142.271 -4.07038 4.07038 0.87 0.000218208 0.000172309 0.0192712 0.0155741 -1 -1 -1 -1 48 3262 43 6.99608e+06 264882 865456. 2994.66 10.40 0.171766 0.141245 28354 207349 -1 2192 31 2465 3410 288125 65566 3.9283 3.9283 -146.406 -3.9283 0 0 1.05005e+06 3633.38 0.40 0.10 0.20 -1 -1 0.40 0.0241849 0.0211874 105 64 58 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 7.90 vpr 64.50 MiB 0.02 7080 -1 -1 1 0.04 -1 -1 33856 -1 -1 13 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66048 31 32 308 262 1 193 76 17 17 289 -1 unnamed_device 25.8 MiB 2.96 793 12236 4782 5589 1865 64.5 MiB 0.07 0.00 3.3327 -113.287 -3.3327 3.3327 0.90 0.000178087 0.000139999 0.0160875 0.0130515 -1 -1 -1 -1 38 2465 32 6.99608e+06 191304 678818. 2348.85 1.69 0.0644487 0.0537627 26626 170182 -1 1977 18 1320 1644 161264 33411 2.94731 2.94731 -115.142 -2.94731 0 0 902133. 3121.57 0.34 0.05 0.15 -1 -1 0.34 0.011739 0.0103934 82 55 31 31 53 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 8.41 vpr 64.85 MiB 0.03 7200 -1 -1 1 0.04 -1 -1 33936 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66408 32 32 383 307 1 232 82 17 17 289 -1 unnamed_device 25.9 MiB 2.00 886 14678 6217 7844 617 64.9 MiB 0.09 0.00 3.48779 -124.494 -3.48779 3.48779 0.89 0.000217607 0.000171079 0.0207114 0.0167222 -1 -1 -1 -1 46 2866 50 6.99608e+06 264882 828058. 2865.25 2.95 0.0897904 0.0747424 28066 200906 -1 2025 22 1904 2668 230392 54572 3.62917 3.62917 -127.811 -3.62917 0 0 1.01997e+06 3529.29 0.37 0.07 0.18 -1 -1 0.37 0.0170777 0.0150426 103 65 52 26 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 18.61 vpr 64.94 MiB 0.03 7324 -1 -1 1 0.04 -1 -1 33964 -1 -1 22 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66500 31 32 422 339 1 272 85 17 17 289 -1 unnamed_device 26.0 MiB 1.06 1136 16081 5903 7938 2240 64.9 MiB 0.11 0.00 4.59961 -156.224 -4.59961 4.59961 0.89 0.000241972 0.000191264 0.0239972 0.019389 -1 -1 -1 -1 40 3831 28 6.99608e+06 323745 706193. 2443.58 13.87 0.167092 0.138803 26914 176310 -1 2922 21 2582 3520 400485 97017 4.47714 4.47714 -164.634 -4.47714 0 0 926341. 3205.33 0.42 0.13 0.17 -1 -1 0.42 0.0286068 0.0259163 123 93 31 31 92 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 9.91 vpr 64.80 MiB 0.02 6976 -1 -1 1 0.04 -1 -1 33728 -1 -1 15 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66356 32 32 333 279 1 208 79 17 17 289 -1 unnamed_device 25.7 MiB 2.14 1137 10050 3205 5445 1400 64.8 MiB 0.06 0.00 3.15669 -124.76 -3.15669 3.15669 0.89 0.000188702 0.000148142 0.0137292 0.0111474 -1 -1 -1 -1 40 2838 25 6.99608e+06 220735 706193. 2443.58 4.45 0.0979503 0.0807866 26914 176310 -1 2436 25 1965 2828 245570 49716 3.48182 3.48182 -129.118 -3.48182 0 0 926341. 3205.33 0.35 0.08 0.16 -1 -1 0.35 0.018267 0.0160601 88 61 32 32 60 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 14.87 vpr 64.82 MiB 0.02 6864 -1 -1 1 0.04 -1 -1 33876 -1 -1 14 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66380 32 32 339 283 1 212 78 17 17 289 -1 unnamed_device 26.0 MiB 0.93 820 13856 4964 6926 1966 64.8 MiB 0.08 0.00 3.30794 -122.442 -3.30794 3.30794 0.89 0.000199618 0.000157772 0.0199289 0.016202 -1 -1 -1 -1 40 2662 33 6.99608e+06 206020 706193. 2443.58 10.41 0.133558 0.110053 26914 176310 -1 1989 18 1621 1955 198541 43761 3.31622 3.31622 -126.167 -3.31622 0 0 926341. 3205.33 0.36 0.07 0.18 -1 -1 0.36 0.0179262 0.0161331 91 63 32 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 13.82 vpr 65.15 MiB 0.02 7200 -1 -1 1 0.05 -1 -1 34468 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66712 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 26.3 MiB 1.08 1239 11118 3581 5407 2130 65.1 MiB 0.08 0.00 3.83715 -144.315 -3.83715 3.83715 0.89 0.00024052 0.00019174 0.0195501 0.0160437 -1 -1 -1 -1 40 3054 44 6.99608e+06 264882 706193. 2443.58 9.37 0.164638 0.135906 26914 176310 -1 2607 23 2389 2887 211349 46103 4.51132 4.51132 -164.932 -4.51132 0 0 926341. 3205.33 0.37 0.07 0.16 -1 -1 0.37 0.0190344 0.0167079 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 8.59 vpr 64.79 MiB 0.02 7116 -1 -1 1 0.04 -1 -1 33976 -1 -1 21 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66340 29 32 367 293 1 222 82 17 17 289 -1 unnamed_device 26.0 MiB 1.96 912 9160 3705 5067 388 64.8 MiB 0.06 0.00 3.41124 -117.288 -3.41124 3.41124 0.94 0.000207571 0.00016423 0.0132526 0.0108472 -1 -1 -1 -1 38 3022 46 6.99608e+06 309029 678818. 2348.85 3.30 0.0824746 0.0680641 26626 170182 -1 2437 25 2136 2811 246062 52450 3.51187 3.51187 -127.239 -3.51187 0 0 902133. 3121.57 0.32 0.07 0.15 -1 -1 0.32 0.0176691 0.0154476 101 62 56 29 58 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 18.33 vpr 64.91 MiB 0.02 7344 -1 -1 1 0.04 -1 -1 34152 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66472 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 26.3 MiB 1.04 1399 13316 4006 7788 1522 64.9 MiB 0.10 0.00 4.54237 -164.626 -4.54237 4.54237 0.93 0.000263784 0.000211337 0.0210084 0.0169757 -1 -1 -1 -1 38 4223 34 6.99608e+06 323745 678818. 2348.85 13.87 0.178372 0.147636 26626 170182 -1 3280 22 3173 3785 325226 67549 5.42914 5.42914 -199.634 -5.42914 0 0 902133. 3121.57 0.34 0.09 0.16 -1 -1 0.34 0.0192619 0.0168461 140 127 0 0 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 12.15 vpr 64.08 MiB 0.02 7060 -1 -1 1 0.04 -1 -1 34040 -1 -1 11 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65616 31 32 259 212 1 144 74 17 17 289 -1 unnamed_device 25.4 MiB 1.10 514 10149 4253 5499 397 64.1 MiB 0.06 0.00 2.85721 -96.25 -2.85721 2.85721 0.92 0.000169366 0.000132508 0.0135978 0.0109497 -1 -1 -1 -1 42 2019 38 6.99608e+06 161872 744469. 2576.02 7.80 0.10162 0.0840259 27202 183097 -1 1401 21 1155 1731 140465 35692 2.76017 2.76017 -106.718 -2.76017 0 0 949917. 3286.91 0.36 0.05 0.16 -1 -1 0.36 0.0113194 0.00993003 58 4 85 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 7.50 vpr 64.75 MiB 0.03 7252 -1 -1 1 0.04 -1 -1 34044 -1 -1 19 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66308 32 32 418 338 1 263 83 17 17 289 -1 unnamed_device 26.0 MiB 2.07 1197 12863 4931 5522 2410 64.8 MiB 0.09 0.00 4.80843 -163.702 -4.80843 4.80843 0.90 0.000242203 0.000190038 0.0209426 0.0167501 -1 -1 -1 -1 42 3512 38 6.99608e+06 279598 744469. 2576.02 1.97 0.0803425 0.0658149 27202 183097 -1 2720 22 2711 3434 305955 65422 5.12789 5.12789 -176.653 -5.12789 0 0 949917. 3286.91 0.36 0.09 0.17 -1 -1 0.36 0.021356 0.0189501 119 92 28 28 92 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 6.39 vpr 64.77 MiB 0.02 7000 -1 -1 1 0.04 -1 -1 33912 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66324 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 25.8 MiB 1.02 1197 13324 4707 7364 1253 64.8 MiB 0.08 0.00 4.41342 -162.024 -4.41342 4.41342 0.85 0.000205341 0.000162143 0.0192056 0.0156212 -1 -1 -1 -1 42 3257 24 6.99608e+06 235451 744469. 2576.02 2.08 0.0761603 0.0634728 27202 183097 -1 2707 21 2903 3667 392593 76634 4.88015 4.88015 -168.693 -4.88015 0 0 949917. 3286.91 0.36 0.09 0.16 -1 -1 0.36 0.0153197 0.0134271 110 96 0 0 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 15.75 vpr 65.04 MiB 0.02 7032 -1 -1 1 0.04 -1 -1 34168 -1 -1 19 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66600 32 32 401 316 1 247 83 17 17 289 -1 unnamed_device 26.2 MiB 1.01 1122 13403 4777 5917 2709 65.0 MiB 0.09 0.00 3.33684 -128.047 -3.33684 3.33684 0.87 0.000224408 0.000178231 0.0197189 0.0161144 -1 -1 -1 -1 40 3281 42 6.99608e+06 279598 706193. 2443.58 11.50 0.162397 0.134694 26914 176310 -1 2604 23 2214 2913 246629 50304 3.47452 3.47452 -138.906 -3.47452 0 0 926341. 3205.33 0.35 0.08 0.16 -1 -1 0.35 0.0187151 0.0164243 106 65 61 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 20.77 vpr 65.05 MiB 0.03 7364 -1 -1 1 0.05 -1 -1 34460 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66612 32 32 500 382 1 312 86 17 17 289 -1 unnamed_device 26.6 MiB 1.04 1505 15584 4795 8564 2225 65.1 MiB 0.11 0.00 4.92348 -178.984 -4.92348 4.92348 0.92 0.000276388 0.000218319 0.0264146 0.0213868 -1 -1 -1 -1 38 4442 31 6.99608e+06 323745 678818. 2348.85 16.26 0.201834 0.16708 26626 170182 -1 3422 24 3175 3657 345025 72516 5.482 5.482 -203.145 -5.482 0 0 902133. 3121.57 0.34 0.10 0.15 -1 -1 0.34 0.0244482 0.0215363 140 96 64 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 6.62 vpr 64.03 MiB 0.02 6952 -1 -1 1 0.04 -1 -1 33908 -1 -1 13 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65564 30 32 246 229 1 154 75 17 17 289 -1 unnamed_device 25.5 MiB 1.75 575 8449 3504 4687 258 64.0 MiB 0.04 0.00 2.79195 -95.9589 -2.79195 2.79195 0.86 0.000143418 0.000111871 0.00959037 0.00775525 -1 -1 -1 -1 38 1790 44 6.99608e+06 191304 678818. 2348.85 1.66 0.0578982 0.0475977 26626 170182 -1 1426 31 955 974 152747 55620 2.42362 2.42362 -91.7739 -2.42362 0 0 902133. 3121.57 0.33 0.06 0.15 -1 -1 0.33 0.0134035 0.0115704 65 56 0 0 53 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 8.38 vpr 64.39 MiB 0.02 7084 -1 -1 1 0.04 -1 -1 33908 -1 -1 14 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65936 30 32 296 244 1 166 76 17 17 289 -1 unnamed_device 25.4 MiB 3.77 812 8236 3162 3930 1144 64.4 MiB 0.05 0.00 3.41559 -120.975 -3.41559 3.41559 0.86 0.000177951 0.000139898 0.011423 0.0093334 -1 -1 -1 -1 34 2148 22 6.99608e+06 206020 618332. 2139.56 1.51 0.05215 0.0432396 25762 151098 -1 1872 23 1532 2278 211440 41433 3.55131 3.55131 -132.651 -3.55131 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0131749 0.011446 71 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 6.91 vpr 64.52 MiB 0.02 6872 -1 -1 1 0.04 -1 -1 33640 -1 -1 12 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66068 32 32 314 256 1 192 76 17 17 289 -1 unnamed_device 25.6 MiB 0.31 719 10316 3884 5163 1269 64.5 MiB 0.06 0.00 3.36114 -127.044 -3.36114 3.36114 0.86 0.000185027 0.000145588 0.0142753 0.0115933 -1 -1 -1 -1 54 2177 46 6.99608e+06 176588 949917. 3286.91 3.23 0.0910994 0.0752053 29506 232905 -1 1725 23 1890 2981 233315 52850 3.80991 3.80991 -138.909 -3.80991 0 0 1.17392e+06 4061.99 0.45 0.07 0.21 -1 -1 0.45 0.0160448 0.0141814 80 34 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 6.10 vpr 63.90 MiB 0.02 6944 -1 -1 1 0.04 -1 -1 34012 -1 -1 18 25 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65436 25 32 251 214 1 151 75 17 17 289 -1 unnamed_device 25.3 MiB 1.07 495 10819 4262 4978 1579 63.9 MiB 0.06 0.00 3.27465 -89.1389 -3.27465 3.27465 0.89 0.000165332 0.000131574 0.0139816 0.0113229 -1 -1 -1 -1 38 1636 25 6.99608e+06 264882 678818. 2348.85 1.82 0.0587239 0.0483801 26626 170182 -1 1301 17 961 1236 87175 20491 3.24827 3.24827 -100.814 -3.24827 0 0 902133. 3121.57 0.33 0.03 0.15 -1 -1 0.33 0.00870989 0.00769105 67 34 50 25 25 25 +fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 23.68 vpr 64.77 MiB 0.02 7140 -1 -1 1 0.04 -1 -1 34080 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66328 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 26.1 MiB 0.98 1340 16005 6763 8808 434 64.8 MiB 0.10 0.00 3.73195 -141.272 -3.73195 3.73195 0.91 0.000235118 0.000186656 0.023782 0.0193289 -1 -1 -1 -1 40 4271 41 6.99608e+06 294314 706193. 2443.58 19.09 0.180562 0.14999 26914 176310 -1 3499 20 2691 3818 377779 78007 4.53581 4.53581 -160.538 -4.53581 0 0 926341. 3205.33 0.36 0.11 0.18 -1 -1 0.36 0.0229867 0.0205733 127 94 32 32 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 17.40 vpr 64.95 MiB 0.03 7328 -1 -1 1 0.04 -1 -1 34208 -1 -1 22 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66508 31 32 421 339 1 270 85 17 17 289 -1 unnamed_device 26.0 MiB 1.12 1059 13477 4799 6867 1811 64.9 MiB 0.10 0.00 4.24008 -145.447 -4.24008 4.24008 0.88 0.00023042 0.000181125 0.0200168 0.0161425 -1 -1 -1 -1 40 3467 27 6.99608e+06 323745 706193. 2443.58 12.95 0.1603 0.132249 26914 176310 -1 2738 22 2858 3837 346059 76288 4.19435 4.19435 -154.677 -4.19435 0 0 926341. 3205.33 0.35 0.09 0.16 -1 -1 0.35 0.0190466 0.0167694 121 94 29 29 93 31 +fixed_k6_frac_N8_22nm.xml mult_001.v common 8.81 vpr 64.29 MiB 0.02 7208 -1 -1 14 0.31 -1 -1 36548 -1 -1 19 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65832 32 32 280 312 1 209 83 17 17 289 -1 unnamed_device 25.7 MiB 2.73 1259 12503 3522 6847 2134 64.3 MiB 0.09 0.00 8.52371 -172.994 -8.52371 8.52371 0.86 0.000277466 0.000220476 0.0230423 0.0187073 -1 -1 -1 -1 38 3367 22 6.79088e+06 255968 678818. 2348.85 2.50 0.10433 0.0872048 25966 169698 -1 2720 19 1268 3428 190355 41725 7.30396 7.30396 -164.862 -7.30396 0 0 902133. 3121.57 0.32 0.06 0.15 -1 -1 0.32 0.0209095 0.0187992 134 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_002.v common 11.76 vpr 64.25 MiB 0.02 7040 -1 -1 14 0.36 -1 -1 36608 -1 -1 22 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65792 30 32 277 309 1 212 84 17 17 289 -1 unnamed_device 25.3 MiB 1.79 1185 7770 1967 4869 934 64.2 MiB 0.07 0.00 8.32669 -166.781 -8.32669 8.32669 0.89 0.000306673 0.000247241 0.0171587 0.0143281 -1 -1 -1 -1 32 3781 30 6.79088e+06 296384 586450. 2029.24 6.34 0.137685 0.115138 24814 144142 -1 3097 30 1861 5183 462513 146901 7.66518 7.66518 -166.718 -7.66518 0 0 744469. 2576.02 0.29 0.15 0.12 -1 -1 0.29 0.0337502 0.0300425 131 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_003.v common 20.57 vpr 64.33 MiB 0.02 7084 -1 -1 11 0.27 -1 -1 36512 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65872 32 32 274 306 1 201 84 17 17 289 -1 unnamed_device 25.5 MiB 2.36 1162 9234 2657 4676 1901 64.3 MiB 0.07 0.00 6.64553 -144.864 -6.64553 6.64553 0.87 0.000276593 0.000218911 0.0176544 0.0144289 -1 -1 -1 -1 40 3047 26 6.79088e+06 269440 706193. 2443.58 14.71 0.217782 0.185596 26254 175826 -1 2619 20 1243 3671 206740 48844 5.85345 5.85345 -139.232 -5.85345 0 0 926341. 3205.33 0.33 0.07 0.17 -1 -1 0.33 0.0204834 0.0183276 134 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_004.v common 12.56 vpr 64.39 MiB 0.02 7084 -1 -1 12 0.42 -1 -1 36716 -1 -1 22 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65932 29 32 269 301 1 190 83 17 17 289 -1 unnamed_device 25.6 MiB 1.72 1052 7823 1903 4660 1260 64.4 MiB 0.07 0.00 7.35214 -141.259 -7.35214 7.35214 0.93 0.000287541 0.000229087 0.01757 0.0143933 -1 -1 -1 -1 32 3358 40 6.79088e+06 296384 586450. 2029.24 7.11 0.158074 0.131645 24814 144142 -1 2743 20 1329 4157 235545 53946 6.80448 6.80448 -144.304 -6.80448 0 0 744469. 2576.02 0.30 0.08 0.12 -1 -1 0.30 0.026592 0.0239777 136 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_005.v common 8.43 vpr 64.57 MiB 0.02 6976 -1 -1 13 0.38 -1 -1 36692 -1 -1 24 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66124 32 32 317 349 1 254 88 17 17 289 -1 unnamed_device 25.6 MiB 2.69 1363 10813 2441 7327 1045 64.6 MiB 0.08 0.00 7.99767 -164.707 -7.99767 7.99767 0.92 0.000327939 0.000261738 0.0223352 0.01832 -1 -1 -1 -1 36 4267 23 6.79088e+06 323328 648988. 2245.63 2.06 0.098489 0.0825781 25390 158009 -1 3476 20 1939 5087 310004 69239 7.34721 7.34721 -163.333 -7.34721 0 0 828058. 2865.25 0.31 0.09 0.14 -1 -1 0.31 0.0251712 0.0224866 159 223 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_006.v common 14.87 vpr 64.32 MiB 0.02 6940 -1 -1 12 0.34 -1 -1 36260 -1 -1 24 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65864 32 32 299 331 1 227 88 17 17 289 -1 unnamed_device 25.5 MiB 3.19 1549 8083 2094 5260 729 64.3 MiB 0.07 0.00 7.66842 -163.175 -7.66842 7.66842 0.87 0.000315844 0.000254607 0.0170715 0.0141416 -1 -1 -1 -1 32 4523 45 6.79088e+06 323328 586450. 2029.24 8.06 0.169948 0.141799 24814 144142 -1 3618 21 1863 5453 441420 118208 6.88177 6.88177 -162.618 -6.88177 0 0 744469. 2576.02 0.32 0.12 0.13 -1 -1 0.32 0.0241043 0.0215702 150 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_007.v common 15.56 vpr 63.82 MiB 0.02 6852 -1 -1 12 0.22 -1 -1 36668 -1 -1 20 27 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65356 27 32 210 242 1 166 79 17 17 289 -1 unnamed_device 25.1 MiB 1.79 891 7008 1614 4986 408 63.8 MiB 0.05 0.00 6.92259 -128.472 -6.92259 6.92259 0.91 0.000228203 0.00018324 0.0127017 0.0105649 -1 -1 -1 -1 32 3180 49 6.79088e+06 269440 586450. 2029.24 10.42 0.12641 0.105771 24814 144142 -1 2494 19 1133 3022 208338 49931 5.95423 5.95423 -125.801 -5.95423 0 0 744469. 2576.02 0.30 0.06 0.13 -1 -1 0.30 0.0152489 0.013643 100 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_008.v common 8.35 vpr 64.26 MiB 0.02 7044 -1 -1 11 0.22 -1 -1 36560 -1 -1 16 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65804 31 32 264 296 1 191 79 17 17 289 -1 unnamed_device 25.5 MiB 1.78 1048 6501 1621 4615 265 64.3 MiB 0.06 0.00 6.73073 -140.451 -6.73073 6.73073 0.89 0.000287404 0.000231126 0.0147109 0.0120995 -1 -1 -1 -1 38 3117 43 6.79088e+06 215552 678818. 2348.85 3.23 0.105777 0.0889537 25966 169698 -1 2614 18 1278 3583 221292 47394 5.94304 5.94304 -136.278 -5.94304 0 0 902133. 3121.57 0.32 0.07 0.15 -1 -1 0.32 0.0188548 0.0168336 113 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_009.v common 8.98 vpr 64.11 MiB 0.02 6816 -1 -1 12 0.21 -1 -1 36244 -1 -1 18 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65648 31 32 234 266 1 191 81 17 17 289 -1 unnamed_device 25.3 MiB 3.51 1069 9881 3201 5129 1551 64.1 MiB 0.06 0.00 6.55603 -138.983 -6.55603 6.55603 0.86 0.000229131 0.000181296 0.0159258 0.0130021 -1 -1 -1 -1 38 2973 24 6.79088e+06 242496 678818. 2348.85 2.09 0.0857672 0.0720237 25966 169698 -1 2390 16 1075 2453 150732 33088 5.62523 5.62523 -133.585 -5.62523 0 0 902133. 3121.57 0.34 0.05 0.15 -1 -1 0.34 0.0158874 0.0143491 111 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_010.v common 7.59 vpr 63.98 MiB 0.02 6692 -1 -1 13 0.23 -1 -1 36324 -1 -1 15 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65512 32 32 253 285 1 179 79 17 17 289 -1 unnamed_device 25.1 MiB 1.63 1133 8022 2176 4612 1234 64.0 MiB 0.06 0.00 7.34973 -166.511 -7.34973 7.34973 0.87 0.00033351 0.000277657 0.0165082 0.0136234 -1 -1 -1 -1 34 3196 47 6.79088e+06 202080 618332. 2139.56 2.62 0.101305 0.0846733 25102 150614 -1 2569 15 1111 2845 176449 39397 6.25527 6.25527 -157.049 -6.25527 0 0 787024. 2723.27 0.31 0.05 0.13 -1 -1 0.31 0.0159108 0.0143776 106 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_011.v common 9.53 vpr 63.73 MiB 0.02 6924 -1 -1 12 0.22 -1 -1 36412 -1 -1 15 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65264 30 32 217 249 1 156 77 17 17 289 -1 unnamed_device 25.0 MiB 2.17 755 12465 4696 5677 2092 63.7 MiB 0.07 0.00 7.40292 -146.389 -7.40292 7.40292 0.88 0.000220092 0.000170954 0.019537 0.0157634 -1 -1 -1 -1 38 2408 21 6.79088e+06 202080 678818. 2348.85 4.00 0.0955967 0.0793293 25966 169698 -1 1598 16 821 2283 107523 26529 6.33367 6.33367 -134.685 -6.33367 0 0 902133. 3121.57 0.33 0.04 0.16 -1 -1 0.33 0.0140669 0.0126924 94 129 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_012.v common 7.49 vpr 63.75 MiB 0.02 6792 -1 -1 12 0.19 -1 -1 36156 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65284 32 32 227 259 1 169 80 17 17 289 -1 unnamed_device 25.1 MiB 1.90 1007 10744 3628 5580 1536 63.8 MiB 0.07 0.00 6.58409 -154.656 -6.58409 6.58409 0.86 0.000237643 0.00018018 0.0171779 0.0137257 -1 -1 -1 -1 40 2417 29 6.79088e+06 215552 706193. 2443.58 2.21 0.0817753 0.0679442 26254 175826 -1 2230 36 983 2614 399312 211523 5.9396 5.9396 -151.878 -5.9396 0 0 926341. 3205.33 0.33 0.13 0.15 -1 -1 0.33 0.0228242 0.0199214 92 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_013.v common 15.37 vpr 64.72 MiB 0.02 7052 -1 -1 13 0.35 -1 -1 37132 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66276 32 32 306 338 1 223 84 17 17 289 -1 unnamed_device 25.8 MiB 1.77 1319 6306 1320 4344 642 64.7 MiB 0.06 0.00 7.99515 -167.704 -7.99515 7.99515 0.87 0.000308388 0.00024535 0.0145837 0.0120873 -1 -1 -1 -1 32 3769 23 6.79088e+06 269440 586450. 2029.24 10.02 0.165492 0.139679 24814 144142 -1 3073 20 1384 3940 227044 50811 6.87756 6.87756 -162.023 -6.87756 0 0 744469. 2576.02 0.30 0.08 0.13 -1 -1 0.30 0.0275934 0.0248754 146 212 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_014.v common 7.91 vpr 64.34 MiB 0.02 7064 -1 -1 14 0.41 -1 -1 36640 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65888 32 32 302 334 1 225 85 17 17 289 -1 unnamed_device 25.7 MiB 2.26 1310 10315 2634 5767 1914 64.3 MiB 0.08 0.00 9.08665 -181.887 -9.08665 9.08665 0.88 0.00033501 0.000270968 0.0208509 0.0171076 -1 -1 -1 -1 36 3852 48 6.79088e+06 282912 648988. 2245.63 2.02 0.107675 0.0900359 25390 158009 -1 2936 20 1438 3641 222969 51082 8.05576 8.05576 -171.074 -8.05576 0 0 828058. 2865.25 0.32 0.07 0.14 -1 -1 0.32 0.0230429 0.0206313 149 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_015.v common 6.41 vpr 63.84 MiB 0.02 6956 -1 -1 11 0.21 -1 -1 35904 -1 -1 20 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65368 29 32 238 270 1 179 81 17 17 289 -1 unnamed_device 25.0 MiB 1.46 1021 12156 3295 7057 1804 63.8 MiB 0.07 0.00 7.03294 -137.697 -7.03294 7.03294 0.91 0.000231548 0.000183659 0.0192807 0.015656 -1 -1 -1 -1 28 3345 47 6.79088e+06 269440 531479. 1839.03 1.69 0.0764019 0.0640273 23950 126010 -1 2635 16 1222 2828 185001 41348 5.98983 5.98983 -136.135 -5.98983 0 0 648988. 2245.63 0.26 0.06 0.11 -1 -1 0.26 0.0171832 0.0155308 110 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_016.v common 9.16 vpr 64.11 MiB 0.02 7060 -1 -1 12 0.33 -1 -1 36488 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65648 32 32 306 338 1 235 84 17 17 289 -1 unnamed_device 25.4 MiB 2.69 1362 4476 730 3513 233 64.1 MiB 0.05 0.00 8.16506 -163.52 -8.16506 8.16506 0.90 0.000307543 0.000244806 0.0116718 0.00988952 -1 -1 -1 -1 44 3799 32 6.79088e+06 269440 787024. 2723.27 2.75 0.116612 0.0993042 27118 194962 -1 3230 18 1530 4561 262105 57658 6.98366 6.98366 -153.071 -6.98366 0 0 997811. 3452.63 0.38 0.10 0.17 -1 -1 0.38 0.0302129 0.0274342 144 212 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_017.v common 9.47 vpr 64.32 MiB 0.02 7060 -1 -1 13 0.34 -1 -1 36416 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65860 32 32 311 343 1 224 85 17 17 289 -1 unnamed_device 25.5 MiB 1.69 1298 6781 1433 4660 688 64.3 MiB 0.06 0.00 8.52276 -172.733 -8.52276 8.52276 0.87 0.000321149 0.00025607 0.0163742 0.0136447 -1 -1 -1 -1 40 3204 18 6.79088e+06 282912 706193. 2443.58 4.30 0.142028 0.118758 26254 175826 -1 2839 19 1322 3820 223012 50084 7.26465 7.26465 -162.714 -7.26465 0 0 926341. 3205.33 0.34 0.07 0.15 -1 -1 0.34 0.0218766 0.0195791 145 217 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_018.v common 8.06 vpr 63.65 MiB 0.02 6960 -1 -1 12 0.20 -1 -1 36420 -1 -1 15 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65180 32 32 230 262 1 175 79 17 17 289 -1 unnamed_device 25.1 MiB 2.66 1085 10050 2687 6415 948 63.7 MiB 0.07 0.00 6.98054 -167.591 -6.98054 6.98054 0.88 0.000239337 0.000189932 0.0173049 0.0141588 -1 -1 -1 -1 36 2939 33 6.79088e+06 202080 648988. 2245.63 2.08 0.0872254 0.0723196 25390 158009 -1 2331 14 862 2213 134975 30048 6.11878 6.11878 -156.755 -6.11878 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0142196 0.0128841 103 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_019.v common 11.54 vpr 63.51 MiB 0.02 6780 -1 -1 10 0.14 -1 -1 35928 -1 -1 13 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65032 30 32 176 208 1 137 75 17 17 289 -1 unnamed_device 24.7 MiB 2.79 617 10029 3756 5049 1224 63.5 MiB 0.05 0.00 4.90111 -115.952 -4.90111 4.90111 0.88 0.000165138 0.000129966 0.0125081 0.0100966 -1 -1 -1 -1 36 2206 35 6.79088e+06 175136 648988. 2245.63 5.57 0.093001 0.0772638 25390 158009 -1 1656 18 866 2001 146186 33972 4.63261 4.63261 -118.049 -4.63261 0 0 828058. 2865.25 0.32 0.05 0.15 -1 -1 0.32 0.0112336 0.010001 68 88 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_020.v common 7.82 vpr 64.01 MiB 0.02 6940 -1 -1 13 0.22 -1 -1 36544 -1 -1 16 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65548 31 32 226 258 1 169 79 17 17 289 -1 unnamed_device 25.3 MiB 2.46 894 8698 2042 6119 537 64.0 MiB 0.06 0.00 7.51507 -159.301 -7.51507 7.51507 0.88 0.000229733 0.000183022 0.0145349 0.011908 -1 -1 -1 -1 34 3032 38 6.79088e+06 215552 618332. 2139.56 2.00 0.0823089 0.0690232 25102 150614 -1 2136 17 1014 2451 128435 30901 6.45897 6.45897 -152.696 -6.45897 0 0 787024. 2723.27 0.33 0.05 0.14 -1 -1 0.33 0.0151303 0.0136222 98 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_021.v common 7.21 vpr 64.29 MiB 0.02 7016 -1 -1 13 0.36 -1 -1 36320 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65828 32 32 302 334 1 216 85 17 17 289 -1 unnamed_device 25.6 MiB 1.35 1191 6781 1467 4296 1018 64.3 MiB 0.06 0.00 7.58328 -158.293 -7.58328 7.58328 0.87 0.000295403 0.000237668 0.0148486 0.0124051 -1 -1 -1 -1 34 3841 36 6.79088e+06 282912 618332. 2139.56 2.39 0.0960744 0.0806877 25102 150614 -1 3016 21 1821 5196 295424 66742 6.73409 6.73409 -163.313 -6.73409 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.0230636 0.0203969 142 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_022.v common 18.85 vpr 64.50 MiB 0.02 7132 -1 -1 13 0.36 -1 -1 36412 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66048 32 32 299 331 1 221 84 17 17 289 -1 unnamed_device 25.7 MiB 1.96 1314 6489 1394 4653 442 64.5 MiB 0.06 0.00 7.94947 -168.322 -7.94947 7.94947 0.88 0.000315729 0.0002542 0.0148264 0.0122904 -1 -1 -1 -1 38 3509 49 6.79088e+06 269440 678818. 2348.85 13.21 0.209952 0.175931 25966 169698 -1 2821 18 1328 3940 243259 60434 7.30922 7.30922 -164.085 -7.30922 0 0 902133. 3121.57 0.34 0.08 0.15 -1 -1 0.34 0.0226167 0.0204365 142 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_023.v common 6.60 vpr 62.89 MiB 0.02 6704 -1 -1 9 0.13 -1 -1 35904 -1 -1 16 26 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64400 26 32 149 181 1 119 74 17 17 289 -1 unnamed_device 24.6 MiB 2.48 668 5964 2208 3025 731 62.9 MiB 0.03 0.00 5.26474 -98.9706 -5.26474 5.26474 0.87 0.00014426 0.000110217 0.00738602 0.00605416 -1 -1 -1 -1 32 1815 21 6.79088e+06 215552 586450. 2029.24 0.99 0.0324009 0.0271696 24814 144142 -1 1568 13 580 1361 98198 21374 4.49504 4.49504 -96.6789 -4.49504 0 0 744469. 2576.02 0.29 0.03 0.14 -1 -1 0.29 0.00796574 0.00720541 65 73 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_024.v common 20.80 vpr 64.39 MiB 0.02 6960 -1 -1 13 0.38 -1 -1 36416 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65936 32 32 304 336 1 219 86 17 17 289 -1 unnamed_device 25.6 MiB 2.16 1268 8213 1986 5619 608 64.4 MiB 0.07 0.00 8.5143 -170.557 -8.5143 8.5143 0.87 0.000305838 0.000243035 0.0177435 0.0145206 -1 -1 -1 -1 32 4549 46 6.79088e+06 296384 586450. 2029.24 15.04 0.197954 0.166361 24814 144142 -1 3410 31 2177 6222 673370 249383 7.6798 7.6798 -171.245 -7.6798 0 0 744469. 2576.02 0.29 0.22 0.13 -1 -1 0.29 0.0412179 0.0367252 136 210 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_025.v common 7.14 vpr 63.42 MiB 0.02 6520 -1 -1 8 0.12 -1 -1 35700 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 155 187 1 127 82 17 17 289 -1 unnamed_device 24.7 MiB 2.91 670 7380 1620 5618 142 63.4 MiB 0.04 0.00 4.48934 -96.8721 -4.48934 4.48934 0.89 0.000149438 0.000117198 0.00792463 0.00649045 -1 -1 -1 -1 30 1888 22 6.79088e+06 242496 556674. 1926.21 1.04 0.035372 0.0299459 24526 138013 -1 1502 17 625 1326 78065 18560 3.93104 3.93104 -98.6496 -3.93104 0 0 706193. 2443.58 0.27 0.03 0.13 -1 -1 0.27 0.00927389 0.00830285 64 61 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_026.v common 10.26 vpr 64.12 MiB 0.02 7012 -1 -1 15 0.30 -1 -1 36460 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65660 32 32 253 285 1 201 81 17 17 289 -1 unnamed_device 25.4 MiB 2.58 1232 7781 1881 4665 1235 64.1 MiB 0.06 0.00 8.77517 -179.005 -8.77517 8.77517 0.87 0.000258128 0.000206023 0.0147236 0.0121726 -1 -1 -1 -1 40 3050 29 6.79088e+06 229024 706193. 2443.58 4.27 0.118369 0.0989755 26254 175826 -1 2683 15 1245 3530 192377 43371 7.55117 7.55117 -168.707 -7.55117 0 0 926341. 3205.33 0.34 0.06 0.15 -1 -1 0.34 0.0164123 0.0148321 119 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_027.v common 7.83 vpr 64.34 MiB 0.02 6892 -1 -1 12 0.32 -1 -1 36124 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65884 32 32 309 341 1 219 86 17 17 289 -1 unnamed_device 25.5 MiB 2.05 1237 8780 2137 5860 783 64.3 MiB 0.07 0.00 6.99167 -152.762 -6.99167 6.99167 0.90 0.000353227 0.000289206 0.0182539 0.0148979 -1 -1 -1 -1 36 3373 21 6.79088e+06 296384 648988. 2245.63 2.17 0.105208 0.0877954 25390 158009 -1 3046 40 1430 4472 567897 249139 6.04382 6.04382 -144.157 -6.04382 0 0 828058. 2865.25 0.32 0.17 0.14 -1 -1 0.32 0.0350617 0.0305487 145 215 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_028.v common 7.93 vpr 64.26 MiB 0.02 7104 -1 -1 13 0.34 -1 -1 36296 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65804 32 32 289 321 1 208 84 17 17 289 -1 unnamed_device 25.4 MiB 2.01 1199 7038 1664 4741 633 64.3 MiB 0.06 0.00 8.4695 -169.121 -8.4695 8.4695 0.85 0.000289683 0.000230906 0.0145752 0.0120229 -1 -1 -1 -1 36 3550 41 6.79088e+06 269440 648988. 2245.63 2.46 0.127804 0.109827 25390 158009 -1 2894 20 1343 3668 236221 52369 7.41 7.41 -162.68 -7.41 0 0 828058. 2865.25 0.32 0.07 0.14 -1 -1 0.32 0.0213877 0.0191377 136 195 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_029.v common 11.32 vpr 63.77 MiB 0.02 6660 -1 -1 12 0.21 -1 -1 36652 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65304 32 32 239 271 1 180 82 17 17 289 -1 unnamed_device 25.1 MiB 2.08 1028 10406 3334 5200 1872 63.8 MiB 0.07 0.00 6.75626 -149.177 -6.75626 6.75626 0.87 0.000236366 0.000187756 0.0169088 0.0138063 -1 -1 -1 -1 34 2975 19 6.79088e+06 242496 618332. 2139.56 5.94 0.127407 0.106928 25102 150614 -1 2459 16 1064 2815 173588 39408 5.94309 5.94309 -145.063 -5.94309 0 0 787024. 2723.27 0.31 0.06 0.13 -1 -1 0.31 0.0162966 0.0146537 106 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_030.v common 7.27 vpr 63.81 MiB 0.02 6784 -1 -1 11 0.19 -1 -1 36300 -1 -1 16 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65340 30 32 213 245 1 163 78 17 17 289 -1 unnamed_device 25.1 MiB 1.89 931 5722 1363 3955 404 63.8 MiB 0.04 0.00 6.65788 -139.347 -6.65788 6.65788 0.88 0.000209801 0.000165941 0.0101529 0.00841637 -1 -1 -1 -1 44 2277 29 6.79088e+06 215552 787024. 2723.27 2.03 0.0702999 0.0602904 27118 194962 -1 1996 18 836 1976 120174 26737 5.67329 5.67329 -131.246 -5.67329 0 0 997811. 3452.63 0.37 0.05 0.17 -1 -1 0.37 0.0155119 0.0139289 93 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_031.v common 18.10 vpr 63.91 MiB 0.02 6772 -1 -1 11 0.20 -1 -1 36744 -1 -1 18 28 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65448 28 32 221 253 1 176 78 17 17 289 -1 unnamed_device 25.2 MiB 1.19 902 8876 2223 6138 515 63.9 MiB 0.06 0.00 6.72053 -131.848 -6.72053 6.72053 0.85 0.00023275 0.000185585 0.0156037 0.0128402 -1 -1 -1 -1 36 3005 40 6.79088e+06 242496 648988. 2245.63 13.58 0.150214 0.12641 25390 158009 -1 2442 17 1136 2981 187464 42219 5.78973 5.78973 -126.306 -5.78973 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0173738 0.0157139 107 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_032.v common 8.59 vpr 64.05 MiB 0.02 6708 -1 -1 12 0.23 -1 -1 36308 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65584 32 32 273 305 1 213 82 17 17 289 -1 unnamed_device 25.3 MiB 2.49 1208 10050 2615 5357 2078 64.0 MiB 0.07 0.00 7.12845 -160.373 -7.12845 7.12845 0.90 0.000260297 0.000206252 0.0179924 0.0146601 -1 -1 -1 -1 36 4024 36 6.79088e+06 242496 648988. 2245.63 2.55 0.0963695 0.0802835 25390 158009 -1 2982 29 1490 3670 384829 137043 6.29984 6.29984 -158.077 -6.29984 0 0 828058. 2865.25 0.31 0.12 0.14 -1 -1 0.31 0.0264004 0.0234395 118 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_033.v common 6.94 vpr 63.73 MiB 0.02 6864 -1 -1 11 0.21 -1 -1 36436 -1 -1 18 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65256 31 32 238 270 1 180 81 17 17 289 -1 unnamed_device 25.1 MiB 1.96 915 11456 3671 5623 2162 63.7 MiB 0.07 0.00 6.45483 -141.873 -6.45483 6.45483 0.83 0.000252095 0.000201477 0.0195397 0.0159687 -1 -1 -1 -1 34 2889 22 6.79088e+06 242496 618332. 2139.56 1.74 0.0764864 0.0636155 25102 150614 -1 2100 15 1109 2839 144033 35695 5.56714 5.56714 -136.831 -5.56714 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.015533 0.0139895 107 147 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_034.v common 12.59 vpr 63.56 MiB 0.02 6904 -1 -1 10 0.18 -1 -1 36412 -1 -1 17 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65084 29 32 221 253 1 158 78 17 17 289 -1 unnamed_device 25.1 MiB 1.69 780 5224 1169 3841 214 63.6 MiB 0.04 0.00 6.56873 -131.467 -6.56873 6.56873 0.90 0.000229688 0.00018228 0.0106152 0.00884206 -1 -1 -1 -1 36 2182 19 6.79088e+06 229024 648988. 2245.63 7.60 0.116779 0.0978611 25390 158009 -1 1906 15 872 2551 162268 37415 5.74277 5.74277 -127.49 -5.74277 0 0 828058. 2865.25 0.32 0.05 0.14 -1 -1 0.32 0.0140188 0.0126165 102 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_035.v common 28.80 vpr 64.53 MiB 0.02 7208 -1 -1 13 0.41 -1 -1 36460 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66080 32 32 333 365 1 236 86 17 17 289 -1 unnamed_device 25.7 MiB 1.53 1527 9158 2380 5973 805 64.5 MiB 0.08 0.00 7.91413 -169.881 -7.91413 7.91413 0.89 0.000384037 0.000310574 0.022443 0.0184458 -1 -1 -1 -1 40 4049 34 6.79088e+06 296384 706193. 2443.58 23.60 0.241624 0.201674 26254 175826 -1 3376 17 1526 5025 290854 62800 6.88531 6.88531 -161.778 -6.88531 0 0 926341. 3205.33 0.34 0.08 0.15 -1 -1 0.34 0.0236884 0.0213646 162 239 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_036.v common 22.72 vpr 64.50 MiB 0.02 6900 -1 -1 13 0.39 -1 -1 36772 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66044 32 32 297 329 1 231 86 17 17 289 -1 unnamed_device 25.9 MiB 2.17 1407 5189 964 3994 231 64.5 MiB 0.05 0.00 7.75126 -170.514 -7.75126 7.75126 0.89 0.000331614 0.00025434 0.0131182 0.0109227 -1 -1 -1 -1 36 4220 25 6.79088e+06 296384 648988. 2245.63 16.79 0.18832 0.158376 25390 158009 -1 3295 32 1637 4718 469109 175653 6.56959 6.56959 -161.563 -6.56959 0 0 828058. 2865.25 0.32 0.15 0.14 -1 -1 0.32 0.0360825 0.0320742 152 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_037.v common 12.16 vpr 63.59 MiB 0.02 6784 -1 -1 12 0.18 -1 -1 36484 -1 -1 17 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65116 31 32 234 266 1 168 80 17 17 289 -1 unnamed_device 25.1 MiB 1.70 1010 12120 3866 6542 1712 63.6 MiB 0.08 0.00 7.15698 -154.751 -7.15698 7.15698 0.89 0.000243139 0.000194184 0.0210091 0.0171519 -1 -1 -1 -1 34 2897 30 6.79088e+06 229024 618332. 2139.56 7.10 0.135005 0.112578 25102 150614 -1 2394 33 1083 3002 373772 176672 6.11878 6.11878 -147.893 -6.11878 0 0 787024. 2723.27 0.30 0.11 0.13 -1 -1 0.30 0.0215378 0.0188438 101 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_038.v common 7.89 vpr 63.47 MiB 0.02 7124 -1 -1 12 0.32 -1 -1 36464 -1 -1 23 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64992 31 32 310 342 1 219 86 17 17 289 -1 unnamed_device 24.6 MiB 1.53 1328 10103 2679 5328 2096 63.5 MiB 0.08 0.00 7.74608 -158.655 -7.74608 7.74608 0.86 0.000303147 0.00024012 0.0202549 0.0165707 -1 -1 -1 -1 38 3982 35 6.79088e+06 309856 678818. 2348.85 2.72 0.108159 0.0909047 25966 169698 -1 2979 24 1681 5421 388271 112820 6.67037 6.67037 -150.571 -6.67037 0 0 902133. 3121.57 0.37 0.12 0.15 -1 -1 0.37 0.0299264 0.0266798 147 219 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_039.v common 6.66 vpr 64.30 MiB 0.02 6948 -1 -1 14 0.42 -1 -1 37068 -1 -1 21 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65844 31 32 284 316 1 221 84 17 17 289 -1 unnamed_device 25.6 MiB 1.15 1297 8685 2245 5606 834 64.3 MiB 0.07 0.00 8.14173 -172.752 -8.14173 8.14173 0.90 0.000290529 0.000230585 0.0181468 0.0149089 -1 -1 -1 -1 36 3720 49 6.79088e+06 282912 648988. 2245.63 1.94 0.104651 0.0882908 25390 158009 -1 3003 16 1380 3616 216647 49169 7.30933 7.30933 -165.167 -7.30933 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0208765 0.0189705 146 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_040.v common 8.08 vpr 64.20 MiB 0.02 7112 -1 -1 13 0.32 -1 -1 36936 -1 -1 21 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65740 31 32 271 303 1 212 84 17 17 289 -1 unnamed_device 25.3 MiB 2.46 1240 3927 707 3012 208 64.2 MiB 0.04 0.00 7.84876 -163.832 -7.84876 7.84876 0.87 0.000272143 0.000216917 0.00923214 0.00782803 -1 -1 -1 -1 34 3796 39 6.79088e+06 282912 618332. 2139.56 2.31 0.103697 0.0872416 25102 150614 -1 2888 21 1507 4032 231225 51401 7.21082 7.21082 -164.411 -7.21082 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0210337 0.0187229 123 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_041.v common 7.14 vpr 64.21 MiB 0.02 6944 -1 -1 12 0.32 -1 -1 36532 -1 -1 24 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65752 31 32 280 312 1 206 87 17 17 289 -1 unnamed_device 25.3 MiB 1.16 1307 8919 1981 5570 1368 64.2 MiB 0.07 0.00 7.76747 -159.708 -7.76747 7.76747 0.90 0.000288923 0.000227705 0.0168219 0.0138589 -1 -1 -1 -1 38 3449 45 6.79088e+06 323328 678818. 2348.85 2.44 0.101093 0.0848487 25966 169698 -1 2722 15 1207 3747 200375 43893 6.50936 6.50936 -150.647 -6.50936 0 0 902133. 3121.57 0.34 0.06 0.14 -1 -1 0.34 0.0196236 0.0178326 136 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_042.v common 8.82 vpr 64.12 MiB 0.02 7012 -1 -1 12 0.24 -1 -1 36412 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65664 32 32 264 296 1 188 80 17 17 289 -1 unnamed_device 25.2 MiB 1.25 1094 7992 2062 5514 416 64.1 MiB 0.06 0.00 7.00518 -141.287 -7.00518 7.00518 0.91 0.000256523 0.000203998 0.0152114 0.0124496 -1 -1 -1 -1 36 3178 27 6.79088e+06 215552 648988. 2245.63 4.07 0.124994 0.104431 25390 158009 -1 2550 22 1191 3311 194671 42735 6.16563 6.16563 -139.269 -6.16563 0 0 828058. 2865.25 0.32 0.06 0.14 -1 -1 0.32 0.0200176 0.0177618 113 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_043.v common 23.53 vpr 64.57 MiB 0.03 7304 -1 -1 14 0.56 -1 -1 36536 -1 -1 25 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66120 32 32 339 371 1 252 89 17 17 289 -1 unnamed_device 25.8 MiB 1.72 1495 9989 2553 6051 1385 64.6 MiB 0.08 0.00 8.47579 -179.629 -8.47579 8.47579 0.88 0.00034431 0.000274409 0.0216975 0.0179462 -1 -1 -1 -1 40 3758 18 6.79088e+06 336800 706193. 2443.58 17.95 0.226734 0.190001 26254 175826 -1 3424 17 1639 4844 279810 62053 7.63716 7.63716 -171.992 -7.63716 0 0 926341. 3205.33 0.34 0.08 0.15 -1 -1 0.34 0.0250954 0.022698 169 245 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_044.v common 7.59 vpr 64.15 MiB 0.02 6940 -1 -1 11 0.24 -1 -1 36020 -1 -1 19 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65688 31 32 246 278 1 185 82 17 17 289 -1 unnamed_device 25.1 MiB 2.34 985 6312 1275 4627 410 64.1 MiB 0.05 0.00 6.61647 -138.059 -6.61647 6.61647 0.90 0.00025079 0.000199892 0.0124017 0.0102441 -1 -1 -1 -1 36 2824 20 6.79088e+06 255968 648988. 2245.63 1.83 0.0833014 0.0700701 25390 158009 -1 2491 17 1266 3435 214833 47765 5.69776 5.69776 -135.012 -5.69776 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0175856 0.0157955 112 155 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_045.v common 13.10 vpr 64.07 MiB 0.02 7092 -1 -1 13 0.34 -1 -1 36684 -1 -1 21 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65612 31 32 268 300 1 191 84 17 17 289 -1 unnamed_device 25.2 MiB 1.55 1103 6672 1409 4884 379 64.1 MiB 0.05 0.00 7.76492 -151.455 -7.76492 7.76492 0.93 0.000308883 0.000248076 0.0138768 0.0114707 -1 -1 -1 -1 32 3359 27 6.79088e+06 282912 586450. 2029.24 8.04 0.150047 0.12611 24814 144142 -1 2622 15 1219 3583 213401 47801 6.83836 6.83836 -148.988 -6.83836 0 0 744469. 2576.02 0.29 0.06 0.12 -1 -1 0.29 0.0173653 0.0156909 133 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_046.v common 22.40 vpr 64.17 MiB 0.02 7124 -1 -1 12 0.32 -1 -1 36668 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65712 32 32 318 350 1 217 86 17 17 289 -1 unnamed_device 25.5 MiB 2.07 1395 9914 2739 6272 903 64.2 MiB 0.08 0.00 6.98394 -154.333 -6.98394 6.98394 0.94 0.000314893 0.000249583 0.0210216 0.0170161 -1 -1 -1 -1 40 3542 27 6.79088e+06 296384 706193. 2443.58 16.75 0.188497 0.157169 26254 175826 -1 3190 19 1561 5025 297786 63431 6.25173 6.25173 -151.727 -6.25173 0 0 926341. 3205.33 0.33 0.09 0.16 -1 -1 0.33 0.0258404 0.0231305 153 224 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_047.v common 7.44 vpr 64.11 MiB 0.02 6824 -1 -1 13 0.29 -1 -1 36576 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65644 32 32 273 305 1 202 82 17 17 289 -1 unnamed_device 25.3 MiB 1.32 1171 11652 3648 5835 2169 64.1 MiB 0.08 0.00 7.49071 -158.776 -7.49071 7.49071 0.91 0.000286907 0.000228268 0.0230425 0.0187492 -1 -1 -1 -1 36 3477 43 6.79088e+06 242496 648988. 2245.63 2.58 0.121287 0.101474 25390 158009 -1 2742 18 1430 4040 245807 54432 6.66688 6.66688 -151.628 -6.66688 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0200941 0.0180174 127 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_048.v common 15.20 vpr 64.17 MiB 0.02 7176 -1 -1 13 0.28 -1 -1 36652 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65712 32 32 269 301 1 197 81 17 17 289 -1 unnamed_device 25.3 MiB 2.46 1211 10406 2769 5511 2126 64.2 MiB 0.07 0.00 7.74736 -164.869 -7.74736 7.74736 0.89 0.000302902 0.000246404 0.01968 0.0160475 -1 -1 -1 -1 30 3499 50 6.79088e+06 229024 556674. 1926.21 9.21 0.161336 0.134556 24526 138013 -1 2740 34 1363 4079 455158 184815 6.79562 6.79562 -162.186 -6.79562 0 0 706193. 2443.58 0.28 0.14 0.12 -1 -1 0.28 0.0274123 0.023797 117 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_049.v common 13.35 vpr 64.41 MiB 0.02 7172 -1 -1 12 0.34 -1 -1 36952 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65956 32 32 298 330 1 217 86 17 17 289 -1 unnamed_device 25.8 MiB 2.40 1253 10103 2754 6868 481 64.4 MiB 0.08 0.00 7.26657 -159.313 -7.26657 7.26657 0.88 0.000316976 0.000252951 0.0214291 0.0175945 -1 -1 -1 -1 34 3795 36 6.79088e+06 296384 618332. 2139.56 7.24 0.187798 0.157667 25102 150614 -1 3030 25 1509 4818 413691 135545 6.39287 6.39287 -156.446 -6.39287 0 0 787024. 2723.27 0.31 0.13 0.14 -1 -1 0.31 0.0293419 0.0262336 148 204 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_050.v common 10.53 vpr 64.27 MiB 0.02 7052 -1 -1 13 0.34 -1 -1 36524 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65808 32 32 299 331 1 227 84 17 17 289 -1 unnamed_device 25.5 MiB 2.33 1384 13626 3889 7379 2358 64.3 MiB 0.14 0.00 7.75522 -164.387 -7.75522 7.75522 0.87 0.000318017 0.000253336 0.0384668 0.031498 -1 -1 -1 -1 38 3626 49 6.79088e+06 269440 678818. 2348.85 4.66 0.188774 0.157015 25966 169698 -1 2980 16 1491 4007 207819 46956 6.63117 6.63117 -157.111 -6.63117 0 0 902133. 3121.57 0.33 0.07 0.15 -1 -1 0.33 0.0219013 0.0197893 143 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_051.v common 8.22 vpr 63.95 MiB 0.02 7108 -1 -1 14 0.37 -1 -1 36684 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65484 32 32 259 291 1 197 81 17 17 289 -1 unnamed_device 25.3 MiB 2.29 1098 13031 4343 6238 2450 63.9 MiB 0.09 0.00 7.86406 -162.706 -7.86406 7.86406 0.91 0.000291534 0.00021553 0.0247579 0.0201658 -1 -1 -1 -1 36 3579 44 6.79088e+06 229024 648988. 2245.63 2.20 0.10157 0.0845509 25390 158009 -1 2782 17 1282 3700 252833 56138 7.04294 7.04294 -162.195 -7.04294 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0183872 0.0165505 121 165 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_052.v common 11.50 vpr 64.25 MiB 0.02 7120 -1 -1 13 0.34 -1 -1 36756 -1 -1 19 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65788 32 32 293 325 1 216 83 17 17 289 -1 unnamed_device 25.5 MiB 3.10 1258 11603 3424 7189 990 64.2 MiB 0.09 0.00 7.85103 -161.777 -7.85103 7.85103 0.87 0.000298837 0.000236999 0.0234135 0.0191642 -1 -1 -1 -1 38 3512 48 6.79088e+06 255968 678818. 2348.85 4.80 0.15307 0.128049 25966 169698 -1 2917 19 1461 3840 212567 47493 6.75658 6.75658 -157.662 -6.75658 0 0 902133. 3121.57 0.33 0.07 0.15 -1 -1 0.33 0.021427 0.0192214 132 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_053.v common 8.67 vpr 64.26 MiB 0.02 7144 -1 -1 13 0.38 -1 -1 37348 -1 -1 24 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65800 31 32 311 343 1 237 87 17 17 289 -1 unnamed_device 25.5 MiB 1.43 1359 6039 1148 4687 204 64.3 MiB 0.06 0.00 8.38958 -177.102 -8.38958 8.38958 0.88 0.000311022 0.000247006 0.0138214 0.011499 -1 -1 -1 -1 40 3561 50 6.79088e+06 323328 706193. 2443.58 3.61 0.130918 0.10955 26254 175826 -1 2989 17 1504 4264 244810 55147 7.38651 7.38651 -164.727 -7.38651 0 0 926341. 3205.33 0.34 0.07 0.14 -1 -1 0.34 0.0220493 0.0198259 153 220 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_054.v common 7.93 vpr 64.45 MiB 0.02 7092 -1 -1 12 0.38 -1 -1 36356 -1 -1 23 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66000 32 32 324 356 1 234 87 17 17 289 -1 unnamed_device 25.6 MiB 1.72 1296 5655 1121 4085 449 64.5 MiB 0.05 0.00 7.82193 -168.395 -7.82193 7.82193 0.86 0.000318506 0.000253071 0.0129588 0.0107261 -1 -1 -1 -1 42 3729 40 6.79088e+06 309856 744469. 2576.02 2.63 0.115252 0.0976484 26542 182613 -1 2927 18 1420 4023 215515 49923 7.04206 7.04206 -163.588 -7.04206 0 0 949917. 3286.91 0.36 0.07 0.16 -1 -1 0.36 0.0227975 0.0205157 157 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_055.v common 7.16 vpr 63.71 MiB 0.02 6736 -1 -1 11 0.17 -1 -1 36168 -1 -1 12 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 216 248 1 163 76 17 17 289 -1 unnamed_device 24.9 MiB 1.88 1043 3916 875 2751 290 63.7 MiB 0.06 0.00 6.0933 -143.487 -6.0933 6.0933 0.89 0.000375186 0.000301933 0.0145984 0.0108334 -1 -1 -1 -1 38 2848 44 6.79088e+06 161664 678818. 2348.85 1.89 0.0751377 0.0617952 25966 169698 -1 2203 15 991 2635 147065 32965 5.34881 5.34881 -138.493 -5.34881 0 0 902133. 3121.57 0.33 0.05 0.15 -1 -1 0.33 0.0129236 0.0116404 89 122 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_056.v common 13.25 vpr 63.91 MiB 0.02 6920 -1 -1 13 0.24 -1 -1 36372 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65448 32 32 245 277 1 190 82 17 17 289 -1 unnamed_device 25.2 MiB 2.90 1095 12364 3770 6848 1746 63.9 MiB 0.08 0.00 7.93371 -169.518 -7.93371 7.93371 0.87 0.000259767 0.000209746 0.0207869 0.0170084 -1 -1 -1 -1 34 3258 23 6.79088e+06 242496 618332. 2139.56 6.99 0.145945 0.121644 25102 150614 -1 2628 16 1164 3001 179437 40724 6.78808 6.78808 -160.795 -6.78808 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0166567 0.0150567 113 151 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_057.v common 10.21 vpr 64.86 MiB 0.04 7132 -1 -1 14 0.54 -1 -1 37016 -1 -1 26 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66412 32 32 361 393 1 262 90 17 17 289 -1 unnamed_device 26.0 MiB 1.30 1580 9939 2278 6564 1097 64.9 MiB 0.09 0.00 8.73511 -184.809 -8.73511 8.73511 0.87 0.000492958 0.00040974 0.0231514 0.0188924 -1 -1 -1 -1 40 4136 33 6.79088e+06 350272 706193. 2443.58 5.11 0.225388 0.189664 26254 175826 -1 3767 19 2074 6040 360692 77318 7.71202 7.71202 -177.141 -7.71202 0 0 926341. 3205.33 0.35 0.10 0.16 -1 -1 0.35 0.0274367 0.0245196 180 267 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_058.v common 9.12 vpr 64.58 MiB 0.02 7020 -1 -1 13 0.41 -1 -1 36336 -1 -1 23 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66128 32 32 318 350 1 243 87 17 17 289 -1 unnamed_device 25.6 MiB 2.55 1387 12759 4109 6459 2191 64.6 MiB 0.10 0.00 8.53765 -182.928 -8.53765 8.53765 0.89 0.000334205 0.000266604 0.0265767 0.021601 -1 -1 -1 -1 50 3099 22 6.79088e+06 309856 902133. 3121.57 2.68 0.120044 0.100465 27982 213445 -1 2850 15 1323 3794 219330 47910 7.3431 7.3431 -167.816 -7.3431 0 0 1.08113e+06 3740.92 0.41 0.07 0.19 -1 -1 0.41 0.0237585 0.0216154 154 224 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_059.v common 8.99 vpr 63.76 MiB 0.02 6824 -1 -1 11 0.21 -1 -1 36580 -1 -1 16 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65288 30 32 223 255 1 163 78 17 17 289 -1 unnamed_device 25.2 MiB 0.90 950 4228 865 3108 255 63.8 MiB 0.04 0.00 6.81683 -144.823 -6.81683 6.81683 0.87 0.000227835 0.000181674 0.00873564 0.00729317 -1 -1 -1 -1 34 2634 47 6.79088e+06 215552 618332. 2139.56 4.86 0.134881 0.113274 25102 150614 -1 2137 15 876 2451 136388 31157 5.99343 5.99343 -141.319 -5.99343 0 0 787024. 2723.27 0.30 0.04 0.13 -1 -1 0.30 0.0136031 0.0122784 100 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_060.v common 7.90 vpr 64.55 MiB 0.02 7248 -1 -1 15 0.56 -1 -1 36680 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66100 32 32 335 367 1 245 86 17 17 289 -1 unnamed_device 25.6 MiB 1.29 1418 9347 2334 6216 797 64.6 MiB 0.08 0.00 9.383 -186.155 -9.383 9.383 0.90 0.000348458 0.000278249 0.0219356 0.0180817 -1 -1 -1 -1 44 3872 34 6.79088e+06 296384 787024. 2723.27 2.66 0.128361 0.107617 27118 194962 -1 3280 20 1689 5227 406693 124184 8.22796 8.22796 -178.75 -8.22796 0 0 997811. 3452.63 0.38 0.12 0.17 -1 -1 0.38 0.0269652 0.0240542 169 241 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_061.v common 9.27 vpr 64.34 MiB 0.03 7088 -1 -1 13 0.39 -1 -1 36828 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65884 32 32 301 333 1 220 85 17 17 289 -1 unnamed_device 25.6 MiB 1.26 1389 12175 3278 6674 2223 64.3 MiB 0.09 0.00 8.13964 -175.769 -8.13964 8.13964 0.88 0.000317005 0.000252755 0.0250509 0.0205482 -1 -1 -1 -1 40 3215 19 6.79088e+06 282912 706193. 2443.58 4.35 0.134458 0.111735 26254 175826 -1 3003 17 1371 3962 215669 49138 6.93221 6.93221 -163.236 -6.93221 0 0 926341. 3205.33 0.34 0.07 0.15 -1 -1 0.34 0.0221914 0.0200855 148 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_062.v common 6.52 vpr 63.67 MiB 0.02 6696 -1 -1 11 0.16 -1 -1 36248 -1 -1 14 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65200 32 32 238 270 1 173 78 17 17 289 -1 unnamed_device 25.2 MiB 1.57 1055 3564 650 2743 171 63.7 MiB 0.03 0.00 6.25754 -138.513 -6.25754 6.25754 0.88 0.000229114 0.0001781 0.00772179 0.00648799 -1 -1 -1 -1 32 2841 37 6.79088e+06 188608 586450. 2029.24 1.69 0.0714834 0.0600898 24814 144142 -1 2317 20 1069 2717 159536 36567 5.70008 5.70008 -138.79 -5.70008 0 0 744469. 2576.02 0.32 0.05 0.14 -1 -1 0.32 0.01659 0.0147994 94 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_063.v common 9.90 vpr 64.91 MiB 0.03 7164 -1 -1 12 0.39 -1 -1 36564 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66464 32 32 308 340 1 225 85 17 17 289 -1 unnamed_device 25.9 MiB 1.85 1368 11803 3261 7113 1429 64.9 MiB 0.09 0.00 7.45229 -159.724 -7.45229 7.45229 0.88 0.000311743 0.000248169 0.0242835 0.0196964 -1 -1 -1 -1 40 3269 23 6.79088e+06 282912 706193. 2443.58 4.34 0.145667 0.121129 26254 175826 -1 2880 17 1370 4253 231563 51818 6.66688 6.66688 -154.2 -6.66688 0 0 926341. 3205.33 0.35 0.07 0.16 -1 -1 0.35 0.0223783 0.0202384 150 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_064.v common 8.01 vpr 63.91 MiB 0.02 6716 -1 -1 12 0.26 -1 -1 36576 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65444 32 32 253 285 1 191 80 17 17 289 -1 unnamed_device 25.0 MiB 2.18 1080 10228 3462 4696 2070 63.9 MiB 0.09 0.00 7.21243 -157.214 -7.21243 7.21243 0.91 0.000420742 0.000330556 0.0241733 0.0195621 -1 -1 -1 -1 44 3012 31 6.79088e+06 215552 787024. 2723.27 2.19 0.0900679 0.0749255 27118 194962 -1 2404 16 1153 3185 186563 41264 6.36938 6.36938 -144.695 -6.36938 0 0 997811. 3452.63 0.37 0.06 0.18 -1 -1 0.37 0.0188647 0.0170461 115 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_065.v common 12.59 vpr 63.77 MiB 0.02 6828 -1 -1 12 0.23 -1 -1 36272 -1 -1 18 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65296 30 32 227 259 1 162 80 17 17 289 -1 unnamed_device 25.0 MiB 1.56 791 10056 4124 5675 257 63.8 MiB 0.07 0.00 7.72482 -150.805 -7.72482 7.72482 0.89 0.00023673 0.000187628 0.0176743 0.0144968 -1 -1 -1 -1 36 2337 30 6.79088e+06 242496 648988. 2245.63 7.65 0.147078 0.122942 25390 158009 -1 1812 23 894 2474 158438 48186 6.41556 6.41556 -138.443 -6.41556 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0175326 0.0155494 104 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_066.v common 15.47 vpr 64.28 MiB 0.02 7192 -1 -1 12 0.37 -1 -1 36536 -1 -1 23 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65824 29 32 292 324 1 204 84 17 17 289 -1 unnamed_device 25.3 MiB 1.58 1171 7770 1823 5388 559 64.3 MiB 0.06 0.00 7.44007 -144.714 -7.44007 7.44007 0.88 0.000306589 0.000237404 0.0174001 0.0141857 -1 -1 -1 -1 36 3128 41 6.79088e+06 309856 648988. 2245.63 10.27 0.187872 0.157502 25390 158009 -1 2837 19 1327 4134 243101 54458 6.38057 6.38057 -136.671 -6.38057 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0227565 0.0203699 143 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_067.v common 7.93 vpr 64.46 MiB 0.02 6928 -1 -1 14 0.40 -1 -1 36552 -1 -1 23 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66008 32 32 316 348 1 251 87 17 17 289 -1 unnamed_device 25.6 MiB 2.22 1358 11991 3231 7336 1424 64.5 MiB 0.09 0.00 8.37027 -173.793 -8.37027 8.37027 0.90 0.000317465 0.000250465 0.0243403 0.0197908 -1 -1 -1 -1 42 3547 22 6.79088e+06 309856 744469. 2576.02 1.94 0.099698 0.0833626 26542 182613 -1 2983 34 1567 3988 480743 227270 7.59802 7.59802 -167.835 -7.59802 0 0 949917. 3286.91 0.35 0.15 0.16 -1 -1 0.35 0.0323789 0.0283489 156 222 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_068.v common 7.31 vpr 64.11 MiB 0.02 7124 -1 -1 12 0.30 -1 -1 36376 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65648 32 32 286 318 1 205 84 17 17 289 -1 unnamed_device 25.2 MiB 1.34 1181 13626 4881 7118 1627 64.1 MiB 0.09 0.00 7.33267 -159.572 -7.33267 7.33267 0.92 0.000285245 0.000225964 0.0259547 0.0211498 -1 -1 -1 -1 38 3369 43 6.79088e+06 269440 678818. 2348.85 2.43 0.129164 0.108287 25966 169698 -1 2617 20 1371 4202 228517 52071 6.29791 6.29791 -150.527 -6.29791 0 0 902133. 3121.57 0.33 0.07 0.15 -1 -1 0.33 0.021923 0.0196561 135 192 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_069.v common 6.54 vpr 64.07 MiB 0.02 6864 -1 -1 12 0.17 -1 -1 36224 -1 -1 14 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65612 32 32 221 253 1 164 78 17 17 289 -1 unnamed_device 25.1 MiB 1.74 1009 7880 2123 5261 496 64.1 MiB 0.06 0.00 7.26363 -149.543 -7.26363 7.26363 0.88 0.000219611 0.000175077 0.0140951 0.0115947 -1 -1 -1 -1 30 2543 27 6.79088e+06 188608 556674. 1926.21 1.44 0.057444 0.0484219 24526 138013 -1 2104 27 885 2401 307230 150179 6.29447 6.29447 -143.607 -6.29447 0 0 706193. 2443.58 0.27 0.10 0.12 -1 -1 0.27 0.0192985 0.0171162 94 127 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_070.v common 12.13 vpr 64.03 MiB 0.02 7012 -1 -1 12 0.29 -1 -1 36268 -1 -1 18 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65564 31 32 261 293 1 192 81 17 17 289 -1 unnamed_device 25.3 MiB 2.23 970 11981 3535 6635 1811 64.0 MiB 0.08 0.00 7.26019 -151.005 -7.26019 7.26019 0.89 0.000278578 0.000217203 0.0214551 0.0170961 -1 -1 -1 -1 34 3218 30 6.79088e+06 242496 618332. 2139.56 6.47 0.145629 0.120915 25102 150614 -1 2444 20 1283 3227 193365 44817 6.54158 6.54158 -150.869 -6.54158 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0203683 0.0182435 114 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_071.v common 8.24 vpr 64.16 MiB 0.02 7084 -1 -1 11 0.24 -1 -1 36424 -1 -1 21 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65704 30 32 277 309 1 201 83 17 17 289 -1 unnamed_device 25.4 MiB 2.61 1239 12863 3849 7065 1949 64.2 MiB 0.09 0.00 6.65488 -140.894 -6.65488 6.65488 0.87 0.000278724 0.000220239 0.023838 0.0193339 -1 -1 -1 -1 34 3678 21 6.79088e+06 282912 618332. 2139.56 2.18 0.0900054 0.0745985 25102 150614 -1 3034 21 1549 4854 326751 68879 6.16557 6.16557 -144.344 -6.16557 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0210797 0.0186765 129 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_072.v common 11.21 vpr 64.07 MiB 0.02 6940 -1 -1 11 0.25 -1 -1 36836 -1 -1 22 28 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65604 28 32 251 283 1 186 82 17 17 289 -1 unnamed_device 25.1 MiB 1.31 1136 10940 2806 6659 1475 64.1 MiB 0.07 0.00 6.63358 -127.166 -6.63358 6.63358 0.88 0.000266399 0.000213603 0.0197382 0.0162333 -1 -1 -1 -1 30 3283 39 6.79088e+06 296384 556674. 1926.21 6.57 0.146151 0.12236 24526 138013 -1 2631 18 1274 3827 202462 44900 5.66443 5.66443 -122.067 -5.66443 0 0 706193. 2443.58 0.28 0.07 0.12 -1 -1 0.28 0.019634 0.017629 124 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_073.v common 8.20 vpr 63.82 MiB 0.02 6824 -1 -1 13 0.25 -1 -1 36492 -1 -1 16 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65356 30 32 223 255 1 172 78 17 17 289 -1 unnamed_device 24.9 MiB 3.29 1046 11366 3047 7165 1154 63.8 MiB 0.07 0.00 7.34113 -146.72 -7.34113 7.34113 0.86 0.000222609 0.00017658 0.0183287 0.0149078 -1 -1 -1 -1 34 3067 32 6.79088e+06 215552 618332. 2139.56 1.59 0.0723596 0.0600937 25102 150614 -1 2321 15 934 2327 137143 31652 6.28328 6.28328 -139.265 -6.28328 0 0 787024. 2723.27 0.31 0.05 0.13 -1 -1 0.31 0.014963 0.0135817 104 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_074.v common 13.74 vpr 63.89 MiB 0.02 6944 -1 -1 12 0.23 -1 -1 36208 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65424 32 32 269 301 1 195 82 17 17 289 -1 unnamed_device 25.2 MiB 2.59 1049 6312 1392 4796 124 63.9 MiB 0.05 0.00 7.21638 -157.877 -7.21638 7.21638 0.87 0.000278021 0.000210518 0.0128508 0.0105984 -1 -1 -1 -1 34 3608 49 6.79088e+06 242496 618332. 2139.56 7.75 0.1527 0.127282 25102 150614 -1 2692 18 1193 3186 195216 44227 6.53388 6.53388 -156.883 -6.53388 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.023041 0.0208361 123 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_075.v common 7.26 vpr 64.51 MiB 0.03 6944 -1 -1 13 0.32 -1 -1 36404 -1 -1 20 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66060 31 32 283 315 1 194 83 17 17 289 -1 unnamed_device 25.4 MiB 1.79 1163 8363 2308 5491 564 64.5 MiB 0.06 0.00 8.4499 -169.768 -8.4499 8.4499 0.89 0.000296363 0.000236067 0.0174402 0.0143838 -1 -1 -1 -1 36 2986 25 6.79088e+06 269440 648988. 2245.63 1.90 0.10064 0.0843844 25390 158009 -1 2584 17 1111 3170 187949 41178 7.3508 7.3508 -160.132 -7.3508 0 0 828058. 2865.25 0.35 0.06 0.14 -1 -1 0.35 0.0216358 0.0195723 136 192 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_076.v common 17.76 vpr 64.49 MiB 0.02 6972 -1 -1 14 0.35 -1 -1 36880 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66040 32 32 308 340 1 227 85 17 17 289 -1 unnamed_device 25.7 MiB 1.28 1318 10501 2502 6272 1727 64.5 MiB 0.08 0.00 8.44735 -181.143 -8.44735 8.44735 0.88 0.000329293 0.000262776 0.0227193 0.0187122 -1 -1 -1 -1 36 3760 49 6.79088e+06 282912 648988. 2245.63 12.71 0.198865 0.166541 25390 158009 -1 3024 31 1413 4096 437761 172247 7.22212 7.22212 -169.842 -7.22212 0 0 828058. 2865.25 0.34 0.14 0.14 -1 -1 0.34 0.0321003 0.0283346 149 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_077.v common 8.15 vpr 64.12 MiB 0.02 7076 -1 -1 14 0.32 -1 -1 36824 -1 -1 19 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65664 32 32 277 309 1 207 83 17 17 289 -1 unnamed_device 25.5 MiB 2.04 1302 10523 2982 6549 992 64.1 MiB 0.08 0.00 8.02237 -162.142 -8.02237 8.02237 0.91 0.0002804 0.0002227 0.0207057 0.0168546 -1 -1 -1 -1 36 3582 21 6.79088e+06 255968 648988. 2245.63 2.54 0.0996355 0.0829999 25390 158009 -1 3066 19 1371 4195 265838 56925 6.87761 6.87761 -152.311 -6.87761 0 0 828058. 2865.25 0.32 0.07 0.14 -1 -1 0.32 0.0208806 0.0187577 135 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_078.v common 8.16 vpr 64.14 MiB 0.02 6852 -1 -1 13 0.44 -1 -1 37168 -1 -1 19 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65680 32 32 288 320 1 209 83 17 17 289 -1 unnamed_device 25.5 MiB 2.43 1274 7823 1878 5189 756 64.1 MiB 0.06 0.00 8.3493 -170.918 -8.3493 8.3493 0.88 0.000299662 0.000237226 0.0164295 0.0134623 -1 -1 -1 -1 42 3226 19 6.79088e+06 255968 744469. 2576.02 2.00 0.0830524 0.0696674 26542 182613 -1 2695 17 1172 3218 191832 42367 7.39 7.39 -162.386 -7.39 0 0 949917. 3286.91 0.36 0.06 0.16 -1 -1 0.36 0.0209324 0.0188752 138 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_079.v common 8.86 vpr 63.56 MiB 0.02 6952 -1 -1 13 0.23 -1 -1 36364 -1 -1 16 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65088 30 32 230 262 1 176 78 17 17 289 -1 unnamed_device 25.0 MiB 1.71 995 8544 2304 5272 968 63.6 MiB 0.06 0.00 7.65272 -159.245 -7.65272 7.65272 0.88 0.000229502 0.000181348 0.0149404 0.0122585 -1 -1 -1 -1 36 2550 18 6.79088e+06 215552 648988. 2245.63 3.81 0.103086 0.0863914 25390 158009 -1 2169 15 965 2365 131366 30429 6.59662 6.59662 -147.791 -6.59662 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0172208 0.0156732 105 142 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_080.v common 8.47 vpr 64.21 MiB 0.03 7056 -1 -1 13 0.56 -1 -1 36404 -1 -1 21 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65756 30 32 294 326 1 222 83 17 17 289 -1 unnamed_device 25.5 MiB 1.58 1201 9803 2770 5401 1632 64.2 MiB 0.07 0.00 8.65832 -171.391 -8.65832 8.65832 0.87 0.000304043 0.000242594 0.0207822 0.0170666 -1 -1 -1 -1 36 3714 50 6.79088e+06 282912 648988. 2245.63 3.16 0.136307 0.11465 25390 158009 -1 2765 20 1531 3937 219350 51038 7.59016 7.59016 -164.006 -7.59016 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0227297 0.0203489 143 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_081.v common 19.30 vpr 64.07 MiB 0.02 7268 -1 -1 14 0.36 -1 -1 36248 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65608 32 32 276 308 1 207 82 17 17 289 -1 unnamed_device 25.2 MiB 2.18 1269 7914 1787 4968 1159 64.1 MiB 0.06 0.00 8.34378 -178.011 -8.34378 8.34378 0.88 0.000285784 0.000227942 0.0163809 0.0135352 -1 -1 -1 -1 34 3628 19 6.79088e+06 242496 618332. 2139.56 13.61 0.178854 0.150348 25102 150614 -1 2976 19 1326 3882 250950 54087 7.33961 7.33961 -173.505 -7.33961 0 0 787024. 2723.27 0.28 0.07 0.13 -1 -1 0.28 0.0190691 0.017063 132 182 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_082.v common 10.24 vpr 64.18 MiB 0.02 6992 -1 -1 12 0.31 -1 -1 36508 -1 -1 22 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65720 31 32 293 325 1 214 85 17 17 289 -1 unnamed_device 25.5 MiB 1.64 1315 6595 1620 4420 555 64.2 MiB 0.06 0.00 7.74227 -160.778 -7.74227 7.74227 0.89 0.000301145 0.000240952 0.0145415 0.0120414 -1 -1 -1 -1 42 3080 32 6.79088e+06 296384 744469. 2576.02 5.02 0.159539 0.133716 26542 182613 -1 2753 16 1232 3452 201558 44738 6.58771 6.58771 -149.781 -6.58771 0 0 949917. 3286.91 0.35 0.06 0.17 -1 -1 0.35 0.0192603 0.0173801 142 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_083.v common 16.21 vpr 63.98 MiB 0.02 7136 -1 -1 13 0.30 -1 -1 36420 -1 -1 20 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65512 30 32 273 305 1 203 82 17 17 289 -1 unnamed_device 25.4 MiB 2.11 1233 11118 2888 6638 1592 64.0 MiB 0.08 0.00 8.11861 -149.987 -8.11861 8.11861 0.88 0.000278829 0.000222432 0.0204569 0.0167034 -1 -1 -1 -1 34 3576 47 6.79088e+06 269440 618332. 2139.56 10.58 0.18373 0.15388 25102 150614 -1 2954 30 1355 3846 387845 136733 7.06981 7.06981 -145.007 -7.06981 0 0 787024. 2723.27 0.30 0.11 0.13 -1 -1 0.30 0.0251311 0.0221052 125 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_084.v common 7.51 vpr 64.38 MiB 0.03 6996 -1 -1 14 0.45 -1 -1 36660 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65920 32 32 310 342 1 235 85 17 17 289 -1 unnamed_device 25.6 MiB 1.59 1469 4735 854 3655 226 64.4 MiB 0.05 0.00 8.74175 -178.419 -8.74175 8.74175 0.87 0.00031667 0.000253105 0.0121444 0.0102153 -1 -1 -1 -1 42 3964 25 6.79088e+06 282912 744469. 2576.02 2.19 0.0963768 0.0811164 26542 182613 -1 3397 21 1619 4546 303206 64903 7.59027 7.59027 -170.401 -7.59027 0 0 949917. 3286.91 0.34 0.10 0.15 -1 -1 0.34 0.0277397 0.0245033 154 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_085.v common 7.07 vpr 63.95 MiB 0.02 6964 -1 -1 11 0.35 -1 -1 36428 -1 -1 22 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65480 29 32 259 291 1 193 83 17 17 289 -1 unnamed_device 25.1 MiB 1.51 1177 7283 1838 4377 1068 63.9 MiB 0.06 0.00 7.07557 -138.934 -7.07557 7.07557 0.93 0.000266937 0.000211615 0.0145066 0.0119189 -1 -1 -1 -1 36 3105 32 6.79088e+06 296384 648988. 2245.63 1.99 0.0870445 0.0737363 25390 158009 -1 2769 19 1344 4037 240367 53294 6.01343 6.01343 -131.583 -6.01343 0 0 828058. 2865.25 0.30 0.10 0.15 -1 -1 0.30 0.0258996 0.0231523 129 174 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_086.v common 9.29 vpr 64.00 MiB 0.02 6720 -1 -1 13 0.21 -1 -1 36368 -1 -1 14 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65540 32 32 225 257 1 182 78 17 17 289 -1 unnamed_device 25.1 MiB 3.37 911 7050 1390 5582 78 64.0 MiB 0.06 0.00 6.59519 -151.675 -6.59519 6.59519 0.87 0.000234119 0.00018582 0.0134236 0.011009 -1 -1 -1 -1 36 3182 32 6.79088e+06 188608 648988. 2245.63 2.56 0.0847805 0.0708283 25390 158009 -1 2418 17 1235 2925 203075 49488 6.07604 6.07604 -154.574 -6.07604 0 0 828058. 2865.25 0.33 0.06 0.15 -1 -1 0.33 0.0157046 0.0141047 99 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_087.v common 7.84 vpr 64.17 MiB 0.02 6972 -1 -1 14 0.27 -1 -1 36628 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65712 32 32 273 305 1 205 84 17 17 289 -1 unnamed_device 25.6 MiB 2.32 1241 6306 1411 4529 366 64.2 MiB 0.06 0.00 8.60394 -175.189 -8.60394 8.60394 0.88 0.000278709 0.000217239 0.0161748 0.0133773 -1 -1 -1 -1 38 3382 24 6.79088e+06 269440 678818. 2348.85 2.07 0.0958932 0.0814685 25966 169698 -1 2748 20 1311 3722 206989 45145 7.67637 7.67637 -167.595 -7.67637 0 0 902133. 3121.57 0.33 0.06 0.15 -1 -1 0.33 0.0198727 0.0177334 131 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_088.v common 10.64 vpr 64.78 MiB 0.02 7092 -1 -1 15 0.50 -1 -1 36620 -1 -1 23 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66332 32 32 322 354 1 240 87 17 17 289 -1 unnamed_device 25.9 MiB 2.34 1368 6807 1531 4801 475 64.8 MiB 0.06 0.00 8.72233 -187.92 -8.72233 8.72233 0.89 0.00035421 0.000284227 0.0160322 0.0133512 -1 -1 -1 -1 40 3624 19 6.79088e+06 309856 706193. 2443.58 4.50 0.146829 0.122659 26254 175826 -1 3205 19 1600 4335 246874 54934 7.71557 7.71557 -180.108 -7.71557 0 0 926341. 3205.33 0.35 0.08 0.16 -1 -1 0.35 0.0249969 0.0224447 156 228 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_089.v common 7.07 vpr 63.80 MiB 0.02 6892 -1 -1 11 0.21 -1 -1 35924 -1 -1 13 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65332 32 32 218 250 1 159 77 17 17 289 -1 unnamed_device 24.9 MiB 1.92 834 11324 4496 5941 887 63.8 MiB 0.07 0.00 6.16894 -130.904 -6.16894 6.16894 0.87 0.000210025 0.000165507 0.0174527 0.0141005 -1 -1 -1 -1 34 2649 25 6.79088e+06 175136 618332. 2139.56 1.89 0.0764866 0.0636114 25102 150614 -1 2117 18 986 2489 157064 36633 5.60285 5.60285 -128.056 -5.60285 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0150536 0.013401 90 124 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_090.v common 9.06 vpr 64.01 MiB 0.03 6784 -1 -1 12 0.25 -1 -1 36104 -1 -1 17 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65548 31 32 244 276 1 189 80 17 17 289 -1 unnamed_device 25.2 MiB 1.75 1138 11948 3630 6263 2055 64.0 MiB 0.07 0.00 7.22906 -153.908 -7.22906 7.22906 0.90 0.000242386 0.000191395 0.0205426 0.016695 -1 -1 -1 -1 44 2688 20 6.79088e+06 229024 787024. 2723.27 3.68 0.114799 0.0952564 27118 194962 -1 2381 16 1066 2784 154664 35480 6.21607 6.21607 -145.269 -6.21607 0 0 997811. 3452.63 0.38 0.06 0.17 -1 -1 0.38 0.0179855 0.0162505 113 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_091.v common 9.25 vpr 64.33 MiB 0.02 6912 -1 -1 12 0.37 -1 -1 36560 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65876 32 32 301 333 1 212 84 17 17 289 -1 unnamed_device 25.6 MiB 1.44 1283 9234 2131 6180 923 64.3 MiB 0.08 0.00 7.83424 -161.221 -7.83424 7.83424 0.87 0.000327366 0.000255667 0.0202182 0.0165557 -1 -1 -1 -1 40 2997 28 6.79088e+06 269440 706193. 2443.58 4.19 0.156838 0.130207 26254 175826 -1 2851 19 1285 3577 211283 47491 6.50161 6.50161 -150.722 -6.50161 0 0 926341. 3205.33 0.34 0.07 0.16 -1 -1 0.34 0.0224861 0.020179 145 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_092.v common 9.82 vpr 64.22 MiB 0.02 7112 -1 -1 12 0.30 -1 -1 36688 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65764 32 32 278 310 1 205 84 17 17 289 -1 unnamed_device 25.3 MiB 1.87 1296 12162 3251 6670 2241 64.2 MiB 0.09 0.00 7.48872 -156.2 -7.48872 7.48872 0.90 0.00029696 0.000239721 0.0239759 0.0196622 -1 -1 -1 -1 44 3083 21 6.79088e+06 269440 787024. 2723.27 4.24 0.141511 0.118298 27118 194962 -1 2729 17 1137 3563 203856 44929 6.66611 6.66611 -153.631 -6.66611 0 0 997811. 3452.63 0.37 0.07 0.17 -1 -1 0.37 0.0210857 0.0190826 132 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_093.v common 23.45 vpr 64.60 MiB 0.02 7168 -1 -1 14 0.57 -1 -1 36700 -1 -1 23 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66148 32 32 333 365 1 245 87 17 17 289 -1 unnamed_device 25.8 MiB 1.69 1405 6231 1275 4694 262 64.6 MiB 0.06 0.00 8.86727 -181.315 -8.86727 8.86727 0.88 0.00037667 0.000306626 0.0158748 0.0132701 -1 -1 -1 -1 38 4281 48 6.79088e+06 309856 678818. 2348.85 17.96 0.232781 0.195083 25966 169698 -1 3310 19 1752 5246 271822 61432 7.84441 7.84441 -174.355 -7.84441 0 0 902133. 3121.57 0.34 0.08 0.14 -1 -1 0.34 0.0258137 0.0230102 171 239 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_094.v common 9.99 vpr 64.13 MiB 0.02 7128 -1 -1 11 0.30 -1 -1 36540 -1 -1 21 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65668 30 32 261 293 1 193 83 17 17 289 -1 unnamed_device 25.3 MiB 1.89 1067 10883 3235 5860 1788 64.1 MiB 0.08 0.00 6.95332 -140.654 -6.95332 6.95332 0.99 0.000275581 0.00021909 0.0203409 0.0166471 -1 -1 -1 -1 40 2641 29 6.79088e+06 282912 706193. 2443.58 4.45 0.135375 0.113218 26254 175826 -1 2498 16 1212 3638 216309 47261 6.07953 6.07953 -136.016 -6.07953 0 0 926341. 3205.33 0.35 0.06 0.16 -1 -1 0.35 0.0185445 0.0167825 126 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_095.v common 5.70 vpr 63.66 MiB 0.02 6864 -1 -1 11 0.21 -1 -1 36152 -1 -1 19 27 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65192 27 32 217 249 1 155 78 17 17 289 -1 unnamed_device 25.0 MiB 1.33 867 6054 1411 4045 598 63.7 MiB 0.04 0.00 6.65261 -123.186 -6.65261 6.65261 0.87 0.000218178 0.000172971 0.0104522 0.00858902 -1 -1 -1 -1 30 2198 21 6.79088e+06 255968 556674. 1926.21 1.12 0.0543749 0.0462571 24526 138013 -1 1871 17 837 2389 118691 28308 5.69587 5.69587 -119.491 -5.69587 0 0 706193. 2443.58 0.27 0.04 0.12 -1 -1 0.27 0.0154042 0.0138764 101 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_096.v common 16.75 vpr 64.79 MiB 0.03 7236 -1 -1 13 0.53 -1 -1 36120 -1 -1 30 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66340 32 32 373 405 1 272 94 17 17 289 -1 unnamed_device 25.8 MiB 1.99 1561 9892 2394 6307 1191 64.8 MiB 0.09 0.00 8.32454 -165.585 -8.32454 8.32454 0.85 0.000407157 0.000318706 0.022763 0.0185151 -1 -1 -1 -1 36 5073 43 6.79088e+06 404160 648988. 2245.63 11.07 0.247231 0.20765 25390 158009 -1 4001 21 2388 7364 442615 95843 7.38995 7.38995 -162.585 -7.38995 0 0 828058. 2865.25 0.31 0.11 0.14 -1 -1 0.31 0.0295708 0.0263392 192 279 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_097.v common 15.28 vpr 63.95 MiB 0.02 7092 -1 -1 14 0.34 -1 -1 36760 -1 -1 20 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65480 31 32 269 301 1 199 83 17 17 289 -1 unnamed_device 25.2 MiB 1.49 1127 9803 2812 4976 2015 63.9 MiB 0.07 0.00 8.44959 -165.997 -8.44959 8.44959 0.86 0.000271953 0.000216231 0.0183123 0.0150601 -1 -1 -1 -1 34 3288 29 6.79088e+06 269440 618332. 2139.56 10.24 0.178175 0.14884 25102 150614 -1 2695 18 1285 3271 196185 44737 7.36316 7.36316 -162.863 -7.36316 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0198023 0.0178806 128 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_098.v common 8.14 vpr 64.05 MiB 0.02 7008 -1 -1 12 0.19 -1 -1 36172 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65588 32 32 228 260 1 187 81 17 17 289 -1 unnamed_device 25.3 MiB 2.04 998 12156 3597 6327 2232 64.1 MiB 0.08 0.00 7.48986 -163.034 -7.48986 7.48986 0.90 0.000240415 0.000190501 0.0199457 0.0163141 -1 -1 -1 -1 40 2863 24 6.79088e+06 229024 706193. 2443.58 2.60 0.0890649 0.0745074 26254 175826 -1 2549 17 1210 3160 202215 45704 6.45897 6.45897 -156.46 -6.45897 0 0 926341. 3205.33 0.33 0.06 0.18 -1 -1 0.33 0.0162979 0.0147182 108 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_099.v common 8.48 vpr 64.13 MiB 0.02 7076 -1 -1 13 0.38 -1 -1 36556 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65668 32 32 265 297 1 194 85 17 17 289 -1 unnamed_device 25.3 MiB 2.66 1114 13291 3899 6878 2514 64.1 MiB 0.09 0.00 7.73375 -156.711 -7.73375 7.73375 0.88 0.000274744 0.000219094 0.022987 0.0186685 -1 -1 -1 -1 36 3839 32 6.79088e+06 282912 648988. 2245.63 2.25 0.0980093 0.0821978 25390 158009 -1 2762 18 1323 3752 230814 51537 6.50587 6.50587 -149.125 -6.50587 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0184364 0.016486 127 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_100.v common 27.07 vpr 64.33 MiB 0.03 7104 -1 -1 13 0.38 -1 -1 37372 -1 -1 25 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65876 31 32 325 357 1 247 88 17 17 289 -1 unnamed_device 25.5 MiB 2.73 1417 14128 4699 7199 2230 64.3 MiB 0.10 0.00 7.42813 -162.414 -7.42813 7.42813 0.86 0.000340687 0.000265006 0.0285341 0.0229383 -1 -1 -1 -1 40 3929 47 6.79088e+06 336800 706193. 2443.58 20.71 0.270306 0.226696 26254 175826 -1 3360 22 1730 4779 291259 63855 6.35814 6.35814 -153.885 -6.35814 0 0 926341. 3205.33 0.34 0.09 0.15 -1 -1 0.34 0.0291815 0.0262253 160 234 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_101.v common 19.97 vpr 64.33 MiB 0.02 7144 -1 -1 11 0.29 -1 -1 36064 -1 -1 24 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65872 30 32 287 319 1 200 86 17 17 289 -1 unnamed_device 25.4 MiB 1.75 1324 10481 2347 6750 1384 64.3 MiB 0.07 0.00 6.90633 -138.839 -6.90633 6.90633 0.87 0.000285865 0.000226532 0.0197866 0.0161143 -1 -1 -1 -1 36 3589 48 6.79088e+06 323328 648988. 2245.63 14.67 0.195143 0.162832 25390 158009 -1 3188 20 1579 5209 368284 76847 6.03263 6.03263 -134.236 -6.03263 0 0 828058. 2865.25 0.31 0.09 0.14 -1 -1 0.31 0.0227929 0.0203172 141 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_102.v common 7.78 vpr 64.46 MiB 0.02 6920 -1 -1 15 0.41 -1 -1 36784 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66012 32 32 297 329 1 220 84 17 17 289 -1 unnamed_device 25.7 MiB 1.90 1295 4842 930 3801 111 64.5 MiB 0.05 0.00 9.14479 -188.086 -9.14479 9.14479 0.89 0.000297107 0.000235438 0.0122805 0.0102452 -1 -1 -1 -1 36 3859 48 6.79088e+06 269440 648988. 2245.63 2.26 0.107873 0.0910096 25390 158009 -1 3068 16 1363 3910 237289 53051 8.1923 8.1923 -179.919 -8.1923 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0207516 0.018736 141 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_103.v common 20.13 vpr 64.75 MiB 0.02 7068 -1 -1 13 0.39 -1 -1 36424 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66304 32 32 311 343 1 229 86 17 17 289 -1 unnamed_device 25.8 MiB 2.04 1415 13127 3697 7096 2334 64.8 MiB 0.10 0.00 8.52282 -182.05 -8.52282 8.52282 0.90 0.000331373 0.000263747 0.0278224 0.0227513 -1 -1 -1 -1 38 3951 46 6.79088e+06 296384 678818. 2348.85 14.38 0.228564 0.19162 25966 169698 -1 3117 17 1542 4792 262169 57497 7.2647 7.2647 -169.516 -7.2647 0 0 902133. 3121.57 0.36 0.07 0.15 -1 -1 0.36 0.0216808 0.0195211 152 217 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_104.v common 9.47 vpr 63.93 MiB 0.02 6956 -1 -1 12 0.24 -1 -1 35936 -1 -1 18 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65464 29 32 236 268 1 182 79 17 17 289 -1 unnamed_device 25.3 MiB 2.40 1021 11571 3236 6470 1865 63.9 MiB 0.07 0.00 7.64302 -156.881 -7.64302 7.64302 0.91 0.000230241 0.000182807 0.0186163 0.0151541 -1 -1 -1 -1 36 2658 19 6.79088e+06 242496 648988. 2245.63 3.70 0.102885 0.0855416 25390 158009 -1 2232 14 1048 2357 133533 31223 6.54856 6.54856 -147.842 -6.54856 0 0 828058. 2865.25 0.33 0.04 0.14 -1 -1 0.33 0.0141852 0.0128027 109 151 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_105.v common 7.60 vpr 63.60 MiB 0.02 6912 -1 -1 11 0.20 -1 -1 36244 -1 -1 15 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 231 263 1 178 79 17 17 289 -1 unnamed_device 25.0 MiB 2.12 1023 6332 1518 4556 258 63.6 MiB 0.05 0.00 6.49713 -143.113 -6.49713 6.49713 1.07 0.000232172 0.000184285 0.0115617 0.00961829 -1 -1 -1 -1 38 2992 28 6.79088e+06 202080 678818. 2348.85 1.93 0.0676111 0.05665 25966 169698 -1 2513 15 1109 2826 167365 36638 5.74277 5.74277 -145.519 -5.74277 0 0 902133. 3121.57 0.33 0.05 0.17 -1 -1 0.33 0.0139112 0.0125395 99 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_106.v common 7.79 vpr 64.39 MiB 0.02 7064 -1 -1 13 0.38 -1 -1 36888 -1 -1 21 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65936 31 32 294 326 1 211 84 17 17 289 -1 unnamed_device 25.7 MiB 1.33 1272 10515 2952 6532 1031 64.4 MiB 0.09 0.00 7.82626 -160.34 -7.82626 7.82626 0.92 0.000317927 0.000253375 0.025828 0.0211253 -1 -1 -1 -1 38 3390 44 6.79088e+06 282912 678818. 2348.85 2.82 0.129084 0.107557 25966 169698 -1 2700 30 1721 5629 516698 198644 7.04627 7.04627 -153.27 -7.04627 0 0 902133. 3121.57 0.32 0.14 0.15 -1 -1 0.32 0.0278954 0.0244798 143 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_107.v common 13.13 vpr 63.69 MiB 0.02 6960 -1 -1 10 0.21 -1 -1 35924 -1 -1 18 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65220 29 32 221 253 1 164 79 17 17 289 -1 unnamed_device 25.2 MiB 1.32 776 7346 1622 5412 312 63.7 MiB 0.05 0.00 6.08278 -120.96 -6.08278 6.08278 0.87 0.00023737 0.000191467 0.0126384 0.0104607 -1 -1 -1 -1 32 2582 30 6.79088e+06 242496 586450. 2029.24 8.58 0.128511 0.107991 24814 144142 -1 2021 18 1009 2682 155269 36726 5.48868 5.48868 -119.483 -5.48868 0 0 744469. 2576.02 0.29 0.05 0.13 -1 -1 0.29 0.0150967 0.0133607 98 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_108.v common 9.46 vpr 63.67 MiB 0.02 6884 -1 -1 14 0.23 -1 -1 36488 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65196 32 32 240 272 1 189 81 17 17 289 -1 unnamed_device 25.2 MiB 3.96 1029 11806 4319 6167 1320 63.7 MiB 0.08 0.00 7.85187 -165.875 -7.85187 7.85187 0.85 0.000246774 0.000195567 0.0193316 0.0156972 -1 -1 -1 -1 36 3231 39 6.79088e+06 229024 648988. 2245.63 2.21 0.0981315 0.0818628 25390 158009 -1 2501 19 1192 3087 193360 44205 7.08558 7.08558 -165.062 -7.08558 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0197787 0.017816 109 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_109.v common 8.97 vpr 64.25 MiB 0.02 6988 -1 -1 12 0.39 -1 -1 36824 -1 -1 22 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65788 31 32 292 324 1 206 85 17 17 289 -1 unnamed_device 25.5 MiB 1.39 1254 14965 4982 7682 2301 64.2 MiB 0.10 0.00 7.5794 -159.485 -7.5794 7.5794 0.83 0.000294324 0.000233549 0.028107 0.0227013 -1 -1 -1 -1 38 3166 19 6.79088e+06 296384 678818. 2348.85 3.99 0.141318 0.116174 25966 169698 -1 2665 16 1266 3777 192146 43824 6.49812 6.49812 -148.788 -6.49812 0 0 902133. 3121.57 0.33 0.06 0.13 -1 -1 0.33 0.0202535 0.0183192 143 201 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_110.v common 7.92 vpr 63.70 MiB 0.02 6964 -1 -1 12 0.18 -1 -1 35940 -1 -1 18 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65232 31 32 229 261 1 179 81 17 17 289 -1 unnamed_device 25.1 MiB 2.78 927 11106 4587 6333 186 63.7 MiB 0.07 0.00 6.75629 -144.04 -6.75629 6.75629 0.89 0.00027566 0.000226218 0.0177906 0.0143979 -1 -1 -1 -1 42 2249 24 6.79088e+06 242496 744469. 2576.02 1.77 0.0763836 0.0638225 26542 182613 -1 1914 17 966 2199 115639 28568 6.06485 6.06485 -135.904 -6.06485 0 0 949917. 3286.91 0.41 0.04 0.16 -1 -1 0.41 0.0148395 0.0133561 102 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_111.v common 10.26 vpr 64.16 MiB 0.03 7156 -1 -1 12 0.24 -1 -1 36616 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65700 32 32 282 314 1 199 82 17 17 289 -1 unnamed_device 25.3 MiB 1.89 1110 8982 1987 6597 398 64.2 MiB 0.06 0.00 6.96264 -150.328 -6.96264 6.96264 0.87 0.000275979 0.000218862 0.0174687 0.0143016 -1 -1 -1 -1 46 2944 26 6.79088e+06 242496 828058. 2865.25 4.74 0.136304 0.113217 27406 200422 -1 2475 26 1165 3667 379621 149087 6.07958 6.07958 -143.184 -6.07958 0 0 1.01997e+06 3529.29 0.39 0.12 0.18 -1 -1 0.39 0.0255673 0.0226863 123 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_112.v common 10.17 vpr 63.93 MiB 0.02 7096 -1 -1 13 0.34 -1 -1 37104 -1 -1 20 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65464 31 32 269 301 1 204 83 17 17 289 -1 unnamed_device 25.1 MiB 2.41 1229 11063 3115 5831 2117 63.9 MiB 0.08 0.00 7.65152 -163.899 -7.65152 7.65152 0.88 0.000286644 0.000227378 0.0211838 0.0172618 -1 -1 -1 -1 44 2977 17 6.79088e+06 269440 787024. 2723.27 4.12 0.130753 0.108992 27118 194962 -1 2737 16 1222 3403 190256 42930 6.38062 6.38062 -151.422 -6.38062 0 0 997811. 3452.63 0.40 0.06 0.17 -1 -1 0.40 0.0185678 0.0167611 133 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_113.v common 15.35 vpr 63.66 MiB 0.02 6896 -1 -1 11 0.20 -1 -1 36300 -1 -1 15 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65188 32 32 237 269 1 189 79 17 17 289 -1 unnamed_device 25.1 MiB 1.61 1023 7684 1959 5380 345 63.7 MiB 0.06 0.00 7.18607 -145.746 -7.18607 7.18607 0.89 0.000239805 0.000191303 0.0147776 0.0120799 -1 -1 -1 -1 36 2960 27 6.79088e+06 202080 648988. 2245.63 10.27 0.14877 0.12439 25390 158009 -1 2625 28 1244 3189 307474 110390 6.12997 6.12997 -144.713 -6.12997 0 0 828058. 2865.25 0.33 0.10 0.15 -1 -1 0.33 0.0215253 0.0189099 106 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_114.v common 9.70 vpr 63.77 MiB 0.02 6936 -1 -1 13 0.25 -1 -1 36528 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65304 32 32 259 291 1 189 81 17 17 289 -1 unnamed_device 25.2 MiB 2.27 987 11981 4970 6906 105 63.8 MiB 0.08 0.00 7.69321 -163.299 -7.69321 7.69321 0.89 0.000255104 0.000201846 0.0212925 0.0173378 -1 -1 -1 -1 42 2573 15 6.79088e+06 229024 744469. 2576.02 3.84 0.128204 0.107493 26542 182613 -1 2247 18 1103 2923 164769 39129 6.78027 6.78027 -153.507 -6.78027 0 0 949917. 3286.91 0.36 0.05 0.18 -1 -1 0.36 0.0180983 0.0162729 116 165 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_115.v common 13.08 vpr 64.29 MiB 0.04 7172 -1 -1 13 0.33 -1 -1 36708 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65828 32 32 277 309 1 206 82 17 17 289 -1 unnamed_device 25.4 MiB 1.58 1213 7558 1688 5341 529 64.3 MiB 0.06 0.00 7.72057 -163.412 -7.72057 7.72057 0.95 0.000292224 0.000233448 0.0163011 0.013517 -1 -1 -1 -1 36 3651 36 6.79088e+06 242496 648988. 2245.63 7.87 0.164707 0.138822 25390 158009 -1 3028 19 1685 4527 264966 59200 7.16813 7.16813 -163.507 -7.16813 0 0 828058. 2865.25 0.34 0.09 0.14 -1 -1 0.34 0.0244677 0.0219564 130 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_116.v common 16.80 vpr 63.81 MiB 0.02 7116 -1 -1 11 0.24 -1 -1 36376 -1 -1 20 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65344 29 32 245 277 1 177 81 17 17 289 -1 unnamed_device 24.9 MiB 1.99 1035 10931 3004 6059 1868 63.8 MiB 0.07 0.00 6.92473 -133.923 -6.92473 6.92473 0.85 0.00024675 0.000196746 0.0181836 0.0147866 -1 -1 -1 -1 34 2930 48 6.79088e+06 269440 618332. 2139.56 11.61 0.173233 0.144914 25102 150614 -1 2379 16 992 2756 166209 36748 5.89932 5.89932 -128.688 -5.89932 0 0 787024. 2723.27 0.31 0.05 0.13 -1 -1 0.31 0.0160759 0.0144141 114 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_117.v common 9.59 vpr 64.48 MiB 0.03 7180 -1 -1 14 0.39 -1 -1 37108 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66032 32 32 316 348 1 233 85 17 17 289 -1 unnamed_device 25.6 MiB 1.60 1325 15151 4537 8677 1937 64.5 MiB 0.11 0.00 9.1052 -188.078 -9.1052 9.1052 0.85 0.000327516 0.000259467 0.0310629 0.0250656 -1 -1 -1 -1 38 3629 32 6.79088e+06 282912 678818. 2348.85 4.35 0.175447 0.145524 25966 169698 -1 3132 21 1713 4610 242960 54540 7.81291 7.81291 -176.319 -7.81291 0 0 902133. 3121.57 0.34 0.08 0.15 -1 -1 0.34 0.0264028 0.0234708 157 222 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_118.v common 10.46 vpr 63.87 MiB 0.03 6852 -1 -1 12 0.20 -1 -1 36212 -1 -1 18 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65400 31 32 230 262 1 187 81 17 17 289 -1 unnamed_device 25.2 MiB 5.24 992 10931 4042 5653 1236 63.9 MiB 0.07 0.00 6.67023 -140.221 -6.67023 6.67023 0.87 0.000240095 0.000190066 0.0176205 0.0142436 -1 -1 -1 -1 38 2823 50 6.79088e+06 242496 678818. 2348.85 1.93 0.0941195 0.0778901 25966 169698 -1 2246 16 1034 2371 137760 30842 5.95423 5.95423 -133.712 -5.95423 0 0 902133. 3121.57 0.32 0.05 0.15 -1 -1 0.32 0.015258 0.0137571 107 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_119.v common 18.26 vpr 64.28 MiB 0.03 6988 -1 -1 13 0.39 -1 -1 36952 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65820 32 32 282 314 1 205 82 17 17 289 -1 unnamed_device 25.7 MiB 2.34 1211 8804 1975 6271 558 64.3 MiB 0.07 0.00 7.80836 -158.945 -7.80836 7.80836 0.86 0.000286454 0.000227162 0.0180226 0.0146919 -1 -1 -1 -1 36 3480 47 6.79088e+06 242496 648988. 2245.63 12.33 0.187069 0.156381 25390 158009 -1 2894 20 1349 3948 244922 54537 7.07777 7.07777 -158.532 -7.07777 0 0 828058. 2865.25 0.31 0.09 0.13 -1 -1 0.31 0.0267034 0.0242162 131 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_120.v common 9.78 vpr 63.74 MiB 0.02 6936 -1 -1 13 0.23 -1 -1 36332 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65268 32 32 235 267 1 182 81 17 17 289 -1 unnamed_device 25.1 MiB 2.34 871 7606 1961 4633 1012 63.7 MiB 0.05 0.00 7.30487 -159.471 -7.30487 7.30487 0.89 0.000231664 0.000184198 0.0129143 0.0105877 -1 -1 -1 -1 40 2368 19 6.79088e+06 229024 706193. 2443.58 4.02 0.0945273 0.0789334 26254 175826 -1 2094 18 1064 2679 138826 34515 6.59202 6.59202 -158.811 -6.59202 0 0 926341. 3205.33 0.34 0.05 0.15 -1 -1 0.34 0.0162981 0.0146397 104 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_121.v common 14.59 vpr 63.97 MiB 0.02 7172 -1 -1 12 0.37 -1 -1 36532 -1 -1 19 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65508 32 32 265 297 1 190 83 17 17 289 -1 unnamed_device 25.2 MiB 3.16 1117 10343 2798 5496 2049 64.0 MiB 0.07 0.00 7.24652 -157.134 -7.24652 7.24652 0.88 0.000279405 0.000223085 0.0191115 0.0156467 -1 -1 -1 -1 34 3383 47 6.79088e+06 255968 618332. 2139.56 7.85 0.165389 0.138419 25102 150614 -1 2776 24 1240 3560 378730 128012 6.12222 6.12222 -150.599 -6.12222 0 0 787024. 2723.27 0.29 0.10 0.13 -1 -1 0.29 0.0218674 0.0193349 123 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_122.v common 9.02 vpr 64.97 MiB 0.03 7228 -1 -1 15 0.60 -1 -1 36352 -1 -1 24 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66532 32 32 344 376 1 257 88 17 17 289 -1 unnamed_device 26.0 MiB 2.88 1655 6328 1359 4323 646 65.0 MiB 0.06 0.00 9.54241 -197.152 -9.54241 9.54241 0.86 0.000371868 0.000288426 0.0166399 0.0137905 -1 -1 -1 -1 42 4220 33 6.79088e+06 323328 744469. 2576.02 2.18 0.113297 0.0962442 26542 182613 -1 3712 17 1841 5483 337149 71968 8.3568 8.3568 -186.593 -8.3568 0 0 949917. 3286.91 0.37 0.09 0.16 -1 -1 0.37 0.026501 0.0238736 176 250 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_123.v common 8.28 vpr 63.35 MiB 0.02 6668 -1 -1 10 0.12 -1 -1 35756 -1 -1 11 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64872 30 32 173 205 1 128 73 17 17 289 -1 unnamed_device 24.7 MiB 1.88 622 9801 4088 5460 253 63.4 MiB 0.05 0.00 5.09125 -114.065 -5.09125 5.09125 0.86 0.000162562 0.000127557 0.0130654 0.0106134 -1 -1 -1 -1 30 1981 32 6.79088e+06 148192 556674. 1926.21 3.41 0.0733574 0.061129 24526 138013 -1 1468 12 642 1426 76948 18373 4.64375 4.64375 -110.116 -4.64375 0 0 706193. 2443.58 0.28 0.03 0.12 -1 -1 0.28 0.00899586 0.00817039 63 85 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_124.v common 9.15 vpr 63.50 MiB 0.02 6964 -1 -1 13 0.22 -1 -1 36240 -1 -1 17 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65028 30 32 229 261 1 178 79 17 17 289 -1 unnamed_device 25.1 MiB 1.83 935 11402 3156 7279 967 63.5 MiB 0.07 0.00 7.38119 -155.519 -7.38119 7.38119 0.85 0.00023031 0.000183484 0.0181708 0.0146653 -1 -1 -1 -1 38 2368 22 6.79088e+06 229024 678818. 2348.85 4.03 0.115191 0.0960665 25966 169698 -1 1911 18 1066 2594 120012 29353 6.19723 6.19723 -141.514 -6.19723 0 0 902133. 3121.57 0.34 0.05 0.17 -1 -1 0.34 0.0174518 0.0157495 105 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_125.v common 10.40 vpr 64.20 MiB 0.02 6880 -1 -1 12 0.25 -1 -1 36580 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65744 32 32 261 293 1 202 81 17 17 289 -1 unnamed_device 25.4 MiB 2.49 1157 11456 3936 5585 1935 64.2 MiB 0.08 0.00 7.34961 -160.47 -7.34961 7.34961 0.88 0.000256486 0.000201601 0.0201281 0.0162585 -1 -1 -1 -1 40 3201 25 6.79088e+06 229024 706193. 2443.58 4.42 0.123606 0.102552 26254 175826 -1 2722 19 1455 3808 228132 51913 6.29447 6.29447 -151.228 -6.29447 0 0 926341. 3205.33 0.34 0.07 0.16 -1 -1 0.34 0.0183439 0.0164277 115 167 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_126.v common 7.58 vpr 63.24 MiB 0.02 6940 -1 -1 9 0.16 -1 -1 36332 -1 -1 20 25 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64760 25 32 184 216 1 139 77 17 17 289 -1 unnamed_device 24.7 MiB 1.33 733 10672 3175 6267 1230 63.2 MiB 0.06 0.00 5.43484 -102.938 -5.43484 5.43484 0.95 0.000186931 0.000148601 0.0146088 0.0118823 -1 -1 -1 -1 30 2140 26 6.79088e+06 269440 556674. 1926.21 3.07 0.0799797 0.06653 24526 138013 -1 1723 18 782 1952 101227 23758 4.79254 4.79254 -102.191 -4.79254 0 0 706193. 2443.58 0.29 0.04 0.12 -1 -1 0.29 0.0125758 0.0112728 87 111 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_127.v common 9.48 vpr 64.29 MiB 0.02 7120 -1 -1 12 0.32 -1 -1 36596 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65828 32 32 302 334 1 235 85 17 17 289 -1 unnamed_device 25.6 MiB 2.60 1367 10873 3115 6058 1700 64.3 MiB 0.08 0.00 7.83392 -167.412 -7.83392 7.83392 0.92 0.000293309 0.000232569 0.0217727 0.0176482 -1 -1 -1 -1 44 3613 38 6.79088e+06 282912 787024. 2723.27 3.17 0.117483 0.0980378 27118 194962 -1 3072 30 1552 4180 498418 215381 6.79572 6.79572 -159.744 -6.79572 0 0 997811. 3452.63 0.38 0.15 0.17 -1 -1 0.38 0.0285438 0.0250913 144 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_128.v common 7.05 vpr 64.38 MiB 0.03 7096 -1 -1 14 0.40 -1 -1 36592 -1 -1 23 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65924 31 32 295 327 1 216 86 17 17 289 -1 unnamed_device 25.6 MiB 1.28 1276 6701 1514 4692 495 64.4 MiB 0.07 0.00 9.054 -184.189 -9.054 9.054 0.89 0.00037147 0.000283442 0.0162304 0.0134758 -1 -1 -1 -1 36 3765 22 6.79088e+06 309856 648988. 2245.63 2.13 0.106707 0.0897258 25390 158009 -1 3029 17 1388 3994 239981 54341 7.94165 7.94165 -175.137 -7.94165 0 0 828058. 2865.25 0.32 0.07 0.14 -1 -1 0.32 0.0205383 0.0184687 151 204 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 6.46 vpr 64.88 MiB 0.02 7248 -1 -1 1 0.04 -1 -1 34360 -1 -1 37 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66436 32 32 438 350 1 202 101 17 17 289 -1 unnamed_device 26.0 MiB 1.84 896 11381 2877 7599 905 64.9 MiB 0.10 0.00 4.28691 -143.363 -4.28691 4.28691 0.96 0.000250878 0.000200411 0.0150621 0.0121694 -1 -1 -1 -1 30 2726 26 6.87369e+06 517032 556674. 1926.21 1.32 0.0661368 0.054885 25186 138497 -1 1965 20 1586 2596 135571 34843 3.8594 3.8594 -142.45 -3.8594 0 0 706193. 2443.58 0.31 0.05 0.12 -1 -1 0.31 0.0148762 0.0128944 155 96 32 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 8.69 vpr 64.35 MiB 0.02 7212 -1 -1 1 0.04 -1 -1 34292 -1 -1 23 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65892 30 32 409 330 1 192 85 17 17 289 -1 unnamed_device 25.6 MiB 4.62 885 13477 4295 6291 2891 64.3 MiB 0.10 0.00 4.22285 -135.326 -4.22285 4.22285 0.84 0.000218708 0.000172176 0.0178708 0.0143315 -1 -1 -1 -1 32 2609 23 6.87369e+06 321398 586450. 2029.24 1.03 0.0550687 0.0451202 25474 144626 -1 2007 22 1697 2862 191256 46265 4.077 4.077 -139.587 -4.077 0 0 744469. 2576.02 0.29 0.06 0.12 -1 -1 0.29 0.014333 0.0122687 141 91 30 30 89 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 7.49 vpr 64.34 MiB 0.03 7068 -1 -1 1 0.04 -1 -1 34176 -1 -1 36 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65888 32 32 387 309 1 191 100 17 17 289 -1 unnamed_device 25.7 MiB 2.70 948 18428 5133 10477 2818 64.3 MiB 0.13 0.00 3.72926 -129.095 -3.72926 3.72926 1.07 0.000217639 0.000170653 0.0198849 0.0156659 -1 -1 -1 -1 32 2634 23 6.87369e+06 503058 586450. 2029.24 1.44 0.0668081 0.0545706 25474 144626 -1 2058 20 1372 2114 155407 36069 3.3865 3.3865 -128.935 -3.3865 0 0 744469. 2576.02 0.30 0.05 0.13 -1 -1 0.30 0.0129472 0.0111479 145 65 54 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 6.77 vpr 64.50 MiB 0.03 7132 -1 -1 1 0.04 -1 -1 34000 -1 -1 23 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66048 29 32 343 267 1 184 84 17 17 289 -1 unnamed_device 25.7 MiB 2.03 926 15090 5282 7268 2540 64.5 MiB 0.11 0.00 4.1666 -130.173 -4.1666 4.1666 0.87 0.000215283 0.000172103 0.0184427 0.0149083 -1 -1 -1 -1 34 2372 21 6.87369e+06 321398 618332. 2139.56 1.52 0.0738263 0.0606816 25762 151098 -1 1872 23 1632 2904 180878 43717 3.7121 3.7121 -135.221 -3.7121 0 0 787024. 2723.27 0.31 0.06 0.13 -1 -1 0.31 0.0144767 0.012512 136 34 87 29 29 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 7.97 vpr 64.44 MiB 0.02 7084 -1 -1 1 0.04 -1 -1 33904 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65984 32 32 376 288 1 202 85 17 17 289 -1 unnamed_device 25.7 MiB 3.13 1030 14965 5016 7973 1976 64.4 MiB 0.12 0.00 4.2175 -149.17 -4.2175 4.2175 0.89 0.000216251 0.000170522 0.020131 0.0162468 -1 -1 -1 -1 34 2776 23 6.87369e+06 293451 618332. 2139.56 1.59 0.0797921 0.065399 25762 151098 -1 2320 22 1996 3715 271009 62030 3.7421 3.7421 -148.287 -3.7421 0 0 787024. 2723.27 0.31 0.07 0.13 -1 -1 0.31 0.0148778 0.0128513 147 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 6.13 vpr 64.72 MiB 0.02 7160 -1 -1 1 0.04 -1 -1 34060 -1 -1 39 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66272 32 32 402 316 1 200 103 17 17 289 -1 unnamed_device 25.6 MiB 1.79 1073 20588 6520 11266 2802 64.7 MiB 0.15 0.00 3.56907 -125.93 -3.56907 3.56907 0.86 0.000266383 0.000199597 0.022526 0.0178405 -1 -1 -1 -1 28 2606 21 6.87369e+06 544980 531479. 1839.03 1.17 0.0669108 0.0554456 24610 126494 -1 2286 19 1552 2562 176871 41701 3.22956 3.22956 -125.941 -3.22956 0 0 648988. 2245.63 0.25 0.05 0.11 -1 -1 0.25 0.0129181 0.0111896 154 64 63 32 63 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 6.69 vpr 64.23 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 34400 -1 -1 20 27 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65768 27 32 269 226 1 146 79 17 17 289 -1 unnamed_device 25.4 MiB 2.77 742 12754 4384 6452 1918 64.2 MiB 0.08 0.00 3.56305 -106.515 -3.56305 3.56305 0.91 0.000166959 0.000131963 0.014263 0.0114735 -1 -1 -1 -1 26 1931 23 6.87369e+06 279477 503264. 1741.40 0.84 0.0418199 0.0343445 24322 120374 -1 1682 19 1203 1964 141451 33100 3.04626 3.04626 -110.831 -3.04626 0 0 618332. 2139.56 0.25 0.04 0.11 -1 -1 0.25 0.00968331 0.00838081 102 34 54 27 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 5.86 vpr 64.43 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 33608 -1 -1 35 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65972 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 25.5 MiB 1.39 991 14273 4115 7548 2610 64.4 MiB 0.11 0.00 3.50391 -113.72 -3.50391 3.50391 0.86 0.000203984 0.000162508 0.0157228 0.0125822 -1 -1 -1 -1 34 2356 19 6.87369e+06 489084 618332. 2139.56 1.38 0.0668977 0.0551262 25762 151098 -1 1957 17 1091 1774 101597 26065 2.88196 2.88196 -111.761 -2.88196 0 0 787024. 2723.27 0.32 0.04 0.14 -1 -1 0.32 0.0110512 0.0096781 141 4 115 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 7.69 vpr 64.41 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 34108 -1 -1 16 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65952 31 32 338 292 1 154 79 17 17 289 -1 unnamed_device 25.6 MiB 3.69 771 7177 1785 4818 574 64.4 MiB 0.05 0.00 3.10152 -107.288 -3.10152 3.10152 0.86 0.000189145 0.000148899 0.00951618 0.00765622 -1 -1 -1 -1 32 1996 19 6.87369e+06 223581 586450. 2029.24 0.91 0.040033 0.0330369 25474 144626 -1 1668 19 935 1514 108545 25396 2.80496 2.80496 -113.383 -2.80496 0 0 744469. 2576.02 0.39 0.05 0.13 -1 -1 0.39 0.0166637 0.014665 103 85 0 0 84 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 10.04 vpr 64.08 MiB 0.02 6988 -1 -1 1 0.04 -1 -1 34100 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65620 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 25.4 MiB 5.24 713 9196 2055 5947 1194 64.1 MiB 0.06 0.00 3.55695 -123.921 -3.55695 3.55695 0.85 0.000191026 0.000151492 0.0115671 0.00933384 -1 -1 -1 -1 34 2207 22 6.87369e+06 223581 618332. 2139.56 1.61 0.063279 0.05216 25762 151098 -1 1688 19 1318 2120 134152 33731 3.02616 3.02616 -121.806 -3.02616 0 0 787024. 2723.27 0.37 0.05 0.13 -1 -1 0.37 0.0113773 0.00989123 114 34 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 8.48 vpr 64.37 MiB 0.02 6996 -1 -1 1 0.04 -1 -1 33704 -1 -1 18 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65916 30 32 325 273 1 160 80 17 17 289 -1 unnamed_device 25.5 MiB 4.33 789 13496 3921 8098 1477 64.4 MiB 0.09 0.00 3.56085 -119.59 -3.56085 3.56085 0.86 0.00023791 0.00019608 0.0168337 0.0134475 -1 -1 -1 -1 32 1976 23 6.87369e+06 251529 586450. 2029.24 0.98 0.0524151 0.0433143 25474 144626 -1 1618 19 1150 1778 115622 27614 2.87586 2.87586 -117.724 -2.87586 0 0 744469. 2576.02 0.36 0.04 0.16 -1 -1 0.36 0.0115302 0.0100066 109 63 30 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 6.45 vpr 64.08 MiB 0.02 7124 -1 -1 1 0.04 -1 -1 33872 -1 -1 32 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65620 32 32 331 280 1 161 96 17 17 289 -1 unnamed_device 25.4 MiB 2.30 835 11484 3090 7822 572 64.1 MiB 0.08 0.00 3.48301 -117.758 -3.48301 3.48301 0.87 0.000192354 0.000148892 0.011883 0.00937307 -1 -1 -1 -1 28 2344 18 6.87369e+06 447163 531479. 1839.03 1.12 0.0418482 0.0342678 24610 126494 -1 2084 16 1073 1798 146971 33318 3.14356 3.14356 -126.841 -3.14356 0 0 648988. 2245.63 0.24 0.04 0.11 -1 -1 0.24 0.00981297 0.00852682 116 65 25 25 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 10.66 vpr 64.51 MiB 0.03 7268 -1 -1 1 0.04 -1 -1 33968 -1 -1 35 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66060 32 32 386 305 1 195 99 17 17 289 -1 unnamed_device 25.6 MiB 5.97 957 17427 5091 10321 2015 64.5 MiB 0.13 0.00 3.63579 -124.841 -3.63579 3.63579 0.85 0.000229092 0.000177871 0.0192808 0.0153295 -1 -1 -1 -1 34 2485 23 6.87369e+06 489084 618332. 2139.56 1.48 0.0794162 0.0649104 25762 151098 -1 2073 20 1683 3047 190939 46820 3.13256 3.13256 -124.864 -3.13256 0 0 787024. 2723.27 0.30 0.06 0.16 -1 -1 0.30 0.0133599 0.0115453 147 58 64 32 57 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 7.57 vpr 64.93 MiB 0.02 7176 -1 -1 1 0.04 -1 -1 34304 -1 -1 37 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66492 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 26.0 MiB 3.29 1042 21016 6526 11897 2593 64.9 MiB 0.15 0.00 4.38115 -150.928 -4.38115 4.38115 0.86 0.000227112 0.000179216 0.0237155 0.0190029 -1 -1 -1 -1 32 2736 23 6.87369e+06 517032 586450. 2029.24 1.01 0.066845 0.0550706 25474 144626 -1 2264 21 1845 2926 190994 45489 3.7891 3.7891 -147.966 -3.7891 0 0 744469. 2576.02 0.29 0.06 0.13 -1 -1 0.29 0.0148779 0.0128865 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 6.90 vpr 64.20 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 34212 -1 -1 19 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65744 29 32 272 228 1 148 80 17 17 289 -1 unnamed_device 25.4 MiB 2.95 801 11776 3453 6762 1561 64.2 MiB 0.07 0.00 3.43775 -109.554 -3.43775 3.43775 0.89 0.000162292 0.000127804 0.0127527 0.0102608 -1 -1 -1 -1 32 1877 23 6.87369e+06 265503 586450. 2029.24 0.93 0.0418293 0.03461 25474 144626 -1 1647 23 1064 1825 119258 27812 2.99626 2.99626 -112.835 -2.99626 0 0 744469. 2576.02 0.29 0.04 0.13 -1 -1 0.29 0.012181 0.0105405 102 29 58 29 24 24 +fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 9.77 vpr 64.37 MiB 0.02 7148 -1 -1 1 0.05 -1 -1 33800 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65916 32 32 401 315 1 200 85 17 17 289 -1 unnamed_device 25.6 MiB 4.31 1029 14221 5946 7079 1196 64.4 MiB 0.10 0.00 3.65105 -129.633 -3.65105 3.65105 0.87 0.000224714 0.000177642 0.0207869 0.0167666 -1 -1 -1 -1 36 3065 50 6.87369e+06 293451 648988. 2245.63 2.19 0.0958683 0.0786595 26050 158493 -1 2297 19 1926 3226 237152 58676 3.45816 3.45816 -139.806 -3.45816 0 0 828058. 2865.25 0.33 0.07 0.16 -1 -1 0.33 0.0159029 0.0139562 145 63 64 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 10.02 vpr 64.67 MiB 0.02 7264 -1 -1 1 0.04 -1 -1 34080 -1 -1 38 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66224 32 32 383 303 1 193 102 17 17 289 -1 unnamed_device 26.0 MiB 5.90 1063 17238 4632 10836 1770 64.7 MiB 0.13 0.00 3.56385 -127.172 -3.56385 3.56385 0.87 0.000274951 0.000225835 0.0191873 0.0151481 -1 -1 -1 -1 28 2521 23 6.87369e+06 531006 531479. 1839.03 1.08 0.0644738 0.0529383 24610 126494 -1 2086 23 1637 2445 168479 38269 2.88516 2.88516 -121.774 -2.88516 0 0 648988. 2245.63 0.27 0.06 0.11 -1 -1 0.27 0.0148605 0.0127835 148 57 64 32 56 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 7.43 vpr 64.42 MiB 0.02 7108 -1 -1 1 0.05 -1 -1 33740 -1 -1 29 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65968 32 32 339 284 1 165 93 17 17 289 -1 unnamed_device 25.6 MiB 3.40 827 13113 3535 8341 1237 64.4 MiB 0.09 0.00 2.94421 -107.149 -2.94421 2.94421 0.86 0.000192684 0.000151673 0.0135848 0.0107864 -1 -1 -1 -1 30 2065 20 6.87369e+06 405241 556674. 1926.21 0.91 0.0465304 0.0383181 25186 138497 -1 1683 18 1104 1763 100596 24142 1.98452 1.98452 -96.2727 -1.98452 0 0 706193. 2443.58 0.28 0.04 0.12 -1 -1 0.28 0.0112034 0.00973339 117 65 29 29 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 5.40 vpr 63.50 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 33484 -1 -1 14 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65028 30 32 226 208 1 119 76 17 17 289 -1 unnamed_device 24.9 MiB 1.16 546 8876 3650 4795 431 63.5 MiB 0.04 0.00 2.76391 -90.9223 -2.76391 2.76391 0.85 0.000149517 0.000118454 0.0093884 0.00756149 -1 -1 -1 -1 34 1389 34 6.87369e+06 195634 618332. 2139.56 1.32 0.0494588 0.040521 25762 151098 -1 1237 18 775 1126 94003 22707 2.16742 2.16742 -85.9513 -2.16742 0 0 787024. 2723.27 0.30 0.03 0.13 -1 -1 0.30 0.00798634 0.00686954 73 34 24 24 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 6.13 vpr 64.34 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 33992 -1 -1 17 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65880 31 32 335 280 1 165 80 17 17 289 -1 unnamed_device 25.6 MiB 2.18 892 12636 4354 6390 1892 64.3 MiB 0.08 0.00 4.18343 -130.726 -4.18343 4.18343 0.87 0.000196463 0.000154778 0.0160234 0.0128767 -1 -1 -1 -1 32 2082 27 6.87369e+06 237555 586450. 2029.24 0.93 0.0505984 0.0416833 25474 144626 -1 1718 17 933 1398 100253 22385 3.1469 3.1469 -122.768 -3.1469 0 0 744469. 2576.02 0.29 0.04 0.12 -1 -1 0.29 0.0114175 0.00998097 113 64 31 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 6.38 vpr 64.48 MiB 0.02 7224 -1 -1 1 0.04 -1 -1 33824 -1 -1 36 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66028 32 32 366 283 1 197 100 17 17 289 -1 unnamed_device 25.7 MiB 1.51 890 19124 5701 10377 3046 64.5 MiB 0.13 0.00 4.28899 -141.244 -4.28899 4.28899 0.91 0.000223628 0.000177339 0.0199246 0.0159925 -1 -1 -1 -1 34 2347 23 6.87369e+06 503058 618332. 2139.56 1.47 0.0808609 0.0668636 25762 151098 -1 1949 22 1570 2350 160865 38847 3.9097 3.9097 -138.51 -3.9097 0 0 787024. 2723.27 0.31 0.05 0.13 -1 -1 0.31 0.0143175 0.0123756 150 34 91 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 8.58 vpr 64.92 MiB 0.02 7316 -1 -1 1 0.04 -1 -1 34392 -1 -1 40 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66480 32 32 460 375 1 199 104 17 17 289 -1 unnamed_device 25.8 MiB 4.07 954 19380 5897 10246 3237 64.9 MiB 0.14 0.00 3.83561 -129.445 -3.83561 3.83561 0.86 0.000243237 0.000192058 0.021942 0.0173263 -1 -1 -1 -1 28 3372 45 6.87369e+06 558954 531479. 1839.03 1.41 0.0794654 0.0647061 24610 126494 -1 2386 26 1719 2678 233407 60163 3.7594 3.7594 -137.654 -3.7594 0 0 648988. 2245.63 0.26 0.07 0.11 -1 -1 0.26 0.0177527 0.0150749 154 124 0 0 125 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 6.65 vpr 63.64 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 33912 -1 -1 16 26 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65172 26 32 198 186 1 109 74 17 17 289 -1 unnamed_device 25.0 MiB 2.80 576 9219 3764 4871 584 63.6 MiB 0.05 0.00 2.74191 -79.4562 -2.74191 2.74191 0.89 0.000123673 9.669e-05 0.00855841 0.00686896 -1 -1 -1 -1 26 1399 19 6.87369e+06 223581 503264. 1741.40 0.88 0.0286588 0.0236002 24322 120374 -1 1243 20 678 1081 88443 20378 2.04682 2.04682 -76.8655 -2.04682 0 0 618332. 2139.56 0.25 0.03 0.10 -1 -1 0.25 0.00796185 0.00685602 69 30 26 26 22 22 +fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 8.72 vpr 64.22 MiB 0.02 6992 -1 -1 1 0.04 -1 -1 33904 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65764 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 25.5 MiB 2.18 1044 9943 2672 6704 567 64.2 MiB 0.09 0.00 4.1666 -141.968 -4.1666 4.1666 0.93 0.000200568 0.000159748 0.0129357 0.0105142 -1 -1 -1 -1 28 3040 27 6.87369e+06 293451 531479. 1839.03 3.37 0.0933719 0.0769533 24610 126494 -1 2422 24 2035 3432 351989 111696 4.4029 4.4029 -160.094 -4.4029 0 0 648988. 2245.63 0.28 0.09 0.11 -1 -1 0.28 0.0145064 0.0124384 141 3 122 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 4.66 vpr 63.40 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 33868 -1 -1 12 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 24.9 MiB 0.83 510 12556 3038 8879 639 63.4 MiB 0.06 0.00 2.37678 -85.3657 -2.37678 2.37678 0.88 0.000136248 0.000106942 0.0120162 0.00963927 -1 -1 -1 -1 28 1482 24 6.87369e+06 167686 531479. 1839.03 0.90 0.0369893 0.0307217 24610 126494 -1 1247 16 695 882 86511 28050 1.88382 1.88382 -87.2057 -1.88382 0 0 648988. 2245.63 0.27 0.03 0.11 -1 -1 0.27 0.00729461 0.00639758 71 3 53 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 5.52 vpr 64.89 MiB 0.02 7196 -1 -1 1 0.04 -1 -1 34288 -1 -1 36 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66448 32 32 376 288 1 202 100 17 17 289 -1 unnamed_device 26.0 MiB 1.21 1077 18660 4798 12102 1760 64.9 MiB 0.13 0.00 4.29809 -149.349 -4.29809 4.29809 0.89 0.000215605 0.000168808 0.0198175 0.0159125 -1 -1 -1 -1 32 2995 31 6.87369e+06 503058 586450. 2029.24 1.04 0.0622672 0.0514239 25474 144626 -1 2431 21 1840 2718 195257 46178 3.9299 3.9299 -152.07 -3.9299 0 0 744469. 2576.02 0.29 0.06 0.13 -1 -1 0.29 0.013973 0.0121396 155 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 5.72 vpr 64.41 MiB 0.02 7124 -1 -1 1 0.04 -1 -1 34208 -1 -1 36 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65956 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 25.7 MiB 1.45 1035 13556 3460 8646 1450 64.4 MiB 0.10 0.00 3.55285 -121.924 -3.55285 3.55285 0.87 0.000192928 0.000153396 0.0134855 0.010933 -1 -1 -1 -1 32 2531 22 6.87369e+06 503058 586450. 2029.24 0.96 0.0498147 0.041526 25474 144626 -1 2066 19 1343 2147 124767 29885 2.91496 2.91496 -117.378 -2.91496 0 0 744469. 2576.02 0.31 0.05 0.14 -1 -1 0.31 0.0134612 0.0117218 151 3 124 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 5.99 vpr 64.74 MiB 0.03 7248 -1 -1 1 0.04 -1 -1 34100 -1 -1 39 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66292 32 32 407 319 1 202 103 17 17 289 -1 unnamed_device 25.8 MiB 1.58 1071 14081 3700 9458 923 64.7 MiB 0.11 0.00 4.2699 -147.959 -4.2699 4.2699 0.89 0.000225162 0.00018045 0.0160923 0.0130197 -1 -1 -1 -1 30 2752 24 6.87369e+06 544980 556674. 1926.21 1.06 0.0600773 0.05 25186 138497 -1 2227 21 1759 3020 182508 42543 3.6448 3.6448 -142.825 -3.6448 0 0 706193. 2443.58 0.30 0.07 0.14 -1 -1 0.30 0.0163451 0.0140909 156 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 7.91 vpr 64.12 MiB 0.02 6964 -1 -1 1 0.04 -1 -1 33980 -1 -1 15 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65656 32 32 294 246 1 157 79 17 17 289 -1 unnamed_device 25.2 MiB 1.88 741 7346 1842 5043 461 64.1 MiB 0.05 0.00 3.07332 -108.287 -3.07332 3.07332 0.86 0.000193864 0.000153757 0.00925545 0.00749099 -1 -1 -1 -1 34 1957 21 6.87369e+06 209608 618332. 2139.56 2.99 0.0708302 0.0583818 25762 151098 -1 1678 17 971 1531 101792 24428 3.09956 3.09956 -115.424 -3.09956 0 0 787024. 2723.27 0.30 0.04 0.14 -1 -1 0.30 0.00989987 0.00865751 104 34 54 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 5.87 vpr 64.01 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 33832 -1 -1 18 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65548 30 32 296 244 1 160 80 17 17 289 -1 unnamed_device 25.1 MiB 1.74 868 11260 4122 5381 1757 64.0 MiB 0.07 0.00 3.54295 -119.425 -3.54295 3.54295 0.88 0.000178976 0.000140231 0.0138381 0.011169 -1 -1 -1 -1 32 2068 28 6.87369e+06 251529 586450. 2029.24 0.98 0.049291 0.040988 25474 144626 -1 1652 18 1121 1708 114351 26694 3.07126 3.07126 -119.046 -3.07126 0 0 744469. 2576.02 0.30 0.04 0.12 -1 -1 0.30 0.0109671 0.00960293 109 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 7.28 vpr 63.79 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 33800 -1 -1 19 28 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65320 28 32 278 232 1 150 79 17 17 289 -1 unnamed_device 25.2 MiB 1.94 741 13092 5164 5931 1997 63.8 MiB 0.09 0.00 3.48175 -108.061 -3.48175 3.48175 0.88 0.000173668 0.000135376 0.015132 0.0120887 -1 -1 -1 -1 30 1998 21 6.87369e+06 265503 556674. 1926.21 2.24 0.0679161 0.0556931 25186 138497 -1 1545 23 1160 2046 118072 28035 2.87996 2.87996 -105.441 -2.87996 0 0 706193. 2443.58 0.30 0.05 0.12 -1 -1 0.30 0.0117507 0.0101572 104 34 56 28 28 28 +fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 7.01 vpr 63.96 MiB 0.02 6932 -1 -1 1 0.04 -1 -1 33812 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65496 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 25.3 MiB 2.21 858 14700 5473 6996 2231 64.0 MiB 0.10 0.00 3.58201 -129.055 -3.58201 3.58201 0.88 0.000181051 0.000143226 0.0175132 0.0141469 -1 -1 -1 -1 34 2238 20 6.87369e+06 223581 618332. 2139.56 1.53 0.0660874 0.0545536 25762 151098 -1 1914 20 1374 2369 181416 40548 2.87266 2.87266 -122.88 -2.87266 0 0 787024. 2723.27 0.32 0.06 0.13 -1 -1 0.32 0.0125902 0.0110992 114 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 5.20 vpr 64.21 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 34244 -1 -1 32 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65752 31 32 303 249 1 163 95 17 17 289 -1 unnamed_device 25.4 MiB 1.18 909 12839 3118 8295 1426 64.2 MiB 0.09 0.00 3.52165 -121.124 -3.52165 3.52165 0.93 0.00017997 0.000142234 0.0129054 0.0102669 -1 -1 -1 -1 32 2082 23 6.87369e+06 447163 586450. 2029.24 0.95 0.045036 0.0372549 25474 144626 -1 1803 20 1192 1982 122985 29555 2.84266 2.84266 -116.309 -2.84266 0 0 744469. 2576.02 0.29 0.04 0.12 -1 -1 0.29 0.0105759 0.00919008 119 34 61 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 7.85 vpr 64.37 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 33916 -1 -1 32 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65916 29 32 312 264 1 155 93 17 17 289 -1 unnamed_device 25.5 MiB 3.55 732 15003 3853 9045 2105 64.4 MiB 0.17 0.00 2.93321 -94.3568 -2.93321 2.93321 0.96 0.000324223 0.000257247 0.0255734 0.0205972 -1 -1 -1 -1 26 1966 32 6.87369e+06 447163 503264. 1741.40 1.08 0.0615187 0.0506146 24322 120374 -1 1700 22 1351 2349 170177 40274 2.16582 2.16582 -92.3895 -2.16582 0 0 618332. 2139.56 0.25 0.05 0.10 -1 -1 0.25 0.0116599 0.00999994 113 61 29 29 57 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 10.15 vpr 64.92 MiB 0.03 7404 -1 -1 1 0.04 -1 -1 34024 -1 -1 44 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66480 32 32 423 310 1 231 108 17 17 289 -1 unnamed_device 26.0 MiB 5.16 1323 20411 5678 12347 2386 64.9 MiB 0.20 0.00 4.2699 -148.689 -4.2699 4.2699 0.88 0.000292913 0.00023715 0.0238158 0.0189241 -1 -1 -1 -1 28 3978 41 6.87369e+06 614849 531479. 1839.03 1.71 0.0769898 0.0632912 24610 126494 -1 3018 24 2455 4319 348482 82441 4.099 4.099 -158.528 -4.099 0 0 648988. 2245.63 0.26 0.09 0.11 -1 -1 0.26 0.0175572 0.0151506 184 29 128 32 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 8.19 vpr 64.75 MiB 0.02 7064 -1 -1 1 0.04 -1 -1 34124 -1 -1 39 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66304 32 32 403 317 1 200 103 17 17 289 -1 unnamed_device 26.0 MiB 3.98 1053 18419 4965 10740 2714 64.8 MiB 0.13 0.00 3.69025 -132.499 -3.69025 3.69025 0.87 0.000236148 0.000186453 0.0200595 0.0159935 -1 -1 -1 -1 32 2477 24 6.87369e+06 544980 586450. 2029.24 0.98 0.0615048 0.0505014 25474 144626 -1 2015 22 1749 2539 155694 36025 2.98996 2.98996 -128.336 -2.98996 0 0 744469. 2576.02 0.32 0.05 0.14 -1 -1 0.32 0.0156752 0.0135608 154 65 62 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 8.92 vpr 64.12 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 34300 -1 -1 31 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65664 31 32 353 302 1 160 94 17 17 289 -1 unnamed_device 25.4 MiB 4.43 873 17134 5030 9795 2309 64.1 MiB 0.11 0.00 3.56907 -120.638 -3.56907 3.56907 0.86 0.000208751 0.000167565 0.0178059 0.0141942 -1 -1 -1 -1 34 1968 31 6.87369e+06 433189 618332. 2139.56 1.46 0.0751909 0.0614802 25762 151098 -1 1642 20 1013 1710 106102 25640 2.78966 2.78966 -109.584 -2.78966 0 0 787024. 2723.27 0.30 0.04 0.13 -1 -1 0.30 0.0119099 0.0102246 116 90 0 0 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 7.98 vpr 64.72 MiB 0.02 7152 -1 -1 1 0.04 -1 -1 34248 -1 -1 22 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66276 31 32 391 309 1 195 85 17 17 289 -1 unnamed_device 25.7 MiB 3.43 1012 8455 2161 5478 816 64.7 MiB 0.08 0.00 3.59121 -120.623 -3.59121 3.59121 0.87 0.000221711 0.000175621 0.0124583 0.0101323 -1 -1 -1 -1 34 2665 22 6.87369e+06 307425 618332. 2139.56 1.45 0.073006 0.0600924 25762 151098 -1 2200 20 1503 2496 170936 40225 3.22206 3.22206 -122.776 -3.22206 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0144357 0.012504 141 64 60 30 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 11.77 vpr 64.83 MiB 0.02 7456 -1 -1 1 0.05 -1 -1 34288 -1 -1 22 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66384 31 32 455 371 1 198 85 17 17 289 -1 unnamed_device 25.9 MiB 6.98 1069 16825 6934 7974 1917 64.8 MiB 0.13 0.00 4.97069 -151.821 -4.97069 4.97069 0.91 0.000251373 0.000200487 0.0246349 0.0196365 -1 -1 -1 -1 34 2661 22 6.87369e+06 307425 618332. 2139.56 1.55 0.089471 0.0723646 25762 151098 -1 2217 20 1282 2144 172853 37792 4.33895 4.33895 -149.653 -4.33895 0 0 787024. 2723.27 0.31 0.05 0.13 -1 -1 0.31 0.015019 0.0129591 145 124 0 0 124 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 7.90 vpr 64.73 MiB 0.02 7276 -1 -1 1 0.03 -1 -1 33964 -1 -1 22 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66284 31 32 413 333 1 195 85 17 17 289 -1 unnamed_device 25.9 MiB 3.32 992 12547 3655 8033 859 64.7 MiB 0.10 0.00 4.75154 -140.363 -4.75154 4.75154 0.85 0.000226935 0.000179726 0.0175222 0.0141676 -1 -1 -1 -1 34 2399 24 6.87369e+06 307425 618332. 2139.56 1.45 0.0784315 0.0641265 25762 151098 -1 2030 23 1376 2273 154202 36372 3.7093 3.7093 -138.372 -3.7093 0 0 787024. 2723.27 0.32 0.05 0.13 -1 -1 0.32 0.0166457 0.014439 141 90 31 31 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 8.02 vpr 64.48 MiB 0.02 7204 -1 -1 1 0.04 -1 -1 34040 -1 -1 36 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66028 31 32 391 309 1 195 99 17 17 289 -1 unnamed_device 25.7 MiB 3.37 1065 19023 5641 10657 2725 64.5 MiB 0.14 0.00 3.57405 -123.706 -3.57405 3.57405 0.90 0.000242943 0.000183485 0.0209234 0.0164715 -1 -1 -1 -1 34 2347 23 6.87369e+06 503058 618332. 2139.56 1.46 0.0807165 0.0656769 25762 151098 -1 1963 20 1564 2747 169520 40321 2.77566 2.77566 -115.861 -2.77566 0 0 787024. 2723.27 0.31 0.05 0.13 -1 -1 0.31 0.0136101 0.0117076 148 64 60 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 6.77 vpr 64.87 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 34300 -1 -1 38 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66424 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 25.8 MiB 2.45 1155 19618 5472 12434 1712 64.9 MiB 0.15 0.00 4.1996 -146.035 -4.1996 4.1996 0.87 0.000223865 0.000176571 0.0213021 0.0169841 -1 -1 -1 -1 30 2958 23 6.87369e+06 531006 556674. 1926.21 1.06 0.0591899 0.048507 25186 138497 -1 2309 19 1570 2428 163554 36586 3.9064 3.9064 -153.734 -3.9064 0 0 706193. 2443.58 0.30 0.05 0.12 -1 -1 0.30 0.013815 0.01203 156 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 8.61 vpr 65.12 MiB 0.03 7296 -1 -1 1 0.04 -1 -1 34172 -1 -1 42 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66680 32 32 496 380 1 234 106 17 17 289 -1 unnamed_device 26.1 MiB 4.22 1304 13356 3354 8810 1192 65.1 MiB 0.15 0.00 4.3641 -151.21 -4.3641 4.3641 0.89 0.000320934 0.000261183 0.0176739 0.0142054 -1 -1 -1 -1 32 3355 32 6.87369e+06 586901 586450. 2029.24 1.11 0.0695234 0.057181 25474 144626 -1 2637 22 2060 3418 206931 50181 3.703 3.703 -145.911 -3.703 0 0 744469. 2576.02 0.29 0.07 0.13 -1 -1 0.29 0.0186708 0.016014 186 96 62 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 6.97 vpr 64.25 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 34048 -1 -1 17 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65792 31 32 305 250 1 164 80 17 17 289 -1 unnamed_device 25.5 MiB 2.93 912 12636 4358 6898 1380 64.2 MiB 0.09 0.00 3.51475 -123.276 -3.51475 3.51475 0.87 0.000192337 0.000152504 0.0158869 0.0128361 -1 -1 -1 -1 32 2294 32 6.87369e+06 237555 586450. 2029.24 1.01 0.0519973 0.0429053 25474 144626 -1 1829 18 1287 2028 149284 33356 2.95226 2.95226 -122.572 -2.95226 0 0 744469. 2576.02 0.30 0.05 0.13 -1 -1 0.30 0.0113619 0.00992154 112 34 62 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 8.37 vpr 64.41 MiB 0.02 7248 -1 -1 1 0.04 -1 -1 33960 -1 -1 37 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65952 31 32 395 311 1 198 100 17 17 289 -1 unnamed_device 25.6 MiB 3.63 1030 19820 5893 11323 2604 64.4 MiB 0.14 0.00 4.2065 -140.971 -4.2065 4.2065 0.87 0.000223268 0.00017553 0.0211129 0.0168354 -1 -1 -1 -1 26 3189 26 6.87369e+06 517032 503264. 1741.40 1.54 0.0663559 0.0547636 24322 120374 -1 2632 22 2007 3403 298501 66384 4.3999 4.3999 -154.677 -4.3999 0 0 618332. 2139.56 0.25 0.08 0.12 -1 -1 0.25 0.0148922 0.0128568 152 64 62 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 6.73 vpr 64.57 MiB 0.02 7180 -1 -1 1 0.04 -1 -1 34144 -1 -1 35 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66124 32 32 397 313 1 198 99 17 17 289 -1 unnamed_device 25.8 MiB 2.66 1125 15147 4465 9540 1142 64.6 MiB 0.12 0.00 3.50375 -124.908 -3.50375 3.50375 0.87 0.000224984 0.000177759 0.017141 0.013773 -1 -1 -1 -1 30 2615 20 6.87369e+06 489084 556674. 1926.21 0.96 0.0533442 0.0438888 25186 138497 -1 2047 22 1534 2693 140187 33757 2.78966 2.78966 -116.866 -2.78966 0 0 706193. 2443.58 0.27 0.05 0.12 -1 -1 0.27 0.0145921 0.0125912 150 63 62 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 7.32 vpr 64.48 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 34096 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66032 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 25.5 MiB 2.52 962 16825 4488 11549 788 64.5 MiB 0.13 0.00 4.1996 -145.34 -4.1996 4.1996 0.88 0.000206785 0.000163548 0.021257 0.0171171 -1 -1 -1 -1 32 3332 24 6.87369e+06 293451 586450. 2029.24 1.60 0.0694849 0.0574817 25474 144626 -1 2278 21 1867 3241 210798 52491 3.89741 3.89741 -156.479 -3.89741 0 0 744469. 2576.02 0.32 0.06 0.13 -1 -1 0.32 0.0139255 0.0121673 147 3 128 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 9.63 vpr 64.85 MiB 0.03 7312 -1 -1 1 0.04 -1 -1 35468 -1 -1 36 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66404 32 32 424 343 1 195 100 17 17 289 -1 unnamed_device 25.8 MiB 4.91 1065 20980 6969 11401 2610 64.8 MiB 0.18 0.00 3.58505 -126.902 -3.58505 3.58505 0.89 0.000227802 0.000178254 0.0291819 0.0233857 -1 -1 -1 -1 34 2319 20 6.87369e+06 503058 618332. 2139.56 1.42 0.0913997 0.0746768 25762 151098 -1 1916 20 1426 2342 132874 32480 2.79866 2.79866 -117.947 -2.79866 0 0 787024. 2723.27 0.31 0.05 0.13 -1 -1 0.31 0.0150225 0.0129967 148 96 25 25 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 11.97 vpr 64.82 MiB 0.02 7068 -1 -1 1 0.04 -1 -1 34028 -1 -1 39 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66380 32 32 395 311 1 198 103 17 17 289 -1 unnamed_device 25.9 MiB 4.81 1034 16009 4261 10158 1590 64.8 MiB 0.12 0.00 3.64005 -127.969 -3.64005 3.64005 0.87 0.000230782 0.000181626 0.0172985 0.013769 -1 -1 -1 -1 26 2873 26 6.87369e+06 544980 503264. 1741.40 4.05 0.106063 0.087048 24322 120374 -1 2419 22 1434 2696 208434 53636 3.36286 3.36286 -137.445 -3.36286 0 0 618332. 2139.56 0.25 0.06 0.11 -1 -1 0.25 0.0150222 0.012938 152 61 64 32 60 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 8.08 vpr 64.76 MiB 0.03 7024 -1 -1 1 0.04 -1 -1 33844 -1 -1 40 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66312 32 32 405 318 1 201 104 17 17 289 -1 unnamed_device 25.7 MiB 3.91 1111 18648 5077 11300 2271 64.8 MiB 0.13 0.00 3.58025 -127.27 -3.58025 3.58025 0.87 0.00024956 0.000190258 0.0211257 0.0167492 -1 -1 -1 -1 32 2692 32 6.87369e+06 558954 586450. 2029.24 1.00 0.0640685 0.0524316 25474 144626 -1 2279 22 1867 3067 208044 47662 2.94926 2.94926 -122.566 -2.94926 0 0 744469. 2576.02 0.28 0.06 0.13 -1 -1 0.28 0.014392 0.0124349 156 65 63 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 6.11 vpr 64.57 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 33876 -1 -1 39 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66116 32 32 376 288 1 202 103 17 17 289 -1 unnamed_device 25.7 MiB 1.42 958 13599 3600 8151 1848 64.6 MiB 0.08 0.00 4.3249 -147.82 -4.3249 4.3249 0.86 0.000216082 0.000170272 0.0142184 0.0113278 -1 -1 -1 -1 32 2911 36 6.87369e+06 544980 586450. 2029.24 1.63 0.0726237 0.060214 25474 144626 -1 2230 22 1793 2893 184546 46762 4.02571 4.02571 -159.108 -4.02571 0 0 744469. 2576.02 0.30 0.06 0.13 -1 -1 0.30 0.0155482 0.0134674 156 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 10.15 vpr 64.68 MiB 0.02 7180 -1 -1 1 0.05 -1 -1 34132 -1 -1 41 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66236 32 32 407 319 1 202 105 17 17 289 -1 unnamed_device 25.8 MiB 3.72 1138 19865 5157 12797 1911 64.7 MiB 0.15 0.00 4.20633 -143.385 -4.20633 4.20633 0.86 0.000249249 0.000201686 0.0226384 0.0181355 -1 -1 -1 -1 30 2568 24 6.87369e+06 572927 556674. 1926.21 3.16 0.106058 0.0864942 25186 138497 -1 2323 25 1941 3133 245373 54886 3.8924 3.8924 -154.334 -3.8924 0 0 706193. 2443.58 0.27 0.07 0.12 -1 -1 0.27 0.015799 0.0135051 157 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 9.40 vpr 65.14 MiB 0.03 7500 -1 -1 1 0.04 -1 -1 34216 -1 -1 37 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66700 31 32 449 367 1 195 100 17 17 289 -1 unnamed_device 26.0 MiB 5.09 910 8684 1839 6215 630 65.1 MiB 0.08 0.00 4.22589 -134.122 -4.22589 4.22589 0.88 0.000237887 0.00018619 0.0113147 0.00901135 -1 -1 -1 -1 30 2752 25 6.87369e+06 517032 556674. 1926.21 1.16 0.0547158 0.0450792 25186 138497 -1 2053 20 1379 2449 129700 33281 3.8074 3.8074 -136.498 -3.8074 0 0 706193. 2443.58 0.28 0.05 0.12 -1 -1 0.28 0.0140976 0.0121024 150 122 0 0 122 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 9.21 vpr 65.26 MiB 0.02 7100 -1 -1 1 0.05 -1 -1 33872 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66824 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 26.2 MiB 4.45 1073 15709 4453 9637 1619 65.3 MiB 0.12 0.00 4.13359 -143.434 -4.13359 4.13359 0.87 0.00023319 0.000183164 0.0217007 0.0173423 -1 -1 -1 -1 34 2807 23 6.87369e+06 293451 618332. 2139.56 1.56 0.086419 0.0705133 25762 151098 -1 2360 24 1910 3554 247932 57437 3.8237 3.8237 -146.285 -3.8237 0 0 787024. 2723.27 0.31 0.08 0.13 -1 -1 0.31 0.0197587 0.0170843 145 94 32 32 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 5.63 vpr 64.17 MiB 0.02 6792 -1 -1 1 0.03 -1 -1 34084 -1 -1 32 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65712 32 32 312 255 1 167 96 17 17 289 -1 unnamed_device 25.4 MiB 1.56 917 13236 3861 8362 1013 64.2 MiB 0.09 0.00 3.51475 -125.811 -3.51475 3.51475 0.88 0.000181736 0.000143806 0.012953 0.0103995 -1 -1 -1 -1 32 2257 23 6.87369e+06 447163 586450. 2029.24 0.93 0.0455365 0.0379513 25474 144626 -1 1881 20 1274 2049 133017 31213 2.83166 2.83166 -120.34 -2.83166 0 0 744469. 2576.02 0.30 0.04 0.13 -1 -1 0.30 0.0110052 0.00952089 121 34 63 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 8.10 vpr 64.43 MiB 0.02 7132 -1 -1 1 0.04 -1 -1 33908 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65976 32 32 370 314 1 166 80 17 17 289 -1 unnamed_device 25.6 MiB 4.07 946 12980 4388 6886 1706 64.4 MiB 0.09 0.00 3.54295 -128.782 -3.54295 3.54295 0.84 0.000209561 0.000164315 0.0181846 0.0146037 -1 -1 -1 -1 32 2368 24 6.87369e+06 223581 586450. 2029.24 0.95 0.0535829 0.043854 25474 144626 -1 2031 19 1252 1976 143153 32520 2.80696 2.80696 -122.073 -2.80696 0 0 744469. 2576.02 0.30 0.05 0.13 -1 -1 0.30 0.0127733 0.0111229 112 94 0 0 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 9.47 vpr 65.16 MiB 0.03 7328 -1 -1 1 0.04 -1 -1 34140 -1 -1 44 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66724 32 32 469 351 1 236 108 17 17 289 -1 unnamed_device 25.9 MiB 2.85 1417 17327 4454 11447 1426 65.2 MiB 0.15 0.00 4.99284 -170.997 -4.99284 4.99284 0.85 0.000258779 0.000204777 0.0200466 0.0160881 -1 -1 -1 -1 30 3591 25 6.87369e+06 614849 556674. 1926.21 3.42 0.12118 0.100026 25186 138497 -1 2850 21 2202 3809 257801 56093 4.31865 4.31865 -166.494 -4.31865 0 0 706193. 2443.58 0.27 0.07 0.12 -1 -1 0.27 0.017747 0.0153865 189 65 96 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 7.67 vpr 64.46 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 34020 -1 -1 35 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66004 32 32 368 284 1 198 99 17 17 289 -1 unnamed_device 25.6 MiB 3.65 1065 15831 3840 10210 1781 64.5 MiB 0.12 0.00 3.60769 -128.222 -3.60769 3.60769 0.86 0.000212982 0.000167841 0.0167801 0.0133855 -1 -1 -1 -1 30 2367 19 6.87369e+06 489084 556674. 1926.21 0.94 0.0532495 0.0440794 25186 138497 -1 1991 18 1315 2128 103318 26163 3.01816 3.01816 -127.54 -3.01816 0 0 706193. 2443.58 0.28 0.04 0.12 -1 -1 0.28 0.0126446 0.0110209 150 34 92 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 5.08 vpr 64.19 MiB 0.02 7056 -1 -1 1 0.04 -1 -1 33584 -1 -1 31 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65732 30 32 296 244 1 160 93 17 17 289 -1 unnamed_device 25.4 MiB 0.99 821 15633 5296 7678 2659 64.2 MiB 0.10 0.00 3.50375 -115.855 -3.50375 3.50375 0.91 0.00018557 0.000141552 0.0167091 0.0132206 -1 -1 -1 -1 28 2090 26 6.87369e+06 433189 531479. 1839.03 0.96 0.0501889 0.0413844 24610 126494 -1 1734 21 1391 2154 156467 37350 2.87096 2.87096 -113.424 -2.87096 0 0 648988. 2245.63 0.25 0.05 0.11 -1 -1 0.25 0.011016 0.0094998 116 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 12.36 vpr 65.21 MiB 0.03 7520 -1 -1 1 0.05 -1 -1 34612 -1 -1 47 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66776 32 32 531 413 1 236 111 17 17 289 -1 unnamed_device 26.0 MiB 7.53 1186 22455 6542 12947 2966 65.2 MiB 0.17 0.00 4.91264 -166.988 -4.91264 4.91264 0.88 0.000276336 0.000216753 0.0258362 0.0204281 -1 -1 -1 -1 32 3184 26 6.87369e+06 656770 586450. 2029.24 1.54 0.0895023 0.0729292 25474 144626 -1 2560 23 2468 3915 286338 64771 4.53925 4.53925 -169.688 -4.53925 0 0 744469. 2576.02 0.29 0.09 0.13 -1 -1 0.29 0.0208988 0.0179415 190 127 32 32 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 8.61 vpr 64.41 MiB 0.03 7120 -1 -1 1 0.04 -1 -1 33816 -1 -1 40 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65960 32 32 376 288 1 202 104 17 17 289 -1 unnamed_device 25.7 MiB 4.05 985 19868 5842 10383 3643 64.4 MiB 0.13 0.00 4.23469 -143.901 -4.23469 4.23469 0.85 0.000219555 0.000173924 0.0200945 0.016068 -1 -1 -1 -1 32 2585 23 6.87369e+06 558954 586450. 2029.24 1.38 0.0667899 0.0548068 25474 144626 -1 2018 21 1851 2802 189571 44889 3.7171 3.7171 -142.071 -3.7171 0 0 744469. 2576.02 0.29 0.06 0.13 -1 -1 0.29 0.0152623 0.0132759 156 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 5.41 vpr 64.16 MiB 0.02 6800 -1 -1 1 0.04 -1 -1 34024 -1 -1 33 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65704 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 25.4 MiB 1.26 863 11641 2973 7602 1066 64.2 MiB 0.10 0.00 3.61805 -128.853 -3.61805 3.61805 0.90 0.000187003 0.0001482 0.0135007 0.0109314 -1 -1 -1 -1 30 2313 20 6.87369e+06 461137 556674. 1926.21 1.01 0.0427199 0.0355415 25186 138497 -1 1833 21 1352 2272 138158 32614 2.73936 2.73936 -119.013 -2.73936 0 0 706193. 2443.58 0.28 0.05 0.12 -1 -1 0.28 0.0125044 0.0109395 123 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 8.37 vpr 64.73 MiB 0.03 7228 -1 -1 1 0.04 -1 -1 34248 -1 -1 45 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66280 32 32 438 320 1 236 109 17 17 289 -1 unnamed_device 25.9 MiB 3.62 1252 21169 6025 12385 2759 64.7 MiB 0.16 0.00 4.96574 -169.764 -4.96574 4.96574 0.87 0.000243473 0.000192614 0.0230227 0.018398 -1 -1 -1 -1 28 3620 50 6.87369e+06 628823 531479. 1839.03 1.54 0.0793803 0.0653056 24610 126494 -1 3048 25 2913 4956 399831 91071 5.08775 5.08775 -182.431 -5.08775 0 0 648988. 2245.63 0.26 0.10 0.11 -1 -1 0.26 0.0174784 0.0149605 189 34 128 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 6.75 vpr 64.02 MiB 0.02 6832 -1 -1 1 0.03 -1 -1 33824 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65556 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 25.4 MiB 2.16 800 11776 2730 8638 408 64.0 MiB 0.08 0.00 3.52575 -126.142 -3.52575 3.52575 0.89 0.000177093 0.000139936 0.0143855 0.0116211 -1 -1 -1 -1 34 2021 20 6.87369e+06 223581 618332. 2139.56 1.44 0.0637202 0.0526917 25762 151098 -1 1822 18 1181 1994 143309 33422 3.19656 3.19656 -130.066 -3.19656 0 0 787024. 2723.27 0.31 0.04 0.13 -1 -1 0.31 0.0105987 0.00925226 114 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 6.99 vpr 64.29 MiB 0.02 6940 -1 -1 1 0.04 -1 -1 33712 -1 -1 33 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65832 30 32 296 244 1 162 95 17 17 289 -1 unnamed_device 25.4 MiB 2.99 726 10247 2605 6820 822 64.3 MiB 0.08 0.00 3.56001 -114.521 -3.56001 3.56001 0.89 0.000182159 0.00014383 0.0105834 0.00858064 -1 -1 -1 -1 28 2106 26 6.87369e+06 461137 531479. 1839.03 0.94 0.0414826 0.0343243 24610 126494 -1 1823 20 1407 2354 162786 39404 3.03826 3.03826 -118.387 -3.03826 0 0 648988. 2245.63 0.25 0.05 0.11 -1 -1 0.25 0.0106467 0.00919247 118 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 9.30 vpr 64.50 MiB 0.02 7328 -1 -1 1 0.04 -1 -1 33912 -1 -1 35 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66044 29 32 393 319 1 185 96 17 17 289 -1 unnamed_device 25.7 MiB 4.32 838 14550 4269 7291 2990 64.5 MiB 0.11 0.00 3.60705 -111.262 -3.60705 3.60705 0.87 0.000214083 0.000168255 0.0164088 0.0130692 -1 -1 -1 -1 28 2897 35 6.87369e+06 489084 531479. 1839.03 1.83 0.0596328 0.0487637 24610 126494 -1 2141 22 1727 3053 249344 59559 3.57246 3.57246 -123.368 -3.57246 0 0 648988. 2245.63 0.27 0.07 0.11 -1 -1 0.27 0.0143817 0.0123507 141 88 29 29 85 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 7.49 vpr 64.60 MiB 0.02 7200 -1 -1 1 0.04 -1 -1 34020 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66148 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 25.6 MiB 3.28 855 9385 2020 5887 1478 64.6 MiB 0.06 0.00 4.2388 -145.988 -4.2388 4.2388 0.87 0.000261918 0.000213723 0.0135543 0.0109883 -1 -1 -1 -1 32 2841 23 6.87369e+06 293451 586450. 2029.24 1.06 0.054852 0.0454186 25474 144626 -1 2073 22 1934 2974 207112 52024 3.9064 3.9064 -153.049 -3.9064 0 0 744469. 2576.02 0.31 0.07 0.13 -1 -1 0.31 0.0171929 0.0149603 147 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 9.99 vpr 64.74 MiB 0.03 7348 -1 -1 1 0.04 -1 -1 33872 -1 -1 37 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66292 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 26.1 MiB 5.67 1101 18901 5415 11502 1984 64.7 MiB 0.15 0.00 4.27375 -150.325 -4.27375 4.27375 0.88 0.000235951 0.000186396 0.0215484 0.0171093 -1 -1 -1 -1 30 2727 28 6.87369e+06 517032 556674. 1926.21 1.19 0.0641632 0.0524517 25186 138497 -1 2370 21 1881 3186 205028 46397 3.7811 3.7811 -148.809 -3.7811 0 0 706193. 2443.58 0.29 0.06 0.12 -1 -1 0.29 0.0140968 0.0121766 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 8.51 vpr 64.43 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 34096 -1 -1 33 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65980 32 32 345 287 1 168 97 17 17 289 -1 unnamed_device 25.5 MiB 3.96 834 17191 6478 8946 1767 64.4 MiB 0.11 0.00 3.58505 -126.386 -3.58505 3.58505 0.86 0.000201303 0.000157424 0.0181856 0.0147162 -1 -1 -1 -1 34 2089 22 6.87369e+06 461137 618332. 2139.56 1.44 0.070595 0.0579194 25762 151098 -1 1735 17 1235 1956 122081 30864 3.04926 3.04926 -122.245 -3.04926 0 0 787024. 2723.27 0.30 0.04 0.13 -1 -1 0.30 0.0105222 0.00916378 123 65 32 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 9.85 vpr 64.05 MiB 0.03 7152 -1 -1 1 0.04 -1 -1 34184 -1 -1 18 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65592 31 32 353 302 1 160 81 17 17 289 -1 unnamed_device 25.2 MiB 5.31 853 13381 4420 7135 1826 64.1 MiB 0.09 0.00 3.47075 -119.995 -3.47075 3.47075 0.88 0.000192776 0.000150994 0.0163016 0.0129391 -1 -1 -1 -1 34 2045 22 6.87369e+06 251529 618332. 2139.56 1.43 0.0697653 0.0568018 25762 151098 -1 1733 21 1033 1932 133986 30887 2.70966 2.70966 -113.156 -2.70966 0 0 787024. 2723.27 0.32 0.05 0.13 -1 -1 0.32 0.01318 0.0113487 108 90 0 0 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 7.93 vpr 64.44 MiB 0.02 7232 -1 -1 1 0.03 -1 -1 33896 -1 -1 34 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65984 30 32 374 297 1 189 96 17 17 289 -1 unnamed_device 25.5 MiB 3.79 920 16740 4557 9743 2440 64.4 MiB 0.12 0.00 3.58505 -116.136 -3.58505 3.58505 0.86 0.00021017 0.000166193 0.0182965 0.0146992 -1 -1 -1 -1 32 2347 21 6.87369e+06 475111 586450. 2029.24 0.94 0.0539122 0.0443896 25474 144626 -1 1769 18 1083 1806 99206 26451 2.79566 2.79566 -109.834 -2.79566 0 0 744469. 2576.02 0.30 0.04 0.18 -1 -1 0.30 0.0135531 0.0119196 143 60 60 30 57 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 7.99 vpr 64.32 MiB 0.02 7168 -1 -1 1 0.04 -1 -1 33960 -1 -1 35 28 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65860 28 32 332 260 1 180 95 17 17 289 -1 unnamed_device 25.4 MiB 2.04 910 12623 3390 8288 945 64.3 MiB 0.09 0.00 4.19891 -126.139 -4.19891 4.19891 0.86 0.000207099 0.000169791 0.0140662 0.0114999 -1 -1 -1 -1 28 2341 25 6.87369e+06 489084 531479. 1839.03 2.84 0.0843971 0.0696707 24610 126494 -1 2006 18 1450 2389 167831 39763 3.7341 3.7341 -130.294 -3.7341 0 0 648988. 2245.63 0.26 0.06 0.11 -1 -1 0.26 0.0149856 0.0131992 139 34 84 28 28 28 +fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 9.82 vpr 63.48 MiB 0.02 7148 -1 -1 1 0.04 -1 -1 33752 -1 -1 18 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65004 30 32 325 273 1 161 80 17 17 289 -1 unnamed_device 24.8 MiB 3.92 881 11432 3949 5585 1898 63.5 MiB 0.08 0.00 3.58339 -121.207 -3.58339 3.58339 0.85 0.000184195 0.00014378 0.0139917 0.0112228 -1 -1 -1 -1 32 2180 23 6.87369e+06 251529 586450. 2029.24 2.78 0.0957252 0.0783898 25474 144626 -1 1763 25 1569 2711 169242 40100 2.97596 2.97596 -118.862 -2.97596 0 0 744469. 2576.02 0.31 0.06 0.13 -1 -1 0.31 0.0138946 0.0119286 110 63 30 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 8.98 vpr 63.23 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 33984 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 361 308 1 163 81 17 17 289 -1 unnamed_device 24.5 MiB 4.46 903 14256 4854 7252 2150 63.2 MiB 0.09 0.00 3.47695 -121.703 -3.47695 3.47695 0.86 0.00019743 0.000154081 0.0179973 0.0142319 -1 -1 -1 -1 34 2124 20 6.87369e+06 237555 618332. 2139.56 1.40 0.0726181 0.0589693 25762 151098 -1 1744 19 997 1707 117507 26772 2.75466 2.75466 -113.579 -2.75466 0 0 787024. 2723.27 0.32 0.05 0.14 -1 -1 0.32 0.0133642 0.0115452 110 91 0 0 91 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 9.29 vpr 64.41 MiB 0.02 7164 -1 -1 1 0.04 -1 -1 33980 -1 -1 37 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65952 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 25.4 MiB 1.49 962 16804 5065 8760 2979 64.4 MiB 0.13 0.00 4.2699 -140.915 -4.2699 4.2699 0.89 0.000201967 0.000159278 0.0167657 0.0135018 -1 -1 -1 -1 28 3281 39 6.87369e+06 517032 531479. 1839.03 4.64 0.105846 0.088943 24610 126494 -1 2379 22 2012 3237 253918 60479 4.132 4.132 -154.013 -4.132 0 0 648988. 2245.63 0.27 0.07 0.11 -1 -1 0.27 0.0140896 0.012221 151 4 124 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 9.43 vpr 64.70 MiB 0.02 7100 -1 -1 1 0.04 -1 -1 34244 -1 -1 38 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66256 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 25.9 MiB 5.24 1088 19380 5928 11114 2338 64.7 MiB 0.14 0.00 4.1996 -147.862 -4.1996 4.1996 0.88 0.000223639 0.000176418 0.0204094 0.0160962 -1 -1 -1 -1 28 3091 23 6.87369e+06 531006 531479. 1839.03 1.07 0.0592282 0.0484217 24610 126494 -1 2677 25 2370 4236 342464 77824 4.0067 4.0067 -158.015 -4.0067 0 0 648988. 2245.63 0.25 0.09 0.11 -1 -1 0.25 0.0161349 0.013831 156 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 10.00 vpr 64.45 MiB 0.02 7176 -1 -1 1 0.04 -1 -1 33812 -1 -1 37 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66000 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 25.6 MiB 5.40 1134 16551 4231 10536 1784 64.5 MiB 0.12 0.00 4.30289 -150.348 -4.30289 4.30289 0.89 0.000229578 0.000181774 0.0182622 0.0145787 -1 -1 -1 -1 28 3192 26 6.87369e+06 517032 531479. 1839.03 1.42 0.0644396 0.0534141 24610 126494 -1 2656 23 2201 3810 301598 68422 3.9657 3.9657 -155.991 -3.9657 0 0 648988. 2245.63 0.27 0.08 0.13 -1 -1 0.27 0.0156505 0.0135011 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 8.08 vpr 64.92 MiB 0.03 7060 -1 -1 1 0.04 -1 -1 34028 -1 -1 39 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66480 32 32 399 315 1 198 103 17 17 289 -1 unnamed_device 26.1 MiB 3.95 1120 16732 4960 9705 2067 64.9 MiB 0.13 0.00 4.18791 -143.549 -4.18791 4.18791 0.86 0.000226144 0.000177789 0.0176148 0.0140408 -1 -1 -1 -1 32 2929 24 6.87369e+06 544980 586450. 2029.24 0.99 0.0593215 0.048804 25474 144626 -1 2332 23 1600 2746 174868 42500 3.5868 3.5868 -140.215 -3.5868 0 0 744469. 2576.02 0.29 0.06 0.13 -1 -1 0.29 0.0160521 0.0138038 152 65 60 30 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 7.41 vpr 64.09 MiB 0.03 6836 -1 -1 1 0.04 -1 -1 33796 -1 -1 19 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65624 30 32 296 244 1 160 81 17 17 289 -1 unnamed_device 25.4 MiB 3.35 762 13731 3861 8062 1808 64.1 MiB 0.09 0.00 3.50375 -116.253 -3.50375 3.50375 0.88 0.000176066 0.000139445 0.0153151 0.0123162 -1 -1 -1 -1 32 2089 19 6.87369e+06 265503 586450. 2029.24 0.93 0.0443482 0.0366502 25474 144626 -1 1765 18 1126 1851 117797 28473 3.05726 3.05726 -120.765 -3.05726 0 0 744469. 2576.02 0.29 0.04 0.13 -1 -1 0.29 0.0101903 0.00883635 110 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 9.56 vpr 64.76 MiB 0.02 7172 -1 -1 1 0.04 -1 -1 34020 -1 -1 23 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66312 30 32 383 303 1 192 85 17 17 289 -1 unnamed_device 25.8 MiB 4.82 973 15709 4818 9015 1876 64.8 MiB 0.12 0.00 4.25789 -139.697 -4.25789 4.25789 0.86 0.000216265 0.000171209 0.0225395 0.0181097 -1 -1 -1 -1 34 2310 23 6.87369e+06 321398 618332. 2139.56 1.57 0.0931115 0.0767025 25762 151098 -1 1941 22 1646 2659 205712 45022 3.7296 3.7296 -137.115 -3.7296 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0142961 0.0124046 140 63 60 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 10.87 vpr 64.92 MiB 0.02 7340 -1 -1 1 0.04 -1 -1 34308 -1 -1 43 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66476 32 32 469 381 1 202 107 17 17 289 -1 unnamed_device 25.9 MiB 6.63 1154 14022 3627 9188 1207 64.9 MiB 0.12 0.00 4.3139 -148.916 -4.3139 4.3139 0.87 0.000253112 0.000198324 0.0163515 0.013091 -1 -1 -1 -1 32 2801 25 6.87369e+06 600875 586450. 2029.24 1.04 0.0586492 0.0480019 25474 144626 -1 2360 23 2018 3392 236256 55951 3.6638 3.6638 -146.402 -3.6638 0 0 744469. 2576.02 0.30 0.07 0.13 -1 -1 0.30 0.0170194 0.0146293 158 127 0 0 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 6.01 vpr 64.64 MiB 0.03 7476 -1 -1 1 0.05 -1 -1 34052 -1 -1 33 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66196 31 32 425 341 1 197 96 17 17 289 -1 unnamed_device 25.8 MiB 1.64 1028 18273 6109 9512 2652 64.6 MiB 0.13 0.00 4.21733 -142.23 -4.21733 4.21733 0.88 0.000227686 0.000179646 0.0216097 0.0172527 -1 -1 -1 -1 28 2890 23 6.87369e+06 461137 531479. 1839.03 1.19 0.0624524 0.0513722 24610 126494 -1 2321 22 1957 3302 238714 55033 3.8224 3.8224 -148.426 -3.8224 0 0 648988. 2245.63 0.25 0.07 0.10 -1 -1 0.25 0.0150431 0.0129092 149 94 31 31 93 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 7.76 vpr 64.51 MiB 0.02 7372 -1 -1 1 0.04 -1 -1 33952 -1 -1 32 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66060 30 32 404 328 1 188 94 17 17 289 -1 unnamed_device 25.7 MiB 2.99 935 16921 4888 8942 3091 64.5 MiB 0.15 0.00 3.55591 -115.746 -3.55591 3.55591 0.97 0.000226366 0.00017879 0.0243287 0.0196111 -1 -1 -1 -1 32 2417 27 6.87369e+06 447163 586450. 2029.24 1.45 0.0757108 0.062121 25474 144626 -1 1907 21 1729 2823 182050 44816 2.83496 2.83496 -110.923 -2.83496 0 0 744469. 2576.02 0.29 0.05 0.12 -1 -1 0.29 0.0138646 0.0119459 141 92 26 26 90 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 11.37 vpr 64.75 MiB 0.03 7200 -1 -1 1 0.04 -1 -1 34252 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66304 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 25.9 MiB 6.65 1090 14593 4195 9072 1326 64.8 MiB 0.11 0.00 4.1996 -148.343 -4.1996 4.1996 0.86 0.000224438 0.000176307 0.0197113 0.0157725 -1 -1 -1 -1 34 3084 23 6.87369e+06 293451 618332. 2139.56 1.56 0.0818211 0.0667397 25762 151098 -1 2595 20 1742 3039 241240 53823 3.8814 3.8814 -153.241 -3.8814 0 0 787024. 2723.27 0.32 0.07 0.13 -1 -1 0.32 0.0146073 0.0126903 147 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 6.90 vpr 64.59 MiB 0.02 7220 -1 -1 1 0.04 -1 -1 34084 -1 -1 36 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66140 29 32 387 316 1 181 97 17 17 289 -1 unnamed_device 25.9 MiB 2.97 933 12751 3451 8328 972 64.6 MiB 0.10 0.00 3.59125 -113.631 -3.59125 3.59125 0.89 0.000236031 0.000177176 0.0152882 0.0121243 -1 -1 -1 -1 26 2377 23 6.87369e+06 503058 503264. 1741.40 0.88 0.0516615 0.0422992 24322 120374 -1 2134 20 1510 2530 183395 43145 3.18876 3.18876 -116.844 -3.18876 0 0 618332. 2139.56 0.25 0.06 0.10 -1 -1 0.25 0.0143508 0.0123322 138 88 26 26 85 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 5.98 vpr 64.30 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 34012 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65840 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 25.3 MiB 1.45 860 12292 3298 7764 1230 64.3 MiB 0.09 0.00 3.53195 -127.337 -3.53195 3.53195 0.87 0.0001792 0.000141239 0.015654 0.0126405 -1 -1 -1 -1 34 2207 25 6.87369e+06 223581 618332. 2139.56 1.44 0.0656018 0.0542633 25762 151098 -1 1899 22 1466 2255 171693 38988 3.00726 3.00726 -125.897 -3.00726 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0117582 0.0101941 114 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 10.97 vpr 64.73 MiB 0.02 7108 -1 -1 1 0.04 -1 -1 34112 -1 -1 37 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66288 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 25.7 MiB 6.45 1090 19841 5460 12561 1820 64.7 MiB 0.14 0.00 4.3249 -149.687 -4.3249 4.3249 0.84 0.000240772 0.000192809 0.0225884 0.0182896 -1 -1 -1 -1 32 2703 27 6.87369e+06 517032 586450. 2029.24 1.45 0.0789665 0.0649789 25474 144626 -1 2284 22 1882 2999 211673 50417 3.9877 3.9877 -151.644 -3.9877 0 0 744469. 2576.02 0.28 0.07 0.13 -1 -1 0.28 0.015744 0.0136407 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 10.69 vpr 64.35 MiB 0.02 7116 -1 -1 1 0.04 -1 -1 34168 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65892 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 25.5 MiB 5.86 1089 15151 6141 8127 883 64.3 MiB 0.12 0.00 4.2388 -152.365 -4.2388 4.2388 0.87 0.000245556 0.00019339 0.0217641 0.0175302 -1 -1 -1 -1 34 2813 25 6.87369e+06 293451 618332. 2139.56 1.56 0.0870329 0.0714122 25762 151098 -1 2284 21 1936 3204 224975 50146 3.8064 3.8064 -151.466 -3.8064 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.014551 0.0125512 147 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 9.35 vpr 64.21 MiB 0.02 6920 -1 -1 1 0.04 -1 -1 34128 -1 -1 30 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65748 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 25.5 MiB 4.92 885 16708 5068 9384 2256 64.2 MiB 0.11 0.00 3.50501 -121.174 -3.50501 3.50501 0.85 0.000184065 0.000144548 0.0160822 0.0127345 -1 -1 -1 -1 34 2029 23 6.87369e+06 419215 618332. 2139.56 1.37 0.0644009 0.0524191 25762 151098 -1 1746 23 992 1732 125709 28812 2.77566 2.77566 -111.155 -2.77566 0 0 787024. 2723.27 0.31 0.05 0.13 -1 -1 0.31 0.0131774 0.0113568 112 55 32 32 54 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 5.62 vpr 63.98 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 33912 -1 -1 17 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65520 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 25.1 MiB 1.76 726 9368 2169 6075 1124 64.0 MiB 0.07 0.00 3.51475 -119.248 -3.51475 3.51475 0.86 0.000170294 0.000134453 0.0111485 0.00900768 -1 -1 -1 -1 30 2026 22 6.87369e+06 237555 556674. 1926.21 0.92 0.0413506 0.0343634 25186 138497 -1 1719 20 1275 2089 119933 27997 3.12156 3.12156 -122.852 -3.12156 0 0 706193. 2443.58 0.27 0.04 0.12 -1 -1 0.27 0.0106788 0.00925365 112 4 93 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 7.90 vpr 64.38 MiB 0.03 7092 -1 -1 1 0.05 -1 -1 33812 -1 -1 35 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65928 32 32 381 303 1 194 99 17 17 289 -1 unnamed_device 25.8 MiB 3.96 1023 18795 5443 10816 2536 64.4 MiB 0.13 0.00 4.29699 -143.771 -4.29699 4.29699 0.86 0.000220889 0.000174404 0.0203901 0.0162145 -1 -1 -1 -1 28 2673 24 6.87369e+06 489084 531479. 1839.03 0.89 0.056804 0.0465101 24610 126494 -1 2327 22 1745 2688 197334 45132 3.8174 3.8174 -143.385 -3.8174 0 0 648988. 2245.63 0.25 0.06 0.11 -1 -1 0.25 0.0138575 0.0119199 144 59 60 32 58 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 5.81 vpr 64.68 MiB 0.03 7268 -1 -1 1 0.04 -1 -1 33724 -1 -1 33 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66232 32 32 406 330 1 191 97 17 17 289 -1 unnamed_device 25.8 MiB 1.64 1098 17191 5138 9984 2069 64.7 MiB 0.13 0.00 4.21185 -141.335 -4.21185 4.21185 0.89 0.000231804 0.000182374 0.0201894 0.0161278 -1 -1 -1 -1 28 2820 35 6.87369e+06 461137 531479. 1839.03 1.00 0.06356 0.0520982 24610 126494 -1 2284 19 1554 2569 195862 45421 3.87196 3.87196 -142.071 -3.87196 0 0 648988. 2245.63 0.26 0.06 0.11 -1 -1 0.26 0.0133986 0.0115599 142 88 28 28 88 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 6.69 vpr 64.90 MiB 0.02 7312 -1 -1 1 0.04 -1 -1 34000 -1 -1 41 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66460 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 25.6 MiB 1.58 1421 17642 5571 10308 1763 64.9 MiB 0.16 0.00 4.86064 -164.755 -4.86064 4.86064 0.87 0.000263008 0.000213785 0.0204632 0.0165214 -1 -1 -1 -1 28 3916 26 6.87369e+06 572927 531479. 1839.03 1.92 0.0684584 0.0573019 24610 126494 -1 3082 22 2321 3773 334328 70756 4.99175 4.99175 -173.828 -4.99175 0 0 648988. 2245.63 0.25 0.08 0.11 -1 -1 0.25 0.0163948 0.0142184 183 3 156 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 7.72 vpr 64.30 MiB 0.02 7160 -1 -1 1 0.04 -1 -1 34256 -1 -1 32 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65844 30 32 371 295 1 188 94 17 17 289 -1 unnamed_device 25.7 MiB 3.49 1005 13939 3832 8899 1208 64.3 MiB 0.11 0.00 3.60295 -120.353 -3.60295 3.60295 0.85 0.000225151 0.000178276 0.0169537 0.0137336 -1 -1 -1 -1 32 2275 22 6.87369e+06 447163 586450. 2029.24 0.95 0.0541161 0.0445457 25474 144626 -1 1885 19 1478 2436 130317 32257 2.83966 2.83966 -114.808 -2.83966 0 0 744469. 2576.02 0.29 0.05 0.13 -1 -1 0.29 0.0135855 0.0118748 141 59 60 30 56 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 5.31 vpr 64.10 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 34176 -1 -1 20 27 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65640 27 32 269 226 1 145 79 17 17 289 -1 unnamed_device 25.3 MiB 1.22 681 12247 4957 6112 1178 64.1 MiB 0.08 0.00 3.57611 -105.524 -3.57611 3.57611 0.94 0.000156987 0.000123439 0.013713 0.0111065 -1 -1 -1 -1 32 1634 25 6.87369e+06 279477 586450. 2029.24 0.92 0.0424118 0.0351215 25474 144626 -1 1385 16 925 1340 92892 20753 2.79566 2.79566 -100.941 -2.79566 0 0 744469. 2576.02 0.29 0.03 0.13 -1 -1 0.29 0.00883396 0.00771813 102 34 54 27 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 8.73 vpr 65.28 MiB 0.03 7392 -1 -1 1 0.04 -1 -1 34368 -1 -1 42 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66844 32 32 493 378 1 233 106 17 17 289 -1 unnamed_device 26.1 MiB 3.57 1290 11856 2585 8478 793 65.3 MiB 0.11 0.00 4.1886 -144.956 -4.1886 4.1886 0.86 0.000268207 0.000205585 0.0152085 0.0120794 -1 -1 -1 -1 28 4033 24 6.87369e+06 586901 531479. 1839.03 1.96 0.0645837 0.0531432 24610 126494 -1 3163 24 2618 4658 407819 90506 4.079 4.079 -154.833 -4.079 0 0 648988. 2245.63 0.25 0.11 0.11 -1 -1 0.25 0.0201237 0.0171043 184 95 62 31 95 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 9.77 vpr 64.76 MiB 0.03 7464 -1 -1 1 0.04 -1 -1 34044 -1 -1 23 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66312 31 32 455 371 1 198 86 17 17 289 -1 unnamed_device 25.8 MiB 5.15 1008 15584 4068 9789 1727 64.8 MiB 0.10 0.00 4.97514 -152.566 -4.97514 4.97514 0.85 0.000234792 0.00018425 0.0214986 0.0171765 -1 -1 -1 -1 34 2579 26 6.87369e+06 321398 618332. 2139.56 1.52 0.086698 0.070586 25762 151098 -1 2167 20 1458 2343 156980 38505 4.17485 4.17485 -151.262 -4.17485 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0154544 0.0133447 144 124 0 0 124 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 9.26 vpr 64.09 MiB 0.02 7120 -1 -1 1 0.04 -1 -1 33840 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65632 32 32 355 304 1 161 80 17 17 289 -1 unnamed_device 25.4 MiB 4.75 845 12120 3376 6849 1895 64.1 MiB 0.08 0.00 3.7386 -118.219 -3.7386 3.7386 0.86 0.000192105 0.000150525 0.0152552 0.0122041 -1 -1 -1 -1 34 2212 22 6.87369e+06 223581 618332. 2139.56 1.40 0.0694663 0.0568494 25762 151098 -1 1876 20 1037 1679 130427 29709 2.73466 2.73466 -113.627 -2.73466 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0132368 0.0114156 107 89 0 0 89 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 5.91 vpr 64.53 MiB 0.03 7028 -1 -1 1 0.04 -1 -1 34000 -1 -1 34 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66076 32 32 364 282 1 196 98 17 17 289 -1 unnamed_device 25.7 MiB 1.55 1081 19448 5671 11859 1918 64.5 MiB 0.14 0.00 4.20169 -143.405 -4.20169 4.20169 0.88 0.000210604 0.000166561 0.0207051 0.0165495 -1 -1 -1 -1 32 2738 26 6.87369e+06 475111 586450. 2029.24 1.03 0.0607626 0.0500666 25474 144626 -1 2232 18 1350 2018 140770 33457 4.102 4.102 -145.747 -4.102 0 0 744469. 2576.02 0.31 0.06 0.13 -1 -1 0.31 0.0151876 0.0134373 147 34 90 30 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 7.56 vpr 65.18 MiB 0.03 7164 -1 -1 1 0.04 -1 -1 34240 -1 -1 40 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66744 31 32 443 336 1 224 103 17 17 289 -1 unnamed_device 26.2 MiB 2.60 1009 19865 5999 9806 4060 65.2 MiB 0.15 0.00 4.27909 -139.575 -4.27909 4.27909 0.89 0.000252308 0.000191336 0.02376 0.0188415 -1 -1 -1 -1 36 2611 23 6.87369e+06 558954 648988. 2245.63 1.60 0.092528 0.0756503 26050 158493 -1 2055 20 1853 2883 181445 47067 3.7451 3.7451 -136.707 -3.7451 0 0 828058. 2865.25 0.31 0.06 0.15 -1 -1 0.31 0.0152857 0.0132366 176 64 87 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 6.72 vpr 64.38 MiB 0.02 7144 -1 -1 1 0.04 -1 -1 34148 -1 -1 36 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65928 30 32 373 297 1 188 98 17 17 289 -1 unnamed_device 25.6 MiB 2.55 1081 17873 5123 10262 2488 64.4 MiB 0.13 0.00 3.55039 -117.277 -3.55039 3.55039 0.89 0.000195991 0.00015467 0.0190544 0.015292 -1 -1 -1 -1 32 2575 24 6.87369e+06 503058 586450. 2029.24 0.98 0.0565994 0.046632 25474 144626 -1 2141 19 1363 2491 155566 37319 2.82066 2.82066 -113.096 -2.82066 0 0 744469. 2576.02 0.29 0.05 0.13 -1 -1 0.29 0.0122038 0.010555 144 61 58 30 58 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 8.08 vpr 64.77 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 34156 -1 -1 46 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66324 32 32 407 319 1 202 110 17 17 289 -1 unnamed_device 25.7 MiB 3.51 1127 20887 5685 13197 2005 64.8 MiB 0.15 0.00 4.26133 -148.87 -4.26133 4.26133 0.85 0.000237702 0.000187783 0.0205024 0.0162343 -1 -1 -1 -1 26 3142 28 6.87369e+06 642796 503264. 1741.40 1.46 0.0615364 0.0502704 24322 120374 -1 2453 21 2015 3438 256283 60778 4.0257 4.0257 -157.003 -4.0257 0 0 618332. 2139.56 0.25 0.07 0.10 -1 -1 0.25 0.0143424 0.0123455 160 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 8.18 vpr 64.76 MiB 0.02 7200 -1 -1 1 0.04 -1 -1 34176 -1 -1 42 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66316 32 32 405 318 1 201 106 17 17 289 -1 unnamed_device 25.7 MiB 3.95 1124 19356 5960 11281 2115 64.8 MiB 0.14 0.00 3.52575 -126.289 -3.52575 3.52575 0.95 0.000231539 0.000181695 0.0207286 0.0164649 -1 -1 -1 -1 28 2720 22 6.87369e+06 586901 531479. 1839.03 0.99 0.0592066 0.0484379 24610 126494 -1 2281 23 1865 2999 197983 46445 2.85366 2.85366 -124.307 -2.85366 0 0 648988. 2245.63 0.27 0.06 0.12 -1 -1 0.27 0.0147338 0.0126694 157 65 63 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 6.55 vpr 63.94 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 33844 -1 -1 19 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65472 29 32 287 238 1 155 80 17 17 289 -1 unnamed_device 25.3 MiB 2.18 779 12808 4806 6279 1723 63.9 MiB 0.08 0.00 3.53195 -113.473 -3.53195 3.53195 0.88 0.00018718 0.000142107 0.0152547 0.0123725 -1 -1 -1 -1 34 1729 22 6.87369e+06 265503 618332. 2139.56 1.35 0.0606198 0.0498247 25762 151098 -1 1532 17 1079 1511 104778 23244 2.99616 2.99616 -114.192 -2.99616 0 0 787024. 2723.27 0.30 0.04 0.13 -1 -1 0.30 0.00966826 0.00843156 107 34 58 29 29 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 7.78 vpr 64.10 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 33904 -1 -1 15 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65640 32 32 334 290 1 154 79 17 17 289 -1 unnamed_device 25.4 MiB 3.34 831 13092 4612 6447 2033 64.1 MiB 0.08 0.00 3.7386 -116.045 -3.7386 3.7386 0.87 0.000183653 0.0001437 0.0161531 0.0128571 -1 -1 -1 -1 34 1981 19 6.87369e+06 209608 618332. 2139.56 1.36 0.0639777 0.0520625 25762 151098 -1 1734 18 961 1429 108243 23610 2.77096 2.77096 -111.679 -2.77096 0 0 787024. 2723.27 0.30 0.04 0.13 -1 -1 0.30 0.010599 0.00915162 101 82 0 0 82 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 7.30 vpr 64.63 MiB 0.02 7164 -1 -1 1 0.04 -1 -1 34024 -1 -1 39 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66180 31 32 365 281 1 197 102 17 17 289 -1 unnamed_device 25.7 MiB 2.30 1129 19618 5686 11712 2220 64.6 MiB 0.16 0.00 4.1955 -141.345 -4.1955 4.1955 0.89 0.000219606 0.00017348 0.0206175 0.0165582 -1 -1 -1 -1 26 3057 24 6.87369e+06 544980 503264. 1741.40 1.82 0.0670987 0.0559839 24322 120374 -1 2634 18 1808 2912 248656 53210 4.1163 4.1163 -154.166 -4.1163 0 0 618332. 2139.56 0.25 0.07 0.11 -1 -1 0.25 0.0127215 0.0110174 152 34 93 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 8.47 vpr 64.23 MiB 0.02 6992 -1 -1 1 0.03 -1 -1 34116 -1 -1 32 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65776 29 32 297 254 1 148 93 17 17 289 -1 unnamed_device 25.4 MiB 4.42 802 17103 5488 9192 2423 64.2 MiB 0.11 0.00 3.47765 -107.239 -3.47765 3.47765 0.90 0.000180526 0.000136055 0.0173989 0.0137344 -1 -1 -1 -1 26 2026 24 6.87369e+06 447163 503264. 1741.40 1.00 0.0488987 0.0398636 24322 120374 -1 1779 22 1213 1981 147579 35592 2.93826 2.93826 -108.304 -2.93826 0 0 618332. 2139.56 0.26 0.05 0.11 -1 -1 0.26 0.0110398 0.00941627 108 56 29 29 52 26 +fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 9.54 vpr 64.14 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 34148 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65684 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 25.4 MiB 4.82 751 9884 2209 6799 876 64.1 MiB 0.07 0.00 3.54365 -123.521 -3.54365 3.54365 0.88 0.000199945 0.00015956 0.0126742 0.0102434 -1 -1 -1 -1 34 2329 25 6.87369e+06 223581 618332. 2139.56 1.54 0.0700718 0.0578442 25762 151098 -1 1833 20 1450 2403 162142 41252 3.33286 3.33286 -129.55 -3.33286 0 0 787024. 2723.27 0.32 0.05 0.15 -1 -1 0.32 0.0131642 0.0115269 114 34 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 7.99 vpr 64.91 MiB 0.02 7356 -1 -1 1 0.04 -1 -1 34352 -1 -1 35 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66468 31 32 387 307 1 193 98 17 17 289 -1 unnamed_device 25.9 MiB 3.38 1001 17198 4714 10441 2043 64.9 MiB 0.12 0.00 3.61625 -124.149 -3.61625 3.61625 0.85 0.000228934 0.000171638 0.0188985 0.0149469 -1 -1 -1 -1 34 2205 21 6.87369e+06 489084 618332. 2139.56 1.44 0.0819044 0.0669205 25762 151098 -1 1954 22 1734 2764 173962 40942 2.92916 2.92916 -118.791 -2.92916 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0146286 0.0126114 146 64 58 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 7.91 vpr 64.11 MiB 0.03 7084 -1 -1 1 0.04 -1 -1 34008 -1 -1 16 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65648 31 32 308 262 1 154 79 17 17 289 -1 unnamed_device 25.3 MiB 4.03 705 11402 3952 5571 1879 64.1 MiB 0.07 0.00 3.12958 -106.498 -3.12958 3.12958 0.85 0.000176076 0.000138904 0.0133504 0.0106724 -1 -1 -1 -1 30 1783 22 6.87369e+06 223581 556674. 1926.21 0.86 0.0424598 0.0348303 25186 138497 -1 1461 20 839 1414 82562 20213 2.61736 2.61736 -108.233 -2.61736 0 0 706193. 2443.58 0.28 0.04 0.12 -1 -1 0.28 0.012421 0.0108331 103 55 31 31 53 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 7.70 vpr 64.36 MiB 0.02 7200 -1 -1 1 0.04 -1 -1 34212 -1 -1 37 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65908 32 32 383 307 1 190 101 17 17 289 -1 unnamed_device 25.6 MiB 3.60 1015 17256 4774 9685 2797 64.4 MiB 0.12 0.00 3.53695 -121.382 -3.53695 3.53695 0.85 0.000220342 0.000174081 0.018877 0.0152057 -1 -1 -1 -1 30 2407 22 6.87369e+06 517032 556674. 1926.21 0.95 0.0597464 0.0494751 25186 138497 -1 1961 17 1055 1700 93911 22381 2.76766 2.76766 -113.117 -2.76766 0 0 706193. 2443.58 0.29 0.04 0.13 -1 -1 0.29 0.0125476 0.0109791 143 65 52 26 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 8.54 vpr 64.74 MiB 0.02 7192 -1 -1 1 0.04 -1 -1 33996 -1 -1 39 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66292 31 32 422 339 1 196 102 17 17 289 -1 unnamed_device 25.8 MiB 4.49 920 10574 2369 7004 1201 64.7 MiB 0.09 0.00 3.59921 -120.128 -3.59921 3.59921 0.86 0.000246634 0.000195019 0.0123499 0.00988075 -1 -1 -1 -1 32 2388 33 6.87369e+06 544980 586450. 2029.24 1.01 0.0587072 0.048265 25474 144626 -1 1742 20 1510 2303 123990 30366 2.81766 2.81766 -115.082 -2.81766 0 0 744469. 2576.02 0.30 0.05 0.13 -1 -1 0.30 0.0160905 0.0140002 151 93 31 31 92 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 8.34 vpr 64.36 MiB 0.02 6932 -1 -1 1 0.04 -1 -1 33836 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65900 32 32 333 279 1 164 81 17 17 289 -1 unnamed_device 25.5 MiB 3.77 840 13206 3885 7374 1947 64.4 MiB 0.09 0.00 3.10562 -111.258 -3.10562 3.10562 0.89 0.000220926 0.000178759 0.0166457 0.0134444 -1 -1 -1 -1 34 2214 19 6.87369e+06 237555 618332. 2139.56 1.40 0.0692284 0.0569255 25762 151098 -1 1783 21 1165 1884 132818 31374 2.87726 2.87726 -114.346 -2.87726 0 0 787024. 2723.27 0.32 0.04 0.13 -1 -1 0.32 0.0120807 0.0104145 110 61 32 32 60 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 8.26 vpr 64.53 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 33844 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66080 32 32 339 283 1 166 80 17 17 289 -1 unnamed_device 25.6 MiB 4.20 885 10744 2853 7291 600 64.5 MiB 0.08 0.00 3.52165 -124.831 -3.52165 3.52165 0.89 0.000192461 0.000151372 0.0143825 0.0115919 -1 -1 -1 -1 32 2324 23 6.87369e+06 223581 586450. 2029.24 0.98 0.0508054 0.0421806 25474 144626 -1 1985 22 1341 2306 170125 38936 3.03826 3.03826 -124.192 -3.03826 0 0 744469. 2576.02 0.30 0.06 0.12 -1 -1 0.30 0.0154408 0.013459 112 63 32 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 7.99 vpr 64.84 MiB 0.02 6996 -1 -1 1 0.04 -1 -1 34212 -1 -1 40 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66400 32 32 407 319 1 202 104 17 17 289 -1 unnamed_device 25.8 MiB 3.82 1034 13768 3498 9086 1184 64.8 MiB 0.11 0.00 4.29009 -146.616 -4.29009 4.29009 0.87 0.000232456 0.000183808 0.0160899 0.0128884 -1 -1 -1 -1 32 2668 24 6.87369e+06 558954 586450. 2029.24 0.99 0.0545159 0.0447664 25474 144626 -1 2213 24 2089 3270 208299 50527 3.7203 3.7203 -144.786 -3.7203 0 0 744469. 2576.02 0.32 0.07 0.12 -1 -1 0.32 0.0163404 0.0139712 157 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 7.38 vpr 64.42 MiB 0.03 7048 -1 -1 1 0.04 -1 -1 34004 -1 -1 34 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65968 29 32 367 293 1 185 95 17 17 289 -1 unnamed_device 25.8 MiB 3.13 889 11111 2716 7727 668 64.4 MiB 0.09 0.00 3.59107 -113.02 -3.59107 3.59107 0.88 0.000211895 0.00016766 0.0132555 0.010698 -1 -1 -1 -1 26 2656 37 6.87369e+06 475111 503264. 1741.40 1.09 0.0552023 0.0454833 24322 120374 -1 2090 20 1284 2072 149179 36191 3.19656 3.19656 -117.334 -3.19656 0 0 618332. 2139.56 0.25 0.05 0.11 -1 -1 0.25 0.0138575 0.0120455 140 62 56 29 58 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 11.24 vpr 65.00 MiB 0.02 7224 -1 -1 1 0.04 -1 -1 34296 -1 -1 40 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66556 32 32 469 381 1 202 104 17 17 289 -1 unnamed_device 26.0 MiB 6.62 962 19136 5921 10212 3003 65.0 MiB 0.14 0.00 4.29009 -146.603 -4.29009 4.29009 0.85 0.000245332 0.00019162 0.0212052 0.0167366 -1 -1 -1 -1 32 2999 24 6.87369e+06 558954 586450. 2029.24 1.51 0.0775636 0.0632562 25474 144626 -1 2262 23 1937 3272 235717 54831 4.1683 4.1683 -154.424 -4.1683 0 0 744469. 2576.02 0.29 0.07 0.13 -1 -1 0.29 0.0159424 0.0135695 157 127 0 0 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 5.28 vpr 64.05 MiB 0.02 7000 -1 -1 1 0.04 -1 -1 33908 -1 -1 16 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65584 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 25.2 MiB 1.42 806 7008 1536 4934 538 64.0 MiB 0.05 0.00 3.09052 -107.057 -3.09052 3.09052 0.87 0.000179438 0.000143467 0.009082 0.00745289 -1 -1 -1 -1 30 1972 22 6.87369e+06 223581 556674. 1926.21 0.92 0.0364231 0.0303697 25186 138497 -1 1568 19 817 1376 83363 19407 2.68766 2.68766 -109.355 -2.68766 0 0 706193. 2443.58 0.29 0.03 0.12 -1 -1 0.29 0.00890419 0.00776869 104 4 85 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 6.80 vpr 64.42 MiB 0.02 7176 -1 -1 1 0.04 -1 -1 33948 -1 -1 37 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65964 32 32 418 338 1 194 101 17 17 289 -1 unnamed_device 25.5 MiB 2.27 980 17961 5545 9859 2557 64.4 MiB 0.13 0.00 4.28709 -142.511 -4.28709 4.28709 0.86 0.000234881 0.000184997 0.0202386 0.0161602 -1 -1 -1 -1 34 2224 22 6.87369e+06 517032 618332. 2139.56 1.46 0.0842825 0.068848 25762 151098 -1 1870 22 1465 2223 131927 31674 3.606 3.606 -133.315 -3.606 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0149753 0.0128466 147 92 28 28 92 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 10.08 vpr 64.34 MiB 0.02 7016 -1 -1 1 0.04 -1 -1 33820 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65888 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 25.6 MiB 5.63 956 12808 4156 7121 1531 64.3 MiB 0.08 0.00 3.59615 -131.562 -3.59615 3.59615 0.86 0.000208762 0.000165088 0.0171792 0.0137879 -1 -1 -1 -1 34 2170 21 6.87369e+06 223581 618332. 2139.56 1.39 0.0719092 0.058862 25762 151098 -1 1878 20 1365 2002 131922 30480 2.89296 2.89296 -127.518 -2.89296 0 0 787024. 2723.27 0.31 0.05 0.13 -1 -1 0.31 0.0135418 0.0116847 114 96 0 0 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 7.85 vpr 64.75 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 34344 -1 -1 39 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66300 32 32 401 316 1 199 103 17 17 289 -1 unnamed_device 25.8 MiB 3.69 1032 13358 3327 9257 774 64.7 MiB 0.11 0.00 3.59107 -126.232 -3.59107 3.59107 0.93 0.000231876 0.000184803 0.0161581 0.0130011 -1 -1 -1 -1 28 2606 40 6.87369e+06 544980 531479. 1839.03 1.04 0.0630534 0.0519722 24610 126494 -1 2145 22 1592 2496 172728 40799 2.96496 2.96496 -125.494 -2.96496 0 0 648988. 2245.63 0.25 0.06 0.11 -1 -1 0.25 0.0157376 0.0135099 153 65 61 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 10.19 vpr 65.26 MiB 0.03 7496 -1 -1 1 0.04 -1 -1 34484 -1 -1 47 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66828 32 32 500 382 1 236 111 17 17 289 -1 unnamed_device 26.2 MiB 5.89 1138 13943 3305 9918 720 65.3 MiB 0.12 0.00 4.94796 -166.013 -4.94796 4.94796 0.87 0.00027505 0.000217181 0.0169989 0.0135318 -1 -1 -1 -1 32 3372 24 6.87369e+06 656770 586450. 2029.24 1.11 0.0626 0.0514616 25474 144626 -1 2487 21 2310 3938 297465 67827 4.41925 4.41925 -164.459 -4.41925 0 0 744469. 2576.02 0.29 0.08 0.13 -1 -1 0.29 0.0175176 0.0151703 190 96 64 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 8.60 vpr 63.59 MiB 0.02 6832 -1 -1 1 0.04 -1 -1 33636 -1 -1 14 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65120 30 32 246 229 1 118 76 17 17 289 -1 unnamed_device 24.8 MiB 2.81 614 9036 2336 6266 434 63.6 MiB 0.05 0.00 2.80201 -90.6781 -2.80201 2.80201 0.97 0.000150553 0.000117523 0.0101122 0.00812368 -1 -1 -1 -1 28 1580 24 6.87369e+06 195634 531479. 1839.03 2.66 0.0589011 0.0480663 24610 126494 -1 1362 19 724 1046 86101 20031 2.08612 2.08612 -89.1475 -2.08612 0 0 648988. 2245.63 0.27 0.04 0.11 -1 -1 0.27 0.00933499 0.00809441 72 56 0 0 53 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 5.41 vpr 64.20 MiB 0.02 7164 -1 -1 1 0.04 -1 -1 34136 -1 -1 18 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65744 30 32 296 244 1 158 80 17 17 289 -1 unnamed_device 25.3 MiB 1.32 761 12120 5037 6663 420 64.2 MiB 0.08 0.00 3.55905 -117.266 -3.55905 3.55905 0.87 0.00017626 0.000139469 0.0142 0.0114757 -1 -1 -1 -1 32 1841 36 6.87369e+06 251529 586450. 2029.24 0.94 0.0492163 0.0407116 25474 144626 -1 1498 22 1417 2088 130027 30932 3.00236 3.00236 -116.529 -3.00236 0 0 744469. 2576.02 0.30 0.05 0.14 -1 -1 0.30 0.0119945 0.0103626 109 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 6.84 vpr 64.06 MiB 0.02 6868 -1 -1 1 0.04 -1 -1 33816 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65596 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 25.3 MiB 2.23 871 12464 4691 5640 2133 64.1 MiB 0.09 0.00 3.52575 -126.323 -3.52575 3.52575 0.88 0.000181793 0.00014277 0.0149279 0.0119755 -1 -1 -1 -1 34 2467 23 6.87369e+06 223581 618332. 2139.56 1.51 0.0664137 0.0542897 25762 151098 -1 2034 23 1589 2886 214305 49458 3.10756 3.10756 -127.016 -3.10756 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0136632 0.0118894 114 34 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 4.77 vpr 63.91 MiB 0.02 7044 -1 -1 1 0.04 -1 -1 34032 -1 -1 37 25 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65448 25 32 251 214 1 139 94 17 17 289 -1 unnamed_device 25.1 MiB 0.99 742 15004 4316 8330 2358 63.9 MiB 0.08 0.00 3.44875 -93.4787 -3.44875 3.44875 0.87 0.000149765 0.000117719 0.0118425 0.00943396 -1 -1 -1 -1 30 1607 21 6.87369e+06 517032 556674. 1926.21 0.85 0.0360165 0.0294995 25186 138497 -1 1382 20 912 1515 78641 19457 2.68766 2.68766 -92.7847 -2.68766 0 0 706193. 2443.58 0.28 0.03 0.12 -1 -1 0.28 0.00899613 0.00776739 105 34 50 25 25 25 +fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 8.96 vpr 64.81 MiB 0.03 7336 -1 -1 1 0.04 -1 -1 34356 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66364 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 25.8 MiB 4.28 1048 13105 3502 8476 1127 64.8 MiB 0.11 0.00 4.14459 -143.334 -4.14459 4.14459 0.85 0.000243199 0.000192394 0.0193098 0.0155283 -1 -1 -1 -1 34 2660 23 6.87369e+06 293451 618332. 2139.56 1.51 0.0838972 0.0684686 25762 151098 -1 2187 22 1784 3336 219287 51630 3.9207 3.9207 -147.911 -3.9207 0 0 787024. 2723.27 0.32 0.06 0.14 -1 -1 0.32 0.01586 0.0136606 145 94 32 32 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 8.15 vpr 64.91 MiB 0.02 7332 -1 -1 1 0.04 -1 -1 34068 -1 -1 40 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66472 31 32 421 339 1 195 103 17 17 289 -1 unnamed_device 25.7 MiB 3.54 970 12635 3084 8691 860 64.9 MiB 0.10 0.00 3.61805 -122.805 -3.61805 3.61805 0.92 0.000243539 0.000192893 0.0145155 0.0114371 -1 -1 -1 -1 34 2294 21 6.87369e+06 558954 618332. 2139.56 1.44 0.0759609 0.0618983 25762 151098 -1 1898 21 1673 2662 152834 38172 2.85066 2.85066 -119.203 -2.85066 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0146186 0.0125448 151 94 29 29 93 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 7.63 vpr 64.77 MiB 0.02 7348 -1 -1 1 0.04 -1 -1 34300 -1 -1 29 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66328 32 32 438 350 1 295 93 17 17 289 -1 unnamed_device 25.8 MiB 2.77 1423 18363 6491 9531 2341 64.8 MiB 0.14 0.00 5.12584 -175.071 -5.12584 5.12584 0.87 0.000249435 0.000199383 0.0245205 0.0198698 -1 -1 -1 -1 34 3583 24 6.89349e+06 408721 618332. 2139.56 1.58 0.0901244 0.0736782 25762 151098 -1 2911 20 2145 2556 173727 39252 4.66075 4.66075 -171.782 -4.66075 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0158441 0.0137975 192 96 32 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 9.48 vpr 64.69 MiB 0.02 7312 -1 -1 1 0.04 -1 -1 34432 -1 -1 29 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66240 30 32 409 330 1 261 91 17 17 289 -1 unnamed_device 25.7 MiB 2.35 1164 10291 2498 6711 1082 64.7 MiB 0.09 0.00 5.38747 -162.07 -5.38747 5.38747 0.86 0.000227334 0.000180122 0.0131237 0.0105631 -1 -1 -1 -1 40 2667 31 6.89349e+06 408721 706193. 2443.58 3.96 0.119625 0.0977978 26914 176310 -1 2519 20 1905 2592 174568 39251 4.17608 4.17608 -148.323 -4.17608 0 0 926341. 3205.33 0.35 0.06 0.17 -1 -1 0.35 0.0148175 0.012744 177 91 30 30 89 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 7.53 vpr 64.68 MiB 0.02 6992 -1 -1 1 0.04 -1 -1 34292 -1 -1 25 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66236 32 32 387 309 1 253 89 17 17 289 -1 unnamed_device 25.7 MiB 2.79 1242 15533 4163 9385 1985 64.7 MiB 0.12 0.00 4.07746 -141.47 -4.07746 4.07746 0.87 0.00021432 0.000169523 0.0193953 0.0155903 -1 -1 -1 -1 34 2931 41 6.89349e+06 352346 618332. 2139.56 1.52 0.0896612 0.0737059 25762 151098 -1 2313 21 1385 1697 120804 26775 3.6673 3.6673 -138.504 -3.6673 0 0 787024. 2723.27 0.31 0.05 0.13 -1 -1 0.31 0.0165608 0.0144027 167 65 54 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 7.65 vpr 64.16 MiB 0.02 7120 -1 -1 1 0.04 -1 -1 34056 -1 -1 25 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65700 29 32 343 267 1 209 86 17 17 289 -1 unnamed_device 25.5 MiB 3.00 970 11615 3398 7414 803 64.2 MiB 0.09 0.00 4.55805 -138.177 -4.55805 4.55805 0.89 0.000199864 0.000158805 0.0142296 0.011488 -1 -1 -1 -1 34 2386 21 6.89349e+06 352346 618332. 2139.56 1.52 0.0689632 0.0566047 25762 151098 -1 1840 21 1400 2185 125879 30266 3.66206 3.66206 -131.432 -3.66206 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0131637 0.0114584 148 34 87 29 29 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 7.94 vpr 64.04 MiB 0.02 7028 -1 -1 1 0.04 -1 -1 34008 -1 -1 24 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65576 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 25.2 MiB 3.14 1348 11398 3143 6769 1486 64.0 MiB 0.11 0.00 5.03124 -172.569 -5.03124 5.03124 0.91 0.000226563 0.000180161 0.0156192 0.0126565 -1 -1 -1 -1 34 3306 24 6.89349e+06 338252 618332. 2139.56 1.60 0.0647179 0.0533209 25762 151098 -1 2810 22 2202 3807 239316 54864 4.41639 4.41639 -164.458 -4.41639 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0141029 0.0121534 163 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 7.81 vpr 64.62 MiB 0.02 7204 -1 -1 1 0.05 -1 -1 34104 -1 -1 41 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66172 32 32 402 316 1 257 105 17 17 289 -1 unnamed_device 25.6 MiB 2.89 1504 20359 5925 11930 2504 64.6 MiB 0.17 0.00 4.44565 -148.692 -4.44565 4.44565 0.91 0.000253833 0.000203267 0.0220154 0.0175179 -1 -1 -1 -1 34 3391 30 6.89349e+06 577847 618332. 2139.56 1.52 0.0882629 0.0721149 25762 151098 -1 2877 20 1847 2992 187597 43044 3.3856 3.3856 -133.706 -3.3856 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0178617 0.0156671 179 64 63 32 63 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 5.77 vpr 64.34 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 34024 -1 -1 21 27 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65880 27 32 269 226 1 164 80 17 17 289 -1 unnamed_device 25.4 MiB 1.90 736 14528 4306 9196 1026 64.3 MiB 0.09 0.00 3.83226 -109.478 -3.83226 3.83226 0.85 0.000168821 0.000132794 0.0152965 0.0122355 -1 -1 -1 -1 30 2004 33 6.89349e+06 295971 556674. 1926.21 0.96 0.047321 0.0388631 25186 138497 -1 1617 20 1157 1681 96912 23589 3.00146 3.00146 -107.805 -3.00146 0 0 706193. 2443.58 0.28 0.04 0.12 -1 -1 0.28 0.0102131 0.00884307 112 34 54 27 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 5.75 vpr 64.38 MiB 0.02 7072 -1 -1 1 0.04 -1 -1 33712 -1 -1 35 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65928 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 25.5 MiB 1.15 921 14273 4376 7304 2593 64.4 MiB 0.10 0.00 3.53335 -112.444 -3.53335 3.53335 0.88 0.000229553 0.000175331 0.0144201 0.0115803 -1 -1 -1 -1 34 2367 23 6.89349e+06 493284 618332. 2139.56 1.50 0.0688129 0.0556378 25762 151098 -1 1894 20 1192 2064 146857 38040 2.68161 2.68161 -106.176 -2.68161 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.011462 0.00985936 141 4 115 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 7.02 vpr 64.14 MiB 0.02 7080 -1 -1 1 0.04 -1 -1 33992 -1 -1 21 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65676 31 32 338 292 1 226 84 17 17 289 -1 unnamed_device 25.5 MiB 2.26 958 7221 1428 5393 400 64.1 MiB 0.06 0.00 3.63689 -118.334 -3.63689 3.63689 0.89 0.000187104 0.000147314 0.00981488 0.00801332 -1 -1 -1 -1 34 2630 31 6.89349e+06 295971 618332. 2139.56 1.57 0.0713604 0.0588309 25762 151098 -1 1968 20 1487 1805 126653 30887 3.03746 3.03746 -117.43 -3.03746 0 0 787024. 2723.27 0.34 0.05 0.14 -1 -1 0.34 0.0126551 0.010964 141 85 0 0 84 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 6.88 vpr 64.14 MiB 0.02 7052 -1 -1 1 0.04 -1 -1 33928 -1 -1 19 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65684 32 32 314 256 1 193 83 17 17 289 -1 unnamed_device 25.3 MiB 2.30 907 7463 1702 5402 359 64.1 MiB 0.06 0.00 3.77475 -131.313 -3.77475 3.77475 0.87 0.000187845 0.000148058 0.00948798 0.00770994 -1 -1 -1 -1 34 2297 23 6.89349e+06 267783 618332. 2139.56 1.42 0.0600409 0.049642 25762 151098 -1 1909 21 1467 1948 141700 32745 3.08271 3.08271 -126.754 -3.08271 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0120613 0.0104708 127 34 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 7.30 vpr 64.23 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 33848 -1 -1 21 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65768 30 32 325 273 1 203 83 17 17 289 -1 unnamed_device 25.4 MiB 2.73 945 6923 1685 4939 299 64.2 MiB 0.06 0.00 4.3573 -138.042 -4.3573 4.3573 0.86 0.000201196 0.000161795 0.00938774 0.00768343 -1 -1 -1 -1 34 2441 23 6.89349e+06 295971 618332. 2139.56 1.50 0.062094 0.051219 25762 151098 -1 1980 20 1489 2020 136754 31717 3.8569 3.8569 -140.602 -3.8569 0 0 787024. 2723.27 0.31 0.05 0.13 -1 -1 0.31 0.0125292 0.0108714 135 63 30 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 7.36 vpr 64.39 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 33972 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65936 32 32 331 280 1 215 84 17 17 289 -1 unnamed_device 25.5 MiB 2.55 879 15822 5947 6978 2897 64.4 MiB 0.10 0.00 3.8521 -121.987 -3.8521 3.8521 0.89 0.000196412 0.000155369 0.0188877 0.0151892 -1 -1 -1 -1 34 2631 49 6.89349e+06 281877 618332. 2139.56 1.63 0.0749337 0.0615648 25762 151098 -1 1815 17 1150 1285 88992 22042 3.20001 3.20001 -113.739 -3.20001 0 0 787024. 2723.27 0.32 0.04 0.13 -1 -1 0.32 0.0121447 0.0107 135 65 25 25 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 6.95 vpr 64.32 MiB 0.03 7300 -1 -1 1 0.04 -1 -1 33588 -1 -1 25 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65864 32 32 386 305 1 240 89 17 17 289 -1 unnamed_device 25.5 MiB 1.78 1132 13751 4297 6849 2605 64.3 MiB 0.10 0.00 4.33609 -144.609 -4.33609 4.33609 0.87 0.000219266 0.000173491 0.0180367 0.0145949 -1 -1 -1 -1 38 3022 49 6.89349e+06 352346 678818. 2348.85 1.99 0.084906 0.0705301 26626 170182 -1 2307 20 1679 2333 216757 46516 3.3494 3.3494 -134.484 -3.3494 0 0 902133. 3121.57 0.32 0.06 0.15 -1 -1 0.32 0.0138253 0.0119761 161 58 64 32 57 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 9.94 vpr 64.29 MiB 0.03 7092 -1 -1 1 0.04 -1 -1 34116 -1 -1 28 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65832 32 32 407 319 1 264 92 17 17 289 -1 unnamed_device 25.5 MiB 2.66 1321 17480 4867 10322 2291 64.3 MiB 0.14 0.00 5.11569 -169.051 -5.11569 5.11569 0.88 0.000229908 0.000182894 0.021986 0.0177497 -1 -1 -1 -1 36 2974 23 6.89349e+06 394628 648988. 2245.63 3.87 0.120708 0.099194 26050 158493 -1 2638 23 2149 2863 209779 47700 4.51645 4.51645 -166.711 -4.51645 0 0 828058. 2865.25 0.33 0.07 0.14 -1 -1 0.33 0.0168298 0.0145773 175 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 6.37 vpr 63.79 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 34380 -1 -1 21 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65320 29 32 272 228 1 171 82 17 17 289 -1 unnamed_device 25.0 MiB 1.99 818 11296 2810 7489 997 63.8 MiB 0.07 0.00 3.60615 -110.973 -3.60615 3.60615 0.85 0.000173609 0.00013809 0.0125468 0.0101818 -1 -1 -1 -1 34 2017 22 6.89349e+06 295971 618332. 2139.56 1.38 0.0570265 0.0468866 25762 151098 -1 1663 20 989 1364 97286 23647 2.72886 2.72886 -102.576 -2.72886 0 0 787024. 2723.27 0.30 0.04 0.13 -1 -1 0.30 0.0104027 0.00905202 112 29 58 29 24 24 +fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 8.72 vpr 64.54 MiB 0.03 7092 -1 -1 1 0.04 -1 -1 33716 -1 -1 25 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66088 32 32 401 315 1 256 89 17 17 289 -1 unnamed_device 25.6 MiB 3.62 1331 17315 6030 8650 2635 64.5 MiB 0.15 0.00 4.31019 -149.022 -4.31019 4.31019 0.89 0.00023482 0.000178374 0.0227421 0.0181475 -1 -1 -1 -1 34 3522 49 6.89349e+06 352346 618332. 2139.56 1.86 0.104709 0.0861628 25762 151098 -1 2874 21 2391 3714 261089 57949 3.5988 3.5988 -146.281 -3.5988 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0170649 0.0149366 174 63 64 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 6.42 vpr 64.59 MiB 0.03 7204 -1 -1 1 0.04 -1 -1 34032 -1 -1 25 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66144 32 32 383 303 1 236 89 17 17 289 -1 unnamed_device 25.8 MiB 1.69 1195 12959 3577 7748 1634 64.6 MiB 0.11 0.00 3.72345 -132.536 -3.72345 3.72345 0.91 0.000241694 0.000193082 0.0186371 0.0150399 -1 -1 -1 -1 34 2729 22 6.89349e+06 352346 618332. 2139.56 1.49 0.0838167 0.0690827 25762 151098 -1 2362 21 1803 2277 162810 37088 2.94846 2.94846 -122.186 -2.94846 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0142159 0.0123128 160 57 64 32 56 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 7.96 vpr 64.31 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 33964 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65852 32 32 339 284 1 224 86 17 17 289 -1 unnamed_device 25.2 MiB 3.05 1016 15395 4898 7558 2939 64.3 MiB 0.11 0.00 3.65519 -124.98 -3.65519 3.65519 0.86 0.000192715 0.000152064 0.0184574 0.0148463 -1 -1 -1 -1 36 2782 44 6.89349e+06 310065 648988. 2245.63 1.63 0.0820992 0.0670851 26050 158493 -1 2121 19 1558 2105 156226 35670 2.90126 2.90126 -114.71 -2.90126 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0108495 0.00934372 139 65 29 29 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 5.89 vpr 63.40 MiB 0.02 6784 -1 -1 1 0.03 -1 -1 33944 -1 -1 15 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64920 30 32 226 208 1 143 77 17 17 289 -1 unnamed_device 24.7 MiB 1.57 571 8227 1989 5670 568 63.4 MiB 0.05 0.00 3.06366 -95.2969 -3.06366 3.06366 0.86 0.000144913 0.000113014 0.00924786 0.00743868 -1 -1 -1 -1 34 1517 17 6.89349e+06 211408 618332. 2139.56 1.37 0.046054 0.0377814 25762 151098 -1 1196 19 676 799 60452 14854 2.27687 2.27687 -85.0225 -2.27687 0 0 787024. 2723.27 0.30 0.03 0.13 -1 -1 0.30 0.00854809 0.00741476 85 34 24 24 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 7.12 vpr 64.25 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 33740 -1 -1 22 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65796 31 32 335 280 1 217 85 17 17 289 -1 unnamed_device 25.3 MiB 2.45 1128 13663 4696 6887 2080 64.3 MiB 0.10 0.00 4.28999 -147.715 -4.28999 4.28999 0.91 0.000192506 0.000151655 0.0158885 0.0127497 -1 -1 -1 -1 34 2537 21 6.89349e+06 310065 618332. 2139.56 1.43 0.0684575 0.0560274 25762 151098 -1 2132 22 1387 1842 122955 28752 3.56075 3.56075 -139.207 -3.56075 0 0 787024. 2723.27 0.31 0.05 0.13 -1 -1 0.31 0.0129941 0.011256 141 64 31 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 6.50 vpr 64.57 MiB 0.02 7164 -1 -1 1 0.04 -1 -1 34004 -1 -1 40 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66120 32 32 366 283 1 228 104 17 17 289 -1 unnamed_device 25.5 MiB 1.78 1108 20112 5949 11325 2838 64.6 MiB 0.14 0.00 4.59713 -153.571 -4.59713 4.59713 0.87 0.000245143 0.000189816 0.0226261 0.0183274 -1 -1 -1 -1 34 2575 28 6.89349e+06 563754 618332. 2139.56 1.57 0.0890687 0.0738532 25762 151098 -1 2268 21 1835 2622 191037 42561 3.98144 3.98144 -148.486 -3.98144 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0134447 0.011626 166 34 91 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 7.38 vpr 64.93 MiB 0.03 7284 -1 -1 1 0.04 -1 -1 34232 -1 -1 31 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66488 32 32 460 375 1 309 95 17 17 289 -1 unnamed_device 25.8 MiB 2.58 1494 19967 6137 11054 2776 64.9 MiB 0.16 0.00 4.36459 -147.604 -4.36459 4.36459 0.89 0.000258961 0.000207763 0.0260931 0.0209489 -1 -1 -1 -1 34 3577 26 6.89349e+06 436909 618332. 2139.56 1.49 0.083905 0.0682136 25762 151098 -1 2909 22 2143 2476 189385 42261 4.05586 4.05586 -145.497 -4.05586 0 0 787024. 2723.27 0.31 0.06 0.13 -1 -1 0.31 0.0170016 0.0147193 201 124 0 0 125 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 5.79 vpr 63.54 MiB 0.02 6800 -1 -1 1 0.03 -1 -1 34416 -1 -1 18 26 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65064 26 32 198 186 1 129 76 17 17 289 -1 unnamed_device 24.8 MiB 1.82 673 10476 3641 5320 1515 63.5 MiB 0.05 0.00 2.84541 -82.0128 -2.84541 2.84541 0.89 0.000126167 9.8846e-05 0.00974562 0.00783064 -1 -1 -1 -1 30 1519 18 6.89349e+06 253689 556674. 1926.21 0.86 0.0313581 0.0259883 25186 138497 -1 1300 14 458 589 49111 10218 1.98531 1.98531 -76.0034 -1.98531 0 0 706193. 2443.58 0.28 0.02 0.12 -1 -1 0.28 0.00659166 0.00582623 77 30 26 26 22 22 +fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 6.38 vpr 64.24 MiB 0.02 7172 -1 -1 1 0.04 -1 -1 33888 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65780 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 25.4 MiB 1.77 999 9757 2585 6607 565 64.2 MiB 0.08 0.00 4.12784 -138.698 -4.12784 4.12784 0.91 0.000278145 0.000218498 0.0129663 0.0105452 -1 -1 -1 -1 30 2932 31 6.89349e+06 295971 556674. 1926.21 1.38 0.0539685 0.0450128 25186 138497 -1 2151 21 1342 2407 149577 35042 3.75825 3.75825 -145.955 -3.75825 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.0132114 0.0115035 141 3 122 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 5.07 vpr 63.43 MiB 0.02 6792 -1 -1 1 0.03 -1 -1 34024 -1 -1 12 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64948 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 25.0 MiB 0.64 505 8236 1869 5918 449 63.4 MiB 0.05 0.00 2.24722 -82.618 -2.24722 2.24722 0.89 0.000138794 0.000109252 0.0091896 0.00743349 -1 -1 -1 -1 34 1324 20 6.89349e+06 169126 618332. 2139.56 1.38 0.0478992 0.039687 25762 151098 -1 1173 18 652 961 62150 16149 1.82346 1.82346 -83.193 -1.82346 0 0 787024. 2723.27 0.30 0.03 0.13 -1 -1 0.30 0.0076404 0.00664647 71 3 53 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 6.55 vpr 64.32 MiB 0.02 7128 -1 -1 1 0.04 -1 -1 33932 -1 -1 25 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65868 32 32 376 288 1 233 89 17 17 289 -1 unnamed_device 25.4 MiB 1.86 1083 14147 4068 9141 938 64.3 MiB 0.12 0.00 4.6633 -160.25 -4.6633 4.6633 0.93 0.000221054 0.000175332 0.0191431 0.0157052 -1 -1 -1 -1 34 2623 21 6.89349e+06 352346 618332. 2139.56 1.46 0.0787488 0.0651629 25762 151098 -1 2102 21 1536 2172 139035 34103 3.81736 3.81736 -151.239 -3.81736 0 0 787024. 2723.27 0.31 0.05 0.13 -1 -1 0.31 0.0142003 0.0123584 161 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 5.30 vpr 64.18 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 34076 -1 -1 36 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65720 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 25.3 MiB 1.20 894 11004 2536 7514 954 64.2 MiB 0.09 0.00 3.4709 -118.467 -3.4709 3.4709 0.90 0.000225459 0.000168064 0.0123841 0.00995613 -1 -1 -1 -1 28 2616 30 6.89349e+06 507378 531479. 1839.03 1.07 0.0549895 0.0458306 24610 126494 -1 2228 19 1439 2286 137446 35405 2.97511 2.97511 -123.298 -2.97511 0 0 648988. 2245.63 0.26 0.05 0.11 -1 -1 0.26 0.013172 0.0113822 151 3 124 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 7.89 vpr 64.52 MiB 0.03 7072 -1 -1 1 0.04 -1 -1 34060 -1 -1 26 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66072 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 25.7 MiB 2.99 1339 13155 3540 7510 2105 64.5 MiB 0.12 0.00 4.61325 -160.256 -4.61325 4.61325 0.91 0.000253812 0.000203535 0.0186902 0.0150957 -1 -1 -1 -1 34 3313 21 6.89349e+06 366440 618332. 2139.56 1.54 0.0809702 0.0664084 25762 151098 -1 2604 20 1886 2713 181745 40761 3.90496 3.90496 -153.691 -3.90496 0 0 787024. 2723.27 0.33 0.06 0.13 -1 -1 0.33 0.0159507 0.0139984 174 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 7.73 vpr 63.94 MiB 0.02 7068 -1 -1 1 0.04 -1 -1 33968 -1 -1 17 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65476 32 32 294 246 1 188 81 17 17 289 -1 unnamed_device 25.0 MiB 2.85 861 14256 5425 7077 1754 63.9 MiB 0.09 0.00 3.57625 -122.891 -3.57625 3.57625 0.89 0.000179294 0.000142013 0.0163916 0.0132264 -1 -1 -1 -1 34 2414 34 6.89349e+06 239595 618332. 2139.56 1.71 0.0720952 0.0592134 25762 151098 -1 1972 19 1414 1996 155358 35031 2.91696 2.91696 -122.17 -2.91696 0 0 787024. 2723.27 0.31 0.05 0.13 -1 -1 0.31 0.010578 0.00919664 118 34 54 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 7.27 vpr 64.18 MiB 0.02 7016 -1 -1 1 0.04 -1 -1 33992 -1 -1 19 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65724 30 32 296 244 1 182 81 17 17 289 -1 unnamed_device 25.3 MiB 2.51 1065 12331 4521 6770 1040 64.2 MiB 0.09 0.00 4.27029 -139.787 -4.27029 4.27029 0.88 0.000175798 0.000138692 0.0141214 0.0113788 -1 -1 -1 -1 34 2567 30 6.89349e+06 267783 618332. 2139.56 1.52 0.0651352 0.0533779 25762 151098 -1 2190 20 1502 2346 187172 39298 3.49985 3.49985 -138.154 -3.49985 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0113483 0.00986716 121 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 7.14 vpr 63.97 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 33904 -1 -1 21 28 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65504 28 32 278 232 1 173 81 17 17 289 -1 unnamed_device 25.1 MiB 3.05 765 11106 3048 7362 696 64.0 MiB 0.08 0.00 4.28325 -126.024 -4.28325 4.28325 0.87 0.000200348 0.000161865 0.0125073 0.0101188 -1 -1 -1 -1 30 2277 23 6.89349e+06 295971 556674. 1926.21 1.03 0.0423152 0.0349773 25186 138497 -1 1697 22 1124 1846 107453 26074 3.55595 3.55595 -122.845 -3.55595 0 0 706193. 2443.58 0.28 0.04 0.13 -1 -1 0.28 0.011035 0.00953695 115 34 56 28 28 28 +fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 6.39 vpr 64.10 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 33820 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65636 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 25.2 MiB 1.79 856 14700 5411 7261 2028 64.1 MiB 0.10 0.00 3.66161 -130.921 -3.66161 3.66161 0.87 0.000177824 0.000140661 0.0168182 0.0135649 -1 -1 -1 -1 34 2177 21 6.89349e+06 225501 618332. 2139.56 1.52 0.0675572 0.0561074 25762 151098 -1 1897 21 1382 2387 171811 37083 2.92106 2.92106 -127.327 -2.92106 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0116462 0.010097 114 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 6.93 vpr 64.16 MiB 0.02 7136 -1 -1 1 0.04 -1 -1 34188 -1 -1 19 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65696 31 32 303 249 1 191 82 17 17 289 -1 unnamed_device 25.4 MiB 2.19 976 14322 4714 7465 2143 64.2 MiB 0.10 0.00 3.81397 -130.472 -3.81397 3.81397 0.89 0.000185833 0.000146275 0.0165877 0.0133433 -1 -1 -1 -1 34 2278 30 6.89349e+06 267783 618332. 2139.56 1.47 0.0699933 0.0576751 25762 151098 -1 1938 21 1186 1746 114542 27145 2.89006 2.89006 -118.505 -2.89006 0 0 787024. 2723.27 0.30 0.04 0.14 -1 -1 0.30 0.0117794 0.0102476 121 34 61 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 7.02 vpr 64.14 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 33872 -1 -1 23 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65676 29 32 312 264 1 201 84 17 17 289 -1 unnamed_device 25.4 MiB 2.44 1053 14724 4750 7690 2284 64.1 MiB 0.10 0.00 3.61135 -116.611 -3.61135 3.61135 0.88 0.00018125 0.000142689 0.0168134 0.0135136 -1 -1 -1 -1 34 2295 20 6.89349e+06 324158 618332. 2139.56 1.38 0.0644406 0.0526764 25762 151098 -1 2003 23 1331 1727 112624 25983 2.88556 2.88556 -108.962 -2.88556 0 0 787024. 2723.27 0.32 0.04 0.14 -1 -1 0.32 0.0123919 0.0106635 130 61 29 29 57 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 7.66 vpr 64.67 MiB 0.03 7340 -1 -1 1 0.04 -1 -1 34068 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66224 32 32 423 310 1 254 91 17 17 289 -1 unnamed_device 25.6 MiB 2.54 1309 18247 5425 10282 2540 64.7 MiB 0.16 0.00 4.62495 -157.212 -4.62495 4.62495 0.87 0.000248194 0.000197 0.0254443 0.0206875 -1 -1 -1 -1 34 3343 23 6.89349e+06 380534 618332. 2139.56 1.76 0.0946507 0.0781771 25762 151098 -1 2792 22 2096 3470 279173 58813 3.87266 3.87266 -152.209 -3.87266 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.0179346 0.0155053 184 29 128 32 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 7.99 vpr 64.74 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 34056 -1 -1 25 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66292 32 32 403 317 1 260 89 17 17 289 -1 unnamed_device 25.8 MiB 3.16 1141 14147 3989 7288 2870 64.7 MiB 0.11 0.00 4.18754 -143.488 -4.18754 4.18754 0.92 0.000229642 0.000180724 0.0186158 0.0149997 -1 -1 -1 -1 34 3482 25 6.89349e+06 352346 618332. 2139.56 1.58 0.0750444 0.0615257 25762 151098 -1 2727 22 2555 3575 269354 60960 3.87465 3.87465 -149.282 -3.87465 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0152284 0.0131567 173 65 62 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 6.55 vpr 64.38 MiB 0.02 7184 -1 -1 1 0.04 -1 -1 34380 -1 -1 22 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65920 31 32 353 302 1 229 85 17 17 289 -1 unnamed_device 25.4 MiB 1.90 1094 14965 4631 8028 2306 64.4 MiB 0.11 0.00 3.69435 -123.755 -3.69435 3.69435 0.91 0.00020389 0.000159454 0.0185084 0.0149033 -1 -1 -1 -1 34 2399 20 6.89349e+06 310065 618332. 2139.56 1.40 0.0718334 0.0589707 25762 151098 -1 2062 21 1282 1331 96405 22139 3.01705 3.01705 -116.878 -3.01705 0 0 787024. 2723.27 0.30 0.04 0.15 -1 -1 0.30 0.0126387 0.0109434 143 90 0 0 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 8.13 vpr 64.39 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 34180 -1 -1 26 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65936 31 32 391 309 1 246 89 17 17 289 -1 unnamed_device 25.5 MiB 3.41 1248 13157 3309 8741 1107 64.4 MiB 0.11 0.00 4.45339 -147.016 -4.45339 4.45339 0.89 0.000221631 0.000175109 0.0167085 0.0134795 -1 -1 -1 -1 34 3100 24 6.89349e+06 366440 618332. 2139.56 1.58 0.0825087 0.0681385 25762 151098 -1 2555 19 1713 2442 149720 36465 3.8506 3.8506 -145.517 -3.8506 0 0 787024. 2723.27 0.32 0.05 0.13 -1 -1 0.32 0.0134436 0.0116491 170 64 60 30 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 8.35 vpr 64.84 MiB 0.02 7372 -1 -1 1 0.04 -1 -1 34396 -1 -1 31 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66396 31 32 455 371 1 307 94 17 17 289 -1 unnamed_device 25.8 MiB 3.03 1502 16069 5112 8143 2814 64.8 MiB 0.13 0.00 5.11799 -165.069 -5.11799 5.11799 0.88 0.000247879 0.000195267 0.0216887 0.017533 -1 -1 -1 -1 34 4206 30 6.89349e+06 436909 618332. 2139.56 1.95 0.0851159 0.0696363 25762 151098 -1 2726 22 2164 2416 187464 43029 4.43845 4.43845 -158.088 -4.43845 0 0 787024. 2723.27 0.37 0.08 0.14 -1 -1 0.37 0.0211301 0.0185874 201 124 0 0 124 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 12.11 vpr 64.53 MiB 0.02 7476 -1 -1 1 0.04 -1 -1 34172 -1 -1 28 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66076 31 32 413 333 1 269 91 17 17 289 -1 unnamed_device 25.6 MiB 3.62 1430 16615 4445 10446 1724 64.5 MiB 0.14 0.00 5.49016 -175.123 -5.49016 5.49016 0.88 0.00022731 0.000178948 0.0209645 0.0168323 -1 -1 -1 -1 34 3605 42 6.89349e+06 394628 618332. 2139.56 5.25 0.143535 0.11688 25762 151098 -1 2725 21 2043 2783 193880 46103 5.00104 5.00104 -179.106 -5.00104 0 0 787024. 2723.27 0.31 0.06 0.13 -1 -1 0.31 0.015971 0.013883 181 90 31 31 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 7.68 vpr 64.41 MiB 0.02 7180 -1 -1 1 0.04 -1 -1 34088 -1 -1 27 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65952 31 32 391 309 1 249 90 17 17 289 -1 unnamed_device 25.7 MiB 2.86 1345 14763 4031 8768 1964 64.4 MiB 0.12 0.00 3.73835 -129.663 -3.73835 3.73835 0.90 0.000218584 0.000172944 0.0184562 0.0148508 -1 -1 -1 -1 38 2814 21 6.89349e+06 380534 678818. 2348.85 1.55 0.0645464 0.0529791 26626 170182 -1 2613 20 1971 2785 205552 43378 3.08756 3.08756 -123.763 -3.08756 0 0 902133. 3121.57 0.32 0.06 0.14 -1 -1 0.32 0.0143077 0.0123979 168 64 60 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 9.74 vpr 64.58 MiB 0.02 7028 -1 -1 1 0.04 -1 -1 34260 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66132 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 25.6 MiB 2.97 1277 12127 3340 7626 1161 64.6 MiB 0.11 0.00 4.64285 -160.85 -4.64285 4.64285 0.86 0.000233468 0.000185419 0.0159837 0.0129818 -1 -1 -1 -1 42 2680 26 6.89349e+06 380534 744469. 2576.02 3.40 0.107135 0.08832 27202 183097 -1 2387 23 1789 2426 174547 39309 3.74226 3.74226 -149.887 -3.74226 0 0 949917. 3286.91 0.35 0.06 0.18 -1 -1 0.35 0.0161774 0.0140444 178 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 9.74 vpr 65.06 MiB 0.03 7408 -1 -1 1 0.04 -1 -1 34296 -1 -1 31 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66624 32 32 496 380 1 321 95 17 17 289 -1 unnamed_device 26.0 MiB 3.53 1586 15215 4372 9081 1762 65.1 MiB 0.17 0.00 5.09938 -172.571 -5.09938 5.09938 0.86 0.000280085 0.000222639 0.0231495 0.0185896 -1 -1 -1 -1 34 4678 26 6.89349e+06 436909 618332. 2139.56 2.87 0.110645 0.0916277 25762 151098 -1 3580 25 3664 5361 461227 98192 4.53385 4.53385 -170.767 -4.53385 0 0 787024. 2723.27 0.32 0.11 0.13 -1 -1 0.32 0.0199797 0.0170991 220 96 62 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 6.70 vpr 63.93 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 33952 -1 -1 20 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65468 31 32 305 250 1 192 83 17 17 289 -1 unnamed_device 25.3 MiB 2.28 830 6023 1193 4490 340 63.9 MiB 0.05 0.00 3.9423 -130.606 -3.9423 3.9423 0.85 0.000179976 0.000142606 0.00753976 0.00617054 -1 -1 -1 -1 34 2043 21 6.89349e+06 281877 618332. 2139.56 1.42 0.0581704 0.0481874 25762 151098 -1 1687 19 1205 1637 104435 25567 2.96021 2.96021 -118.758 -2.96021 0 0 787024. 2723.27 0.30 0.04 0.13 -1 -1 0.30 0.0108032 0.00942018 127 34 62 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 7.76 vpr 64.64 MiB 0.03 7208 -1 -1 1 0.05 -1 -1 34020 -1 -1 27 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66188 31 32 395 311 1 251 90 17 17 289 -1 unnamed_device 25.7 MiB 2.67 1300 17376 7374 9051 951 64.6 MiB 0.14 0.00 5.04154 -162.723 -5.04154 5.04154 0.86 0.000221877 0.000175193 0.0218348 0.0173714 -1 -1 -1 -1 36 2979 31 6.89349e+06 380534 648988. 2245.63 1.78 0.0870993 0.0711526 26050 158493 -1 2355 30 1784 2116 262650 99109 4.01225 4.01225 -148.019 -4.01225 0 0 828058. 2865.25 0.33 0.09 0.14 -1 -1 0.33 0.0192233 0.0164586 168 64 62 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 9.03 vpr 64.33 MiB 0.02 7324 -1 -1 1 0.04 -1 -1 34284 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65876 32 32 397 313 1 254 91 17 17 289 -1 unnamed_device 25.4 MiB 3.28 1335 15391 6333 8071 987 64.3 MiB 0.12 0.00 4.35365 -146.749 -4.35365 4.35365 0.87 0.000221356 0.000174535 0.019041 0.0152035 -1 -1 -1 -1 36 3404 41 6.89349e+06 380534 648988. 2245.63 2.55 0.103187 0.0850863 26050 158493 -1 2670 21 1698 2699 224309 49839 3.5952 3.5952 -139.818 -3.5952 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0151364 0.0131436 172 63 62 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 6.98 vpr 64.19 MiB 0.02 7128 -1 -1 1 0.04 -1 -1 33984 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65732 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 25.3 MiB 2.14 954 14593 3799 10158 636 64.2 MiB 0.11 0.00 4.3344 -147.889 -4.3344 4.3344 0.90 0.000208893 0.000165271 0.0181503 0.0144733 -1 -1 -1 -1 34 2879 27 6.89349e+06 295971 618332. 2139.56 1.65 0.0767847 0.0630041 25762 151098 -1 2150 21 1703 2993 185550 44829 3.93041 3.93041 -155.766 -3.93041 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0129997 0.0112486 147 3 128 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 7.20 vpr 64.77 MiB 0.02 7144 -1 -1 1 0.04 -1 -1 35348 -1 -1 28 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66324 32 32 424 343 1 279 92 17 17 289 -1 unnamed_device 25.7 MiB 2.53 1256 18722 6037 9946 2739 64.8 MiB 0.14 0.00 4.28929 -144.626 -4.28929 4.28929 0.87 0.000236379 0.000186303 0.0236777 0.0189259 -1 -1 -1 -1 34 3110 23 6.89349e+06 394628 618332. 2139.56 1.42 0.0732182 0.0599722 25762 151098 -1 2659 20 1783 2122 143790 34717 3.2992 3.2992 -130.444 -3.2992 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0143469 0.0124184 185 96 25 25 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 8.26 vpr 64.65 MiB 0.02 7304 -1 -1 1 0.04 -1 -1 33872 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66204 32 32 395 311 1 255 91 17 17 289 -1 unnamed_device 25.6 MiB 3.32 1250 17635 5254 9154 3227 64.7 MiB 0.14 0.00 4.34019 -149.388 -4.34019 4.34019 0.87 0.000230359 0.000182516 0.0239712 0.0194352 -1 -1 -1 -1 40 2411 23 6.89349e+06 380534 706193. 2443.58 1.67 0.0842808 0.0693023 26914 176310 -1 2158 22 1650 2569 175161 40973 3.4967 3.4967 -138.861 -3.4967 0 0 926341. 3205.33 0.34 0.06 0.15 -1 -1 0.34 0.0158415 0.0137735 169 61 64 32 60 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 7.84 vpr 64.36 MiB 0.02 7292 -1 -1 1 0.04 -1 -1 34028 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65908 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 25.6 MiB 2.97 1385 9679 2314 6454 911 64.4 MiB 0.09 0.00 3.76725 -134.837 -3.76725 3.76725 0.90 0.000242177 0.000194219 0.014171 0.0114451 -1 -1 -1 -1 34 3376 33 6.89349e+06 380534 618332. 2139.56 1.59 0.0822229 0.0674468 25762 151098 -1 2773 21 2282 3181 261725 57878 3.14556 3.14556 -131.413 -3.14556 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.015311 0.0133038 175 65 63 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 7.12 vpr 64.52 MiB 0.02 7140 -1 -1 1 0.04 -1 -1 34028 -1 -1 24 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66064 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 25.7 MiB 2.18 1185 16468 4573 9508 2387 64.5 MiB 0.13 0.00 4.67735 -160.896 -4.67735 4.67735 0.92 0.000220557 0.000174901 0.0229829 0.0186045 -1 -1 -1 -1 34 2727 46 6.89349e+06 338252 618332. 2139.56 1.72 0.0927144 0.0763745 25762 151098 -1 2211 21 1732 2631 169646 38755 3.85956 3.85956 -152.058 -3.85956 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0142201 0.0123632 161 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 6.94 vpr 64.45 MiB 0.02 7184 -1 -1 1 0.04 -1 -1 34068 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66000 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 25.5 MiB 2.12 1202 9883 2469 6353 1061 64.5 MiB 0.09 0.00 4.59905 -158.426 -4.59905 4.59905 0.95 0.000228573 0.000180882 0.0135481 0.0110318 -1 -1 -1 -1 34 3218 36 6.89349e+06 380534 618332. 2139.56 1.58 0.0822309 0.0677586 25762 151098 -1 2600 21 1964 2490 168034 39151 4.14126 4.14126 -157.19 -4.14126 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0142432 0.012321 177 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 7.48 vpr 64.80 MiB 0.03 7496 -1 -1 1 0.05 -1 -1 34240 -1 -1 31 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66352 31 32 449 367 1 300 94 17 17 289 -1 unnamed_device 25.9 MiB 2.63 1470 18625 5645 10509 2471 64.8 MiB 0.15 0.00 5.04279 -156.823 -5.04279 5.04279 0.87 0.00024531 0.000193161 0.0235858 0.0188101 -1 -1 -1 -1 34 3368 47 6.89349e+06 436909 618332. 2139.56 1.54 0.101234 0.0823807 25762 151098 -1 2690 20 1877 2226 151581 35363 3.93725 3.93725 -140.668 -3.93725 0 0 787024. 2723.27 0.32 0.05 0.14 -1 -1 0.32 0.015561 0.0135352 195 122 0 0 122 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 8.42 vpr 64.53 MiB 0.04 7264 -1 -1 1 0.04 -1 -1 34152 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66076 32 32 432 346 1 287 91 17 17 289 -1 unnamed_device 25.7 MiB 3.64 1477 9271 2383 5997 891 64.5 MiB 0.09 0.00 4.63225 -158.944 -4.63225 4.63225 0.89 0.000249436 0.000200627 0.0133427 0.0108658 -1 -1 -1 -1 34 3600 35 6.89349e+06 380534 618332. 2139.56 1.65 0.0826916 0.0675099 25762 151098 -1 2976 22 2460 3565 232523 53347 4.18666 4.18666 -156.524 -4.18666 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0156711 0.0134989 190 94 32 32 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 6.98 vpr 64.24 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 34028 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65784 32 32 312 255 1 198 85 17 17 289 -1 unnamed_device 25.5 MiB 2.33 1085 16081 5241 8837 2003 64.2 MiB 0.11 0.00 3.72665 -133.239 -3.72665 3.72665 0.95 0.000182645 0.000144144 0.0184772 0.0149305 -1 -1 -1 -1 34 2298 20 6.89349e+06 295971 618332. 2139.56 1.42 0.0701424 0.0579687 25762 151098 -1 1930 20 1100 1539 96496 22706 2.78396 2.78396 -121.529 -2.78396 0 0 787024. 2723.27 0.30 0.04 0.13 -1 -1 0.30 0.0122763 0.0106445 127 34 63 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 6.96 vpr 64.34 MiB 0.03 7300 -1 -1 1 0.03 -1 -1 33924 -1 -1 22 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65880 32 32 370 314 1 249 86 17 17 289 -1 unnamed_device 25.5 MiB 2.35 1274 11237 2756 7210 1271 64.3 MiB 0.09 0.00 4.24529 -146.219 -4.24529 4.24529 0.89 0.000215346 0.0001696 0.0148513 0.0119348 -1 -1 -1 -1 34 2869 23 6.89349e+06 310065 618332. 2139.56 1.48 0.0718506 0.0587467 25762 151098 -1 2371 21 1720 2016 140956 31737 3.34729 3.34729 -133.573 -3.34729 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0155839 0.013605 153 94 0 0 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 7.87 vpr 64.94 MiB 0.03 7324 -1 -1 1 0.04 -1 -1 34248 -1 -1 30 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66496 32 32 469 351 1 298 94 17 17 289 -1 unnamed_device 26.0 MiB 2.62 1533 17347 6035 9228 2084 64.9 MiB 0.17 0.00 5.35299 -181.211 -5.35299 5.35299 0.87 0.000272235 0.000217844 0.0231363 0.0184943 -1 -1 -1 -1 34 4502 38 6.89349e+06 422815 618332. 2139.56 2.02 0.107752 0.0883394 25762 151098 -1 3437 23 2749 3828 266628 60288 5.4611 5.4611 -183.396 -5.4611 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.0176625 0.0151936 209 65 96 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 7.60 vpr 64.30 MiB 0.03 7120 -1 -1 1 0.05 -1 -1 34116 -1 -1 23 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65848 32 32 368 284 1 225 87 17 17 289 -1 unnamed_device 25.6 MiB 2.78 1129 14295 3942 8428 1925 64.3 MiB 0.11 0.00 3.82 -132.539 -3.82 3.82 0.87 0.000217502 0.000171424 0.0189517 0.015431 -1 -1 -1 -1 34 2777 23 6.89349e+06 324158 618332. 2139.56 1.50 0.0784205 0.0645308 25762 151098 -1 2373 20 1760 2549 192545 43785 3.25986 3.25986 -131.177 -3.25986 0 0 787024. 2723.27 0.33 0.06 0.14 -1 -1 0.33 0.0139088 0.0120842 156 34 92 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 6.51 vpr 64.22 MiB 0.02 7032 -1 -1 1 0.03 -1 -1 33492 -1 -1 32 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65760 30 32 296 244 1 183 94 17 17 289 -1 unnamed_device 25.5 MiB 1.81 909 12874 3346 8814 714 64.2 MiB 0.10 0.00 4.39149 -134.806 -4.39149 4.39149 0.90 0.000193211 0.000155614 0.0128267 0.0102564 -1 -1 -1 -1 34 2073 29 6.89349e+06 451003 618332. 2139.56 1.44 0.0678501 0.0560711 25762 151098 -1 1724 33 1133 2118 122348 30527 3.4919 3.4919 -123.72 -3.4919 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0157596 0.0134868 129 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 8.76 vpr 64.72 MiB 0.03 7504 -1 -1 1 0.04 -1 -1 34756 -1 -1 35 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66272 32 32 531 413 1 356 99 17 17 289 -1 unnamed_device 26.2 MiB 3.49 1761 16059 4299 10191 1569 64.7 MiB 0.16 0.00 5.69513 -191.49 -5.69513 5.69513 0.87 0.000279632 0.00022121 0.0224133 0.0180343 -1 -1 -1 -1 34 4694 42 6.89349e+06 493284 618332. 2139.56 1.96 0.118267 0.0952516 25762 151098 -1 3557 24 3030 3748 248653 57738 5.88634 5.88634 -199.608 -5.88634 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0202608 0.0175083 239 127 32 32 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 6.72 vpr 64.30 MiB 0.04 7008 -1 -1 1 0.04 -1 -1 33852 -1 -1 23 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65840 32 32 376 288 1 225 87 17 17 289 -1 unnamed_device 25.6 MiB 1.93 1115 15639 5251 8363 2025 64.3 MiB 0.12 0.00 4.42849 -155.095 -4.42849 4.42849 0.85 0.000215637 0.000170175 0.0217897 0.0178725 -1 -1 -1 -1 34 2654 22 6.89349e+06 324158 618332. 2139.56 1.59 0.0820565 0.0676723 25762 151098 -1 2229 21 2030 2833 205546 44612 3.9257 3.9257 -150.955 -3.9257 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0138645 0.0120155 159 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 5.21 vpr 63.88 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 33888 -1 -1 33 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65408 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 25.0 MiB 1.07 847 11641 2851 7878 912 63.9 MiB 0.09 0.00 3.73565 -131.22 -3.73565 3.73565 0.86 0.000189941 0.000152871 0.0120587 0.00996329 -1 -1 -1 -1 30 2193 26 6.89349e+06 465097 556674. 1926.21 0.99 0.0443662 0.03713 25186 138497 -1 1797 20 1182 1929 119769 26931 2.71766 2.71766 -118.342 -2.71766 0 0 706193. 2443.58 0.28 0.04 0.12 -1 -1 0.28 0.0102161 0.00883703 123 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 7.59 vpr 64.62 MiB 0.03 7340 -1 -1 1 0.04 -1 -1 34216 -1 -1 29 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66168 32 32 438 320 1 267 93 17 17 289 -1 unnamed_device 25.8 MiB 2.57 1317 12693 3634 7764 1295 64.6 MiB 0.14 0.00 5.35589 -179.726 -5.35589 5.35589 0.88 0.000454407 0.000367681 0.0194107 0.0157166 -1 -1 -1 -1 34 3591 24 6.89349e+06 408721 618332. 2139.56 1.85 0.0877279 0.0738079 25762 151098 -1 2859 21 2268 3422 271711 57558 5.0129 5.0129 -182.172 -5.0129 0 0 787024. 2723.27 0.31 0.07 0.13 -1 -1 0.31 0.0158933 0.0137577 194 34 128 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 6.60 vpr 63.68 MiB 0.02 6756 -1 -1 1 0.04 -1 -1 34024 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65208 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.8 MiB 1.88 687 12292 3131 7794 1367 63.7 MiB 0.06 0.00 3.61335 -125.578 -3.61335 3.61335 0.88 0.000175503 0.000138872 0.0145035 0.0117207 -1 -1 -1 -1 34 2177 24 6.89349e+06 225501 618332. 2139.56 1.47 0.0541994 0.0447997 25762 151098 -1 1755 22 1446 2356 148959 36393 3.19356 3.19356 -128.014 -3.19356 0 0 787024. 2723.27 0.29 0.05 0.15 -1 -1 0.29 0.011186 0.00972619 114 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 7.99 vpr 63.98 MiB 0.02 6988 -1 -1 1 0.04 -1 -1 33656 -1 -1 19 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65520 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 25.1 MiB 1.73 800 11281 2617 7555 1109 64.0 MiB 0.07 0.00 3.71935 -120.327 -3.71935 3.71935 0.85 0.000176525 0.0001399 0.0133433 0.0108522 -1 -1 -1 -1 30 2483 27 6.89349e+06 267783 556674. 1926.21 3.25 0.0801423 0.0663292 25186 138497 -1 1849 21 1137 1597 111336 26410 3.24586 3.24586 -122.682 -3.24586 0 0 706193. 2443.58 0.29 0.04 0.12 -1 -1 0.29 0.0113748 0.00988175 121 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 7.68 vpr 64.34 MiB 0.03 7300 -1 -1 1 0.04 -1 -1 33904 -1 -1 31 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65888 29 32 393 319 1 253 92 17 17 289 -1 unnamed_device 25.6 MiB 2.87 1254 13547 3444 8490 1613 64.3 MiB 0.11 0.00 4.15454 -130.214 -4.15454 4.15454 0.88 0.000215373 0.000169986 0.0161889 0.0129665 -1 -1 -1 -1 34 2758 30 6.89349e+06 436909 618332. 2139.56 1.54 0.0831314 0.0679175 25762 151098 -1 2315 21 1562 2098 129136 31266 3.3337 3.3337 -123.404 -3.3337 0 0 787024. 2723.27 0.31 0.05 0.21 -1 -1 0.31 0.0147733 0.0128548 171 88 29 29 85 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 7.76 vpr 64.43 MiB 0.02 7204 -1 -1 1 0.04 -1 -1 34352 -1 -1 26 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65980 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 25.7 MiB 2.84 1076 9537 2232 6898 407 64.4 MiB 0.09 0.00 5.13146 -169.785 -5.13146 5.13146 0.92 0.000233775 0.000184712 0.0137168 0.0112032 -1 -1 -1 -1 36 2866 24 6.89349e+06 366440 648988. 2245.63 1.60 0.0777439 0.0640061 26050 158493 -1 2386 20 2051 2879 185349 46334 4.80625 4.80625 -172.407 -4.80625 0 0 828058. 2865.25 0.28 0.08 0.13 -1 -1 0.28 0.0193581 0.0167085 178 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 7.70 vpr 64.67 MiB 0.02 7276 -1 -1 1 0.04 -1 -1 34288 -1 -1 26 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66224 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 25.8 MiB 2.73 1296 18180 5634 10019 2527 64.7 MiB 0.16 0.00 5.12859 -176.097 -5.12859 5.12859 0.89 0.000233389 0.000183835 0.0256185 0.020544 -1 -1 -1 -1 34 3271 41 6.89349e+06 366440 618332. 2139.56 1.73 0.10188 0.0832847 25762 151098 -1 2651 20 2097 2962 209828 46344 4.55565 4.55565 -170.285 -4.55565 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0131963 0.0114355 175 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 6.81 vpr 64.29 MiB 0.02 6948 -1 -1 1 0.05 -1 -1 34200 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65836 32 32 345 287 1 218 85 17 17 289 -1 unnamed_device 25.4 MiB 2.04 1015 9757 2248 6823 686 64.3 MiB 0.08 0.00 4.30029 -148.521 -4.30029 4.30029 1.02 0.000204407 0.000161515 0.0123346 0.00996158 -1 -1 -1 -1 34 2600 24 6.89349e+06 295971 618332. 2139.56 1.48 0.0555802 0.0456976 25762 151098 -1 2113 20 1302 1501 99947 23860 3.4435 3.4435 -138.749 -3.4435 0 0 787024. 2723.27 0.29 0.05 0.12 -1 -1 0.29 0.0138575 0.0120704 141 65 32 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 7.25 vpr 64.11 MiB 0.02 7080 -1 -1 1 0.04 -1 -1 34176 -1 -1 22 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65644 31 32 353 302 1 231 85 17 17 289 -1 unnamed_device 25.4 MiB 2.46 1096 5665 1172 4284 209 64.1 MiB 0.05 0.00 4.25519 -136.378 -4.25519 4.25519 0.91 0.000211756 0.000169638 0.00838123 0.00689299 -1 -1 -1 -1 34 2737 31 6.89349e+06 310065 618332. 2139.56 1.54 0.0664536 0.054567 25762 151098 -1 2242 19 1525 1932 136518 30945 3.1771 3.1771 -123.092 -3.1771 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0138429 0.0120341 146 90 0 0 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 7.75 vpr 64.73 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 34196 -1 -1 29 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66284 30 32 374 297 1 236 91 17 17 289 -1 unnamed_device 25.8 MiB 3.13 1163 18043 6463 9066 2514 64.7 MiB 0.14 0.00 3.98631 -131.256 -3.98631 3.98631 0.88 0.000250005 0.000205081 0.0229943 0.0187722 -1 -1 -1 -1 34 2732 22 6.89349e+06 408721 618332. 2139.56 1.42 0.0663094 0.0545567 25762 151098 -1 2363 20 1559 2252 149677 34178 3.20791 3.20791 -126.604 -3.20791 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0132465 0.011472 164 60 60 30 57 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 6.13 vpr 64.26 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 33960 -1 -1 26 28 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65800 28 32 332 260 1 203 86 17 17 289 -1 unnamed_device 25.4 MiB 1.66 901 12749 3235 8752 762 64.3 MiB 0.09 0.00 4.55505 -133.271 -4.55505 4.55505 0.86 0.000199149 0.000157934 0.0151126 0.012169 -1 -1 -1 -1 34 2318 22 6.89349e+06 366440 618332. 2139.56 1.47 0.0680902 0.0559822 25762 151098 -1 2033 20 1397 2183 139997 33489 4.23356 4.23356 -139.568 -4.23356 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0121736 0.010588 144 34 84 28 28 28 +fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 7.69 vpr 64.06 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 33820 -1 -1 21 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65600 30 32 325 273 1 208 83 17 17 289 -1 unnamed_device 25.3 MiB 2.89 1085 9443 2576 6116 751 64.1 MiB 0.08 0.00 4.29542 -138.034 -4.29542 4.29542 0.89 0.000192509 0.000152393 0.0140168 0.011573 -1 -1 -1 -1 34 2534 22 6.89349e+06 295971 618332. 2139.56 1.62 0.0702204 0.0585167 25762 151098 -1 2093 21 1603 2223 150023 34075 3.93124 3.93124 -143.231 -3.93124 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0127927 0.0109702 136 63 30 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 7.08 vpr 64.14 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 34092 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65676 32 32 361 308 1 245 85 17 17 289 -1 unnamed_device 25.4 MiB 2.30 1214 10129 2604 6568 957 64.1 MiB 0.08 0.00 3.7829 -130.041 -3.7829 3.7829 0.88 0.000208081 0.000165304 0.0129306 0.0104278 -1 -1 -1 -1 34 2866 31 6.89349e+06 295971 618332. 2139.56 1.58 0.0783035 0.0643916 25762 151098 -1 2378 21 1678 1968 128620 30439 3.45671 3.45671 -128.556 -3.45671 0 0 787024. 2723.27 0.31 0.07 0.13 -1 -1 0.31 0.0173976 0.0149128 150 91 0 0 91 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 5.73 vpr 64.12 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 34024 -1 -1 37 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65660 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 25.2 MiB 1.22 1028 15180 4436 8407 2337 64.1 MiB 0.11 0.00 4.35993 -144.85 -4.35993 4.35993 0.85 0.000203182 0.000161462 0.0157033 0.0127465 -1 -1 -1 -1 28 3098 35 6.89349e+06 521472 531479. 1839.03 1.50 0.0561586 0.0466347 24610 126494 -1 2461 18 1613 2635 204124 44950 3.9772 3.9772 -144.88 -3.9772 0 0 648988. 2245.63 0.26 0.06 0.11 -1 -1 0.26 0.0116879 0.0101752 151 4 124 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 6.93 vpr 64.42 MiB 0.03 7340 -1 -1 1 0.04 -1 -1 33976 -1 -1 26 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65964 32 32 407 319 1 257 90 17 17 289 -1 unnamed_device 25.8 MiB 2.03 1305 12351 3315 7817 1219 64.4 MiB 0.11 0.00 4.94724 -169.098 -4.94724 4.94724 0.88 0.000252765 0.000205707 0.0172164 0.014082 -1 -1 -1 -1 34 3262 22 6.89349e+06 366440 618332. 2139.56 1.55 0.0822546 0.0680375 25762 151098 -1 2611 21 1751 2308 146055 35180 4.16855 4.16855 -162.825 -4.16855 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.01491 0.012963 173 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 7.62 vpr 65.01 MiB 0.02 7032 -1 -1 1 0.04 -1 -1 33804 -1 -1 26 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66572 32 32 407 319 1 256 90 17 17 289 -1 unnamed_device 25.9 MiB 2.68 1432 15366 4335 9387 1644 65.0 MiB 0.12 0.00 5.00868 -172.431 -5.00868 5.00868 0.87 0.000230215 0.000182005 0.0202818 0.0160034 -1 -1 -1 -1 34 3499 27 6.89349e+06 366440 618332. 2139.56 1.59 0.0889691 0.0728337 25762 151098 -1 2770 23 2359 3438 249072 54855 4.68889 4.68889 -173.463 -4.68889 0 0 787024. 2723.27 0.32 0.08 0.13 -1 -1 0.32 0.0173928 0.015125 171 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 8.87 vpr 64.57 MiB 0.02 7100 -1 -1 1 0.04 -1 -1 33784 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66116 32 32 399 315 1 257 91 17 17 289 -1 unnamed_device 25.6 MiB 3.58 1315 8455 1941 6044 470 64.6 MiB 0.09 0.00 4.23794 -144.857 -4.23794 4.23794 0.86 0.000224177 0.000177206 0.0114137 0.00929943 -1 -1 -1 -1 34 3637 36 6.89349e+06 380534 618332. 2139.56 1.98 0.0912346 0.0760014 25762 151098 -1 2790 21 1926 2825 231240 49884 3.5973 3.5973 -139.05 -3.5973 0 0 787024. 2723.27 0.34 0.11 0.15 -1 -1 0.34 0.0222297 0.0195034 172 65 60 30 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 7.21 vpr 64.01 MiB 0.02 6936 -1 -1 1 0.04 -1 -1 33976 -1 -1 19 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65548 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 25.3 MiB 2.57 822 13556 3700 7881 1975 64.0 MiB 0.09 0.00 3.95826 -124.717 -3.95826 3.95826 0.86 0.000186562 0.000146081 0.0164603 0.0132792 -1 -1 -1 -1 34 2220 18 6.89349e+06 267783 618332. 2139.56 1.48 0.0642993 0.0528953 25762 151098 -1 1954 24 1199 1681 122124 27814 3.3245 3.3245 -122.903 -3.3245 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0131887 0.0113763 122 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 7.75 vpr 64.29 MiB 0.04 7348 -1 -1 1 0.04 -1 -1 34072 -1 -1 26 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65832 30 32 383 303 1 241 88 17 17 289 -1 unnamed_device 25.6 MiB 3.08 1213 9253 2556 5823 874 64.3 MiB 0.08 0.00 4.87058 -156.054 -4.87058 4.87058 0.90 0.000225682 0.000178215 0.012984 0.0105211 -1 -1 -1 -1 34 2901 25 6.89349e+06 366440 618332. 2139.56 1.52 0.0747282 0.0612989 25762 151098 -1 2473 24 2022 2801 202010 44956 4.51539 4.51539 -160.735 -4.51539 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.015647 0.0135134 165 63 60 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 6.92 vpr 64.82 MiB 0.02 7400 -1 -1 1 0.04 -1 -1 34440 -1 -1 30 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66376 32 32 469 381 1 316 94 17 17 289 -1 unnamed_device 25.9 MiB 2.23 1479 11170 3037 7343 790 64.8 MiB 0.10 0.00 4.57601 -155.886 -4.57601 4.57601 0.85 0.000244405 0.000193191 0.01475 0.0118436 -1 -1 -1 -1 34 3725 30 6.89349e+06 422815 618332. 2139.56 1.62 0.0861405 0.0704943 25762 151098 -1 2948 20 1919 1954 151033 34567 4.12485 4.12485 -160.769 -4.12485 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0149385 0.0128824 204 127 0 0 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 7.39 vpr 64.74 MiB 0.03 7220 -1 -1 1 0.03 -1 -1 34048 -1 -1 29 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66292 31 32 425 341 1 280 92 17 17 289 -1 unnamed_device 25.8 MiB 2.62 1357 18515 5570 10360 2585 64.7 MiB 0.15 0.00 5.04454 -166.93 -5.04454 5.04454 0.89 0.000249111 0.000200254 0.0244433 0.0198461 -1 -1 -1 -1 34 3312 26 6.89349e+06 408721 618332. 2139.56 1.51 0.0891805 0.0731376 25762 151098 -1 2606 18 1853 2368 143705 34753 4.71205 4.71205 -167.201 -4.71205 0 0 787024. 2723.27 0.32 0.06 0.13 -1 -1 0.32 0.0151801 0.0132998 186 94 31 31 93 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 8.11 vpr 64.65 MiB 0.03 7376 -1 -1 1 0.05 -1 -1 33968 -1 -1 28 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66204 30 32 404 328 1 261 90 17 17 289 -1 unnamed_device 25.8 MiB 3.25 1272 11145 3099 7385 661 64.7 MiB 0.10 0.00 4.33029 -138.243 -4.33029 4.33029 0.87 0.000261253 0.000214626 0.0150357 0.0123044 -1 -1 -1 -1 34 3155 40 6.89349e+06 394628 618332. 2139.56 1.61 0.0858626 0.0701483 25762 151098 -1 2503 22 2017 2900 193918 46933 3.78094 3.78094 -137.103 -3.78094 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0149902 0.012965 175 92 26 26 90 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 7.93 vpr 64.39 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 34316 -1 -1 26 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65936 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 25.5 MiB 2.93 1381 17577 5400 9797 2380 64.4 MiB 0.15 0.00 5.10907 -172.718 -5.10907 5.10907 0.89 0.000278374 0.000227814 0.0226901 0.0182244 -1 -1 -1 -1 34 3492 23 6.89349e+06 366440 618332. 2139.56 1.78 0.0934945 0.0775943 25762 151098 -1 2788 20 2119 3010 209008 45498 4.43325 4.43325 -167.168 -4.43325 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0167258 0.0145877 177 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 8.04 vpr 64.26 MiB 0.02 7372 -1 -1 1 0.04 -1 -1 33920 -1 -1 30 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65800 29 32 387 316 1 251 91 17 17 289 -1 unnamed_device 25.6 MiB 3.34 1289 17431 5289 9749 2393 64.3 MiB 0.13 0.00 4.47765 -137.075 -4.47765 4.47765 0.86 0.000211644 0.000167397 0.0205212 0.0164853 -1 -1 -1 -1 34 2899 29 6.89349e+06 422815 618332. 2139.56 1.47 0.0793412 0.0646242 25762 151098 -1 2542 19 1652 2288 151389 34203 3.3997 3.3997 -122.825 -3.3997 0 0 787024. 2723.27 0.31 0.05 0.13 -1 -1 0.31 0.0144247 0.012619 170 88 26 26 85 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 5.86 vpr 63.96 MiB 0.02 7020 -1 -1 1 0.04 -1 -1 34084 -1 -1 16 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65500 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 25.1 MiB 1.15 883 14872 4496 9235 1141 64.0 MiB 0.10 0.00 3.60415 -130.285 -3.60415 3.60415 0.87 0.000176887 0.0001395 0.0170921 0.013716 -1 -1 -1 -1 34 2230 16 6.89349e+06 225501 618332. 2139.56 1.45 0.0642934 0.0532747 25762 151098 -1 1855 22 1459 2378 164456 38120 2.94306 2.94306 -125.536 -2.94306 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0115922 0.0100101 114 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 7.31 vpr 64.71 MiB 0.03 6996 -1 -1 1 0.04 -1 -1 34136 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66260 32 32 407 319 1 259 91 17 17 289 -1 unnamed_device 25.7 MiB 2.50 1311 16411 5462 8005 2944 64.7 MiB 0.13 0.00 5.31517 -177.727 -5.31517 5.31517 0.87 0.000226449 0.000178662 0.0207961 0.0167166 -1 -1 -1 -1 34 3498 29 6.89349e+06 380534 618332. 2139.56 1.61 0.0734835 0.0601953 25762 151098 -1 2799 22 2220 2981 226406 49468 4.54039 4.54039 -173.632 -4.54039 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0161219 0.0138988 174 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 8.48 vpr 64.57 MiB 0.02 7264 -1 -1 1 0.04 -1 -1 34312 -1 -1 25 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66120 32 32 407 319 1 263 89 17 17 289 -1 unnamed_device 25.6 MiB 3.49 1301 10979 2667 7606 706 64.6 MiB 0.10 0.00 5.01095 -168.936 -5.01095 5.01095 0.85 0.000227429 0.000179629 0.0146209 0.0117804 -1 -1 -1 -1 34 3552 34 6.89349e+06 352346 618332. 2139.56 1.88 0.0836397 0.0685595 25762 151098 -1 3042 22 2576 3597 318250 66553 4.58275 4.58275 -175.19 -4.58275 0 0 787024. 2723.27 0.31 0.08 0.13 -1 -1 0.31 0.0166746 0.0144651 176 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 7.10 vpr 63.96 MiB 0.02 7028 -1 -1 1 0.04 -1 -1 33988 -1 -1 19 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65500 32 32 315 267 1 204 83 17 17 289 -1 unnamed_device 25.3 MiB 2.45 973 13043 3975 6991 2077 64.0 MiB 0.09 0.00 3.58222 -118.01 -3.58222 3.58222 0.91 0.000198564 0.000159296 0.0158194 0.0128316 -1 -1 -1 -1 34 2254 22 6.89349e+06 267783 618332. 2139.56 1.42 0.0655543 0.0538515 25762 151098 -1 1955 17 983 1182 92504 20820 2.8425 2.8425 -111.896 -2.8425 0 0 787024. 2723.27 0.30 0.04 0.13 -1 -1 0.30 0.0111677 0.0097981 128 55 32 32 54 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 5.49 vpr 63.80 MiB 0.02 6924 -1 -1 1 0.04 -1 -1 34124 -1 -1 17 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65336 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 25.1 MiB 1.46 719 6444 1413 4474 557 63.8 MiB 0.06 0.00 3.59935 -121.473 -3.59935 3.59935 0.90 0.000172294 0.00013625 0.00813888 0.00664648 -1 -1 -1 -1 28 2235 20 6.89349e+06 239595 531479. 1839.03 0.98 0.0380221 0.0316999 24610 126494 -1 1909 20 1424 2243 170016 39128 3.12946 3.12946 -127.906 -3.12946 0 0 648988. 2245.63 0.26 0.05 0.11 -1 -1 0.26 0.0111476 0.00966853 112 4 93 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 7.04 vpr 64.33 MiB 0.02 7076 -1 -1 1 0.04 -1 -1 33796 -1 -1 25 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65872 32 32 381 303 1 240 89 17 17 289 -1 unnamed_device 25.5 MiB 2.20 1298 18107 5148 10871 2088 64.3 MiB 0.14 0.00 4.34669 -144.598 -4.34669 4.34669 0.87 0.000225876 0.0001789 0.0230416 0.0184783 -1 -1 -1 -1 34 2753 23 6.89349e+06 352346 618332. 2139.56 1.70 0.0940119 0.077987 25762 151098 -1 2262 23 1643 2104 142537 33032 3.4438 3.4438 -133.405 -3.4438 0 0 787024. 2723.27 0.31 0.05 0.13 -1 -1 0.31 0.014889 0.0128414 158 59 60 32 58 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 7.59 vpr 64.61 MiB 0.02 7168 -1 -1 1 0.04 -1 -1 34020 -1 -1 26 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66156 32 32 406 330 1 263 90 17 17 289 -1 unnamed_device 25.5 MiB 2.68 1266 15567 5192 7236 3139 64.6 MiB 0.12 0.00 5.08869 -159.08 -5.08869 5.08869 0.89 0.00023232 0.000183261 0.0211013 0.0169957 -1 -1 -1 -1 34 3332 25 6.89349e+06 366440 618332. 2139.56 1.67 0.0854227 0.0699856 25762 151098 -1 2533 21 1763 2055 158142 35091 4.22385 4.22385 -152.902 -4.22385 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0149184 0.0128832 170 88 28 28 88 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 6.30 vpr 64.65 MiB 0.03 7100 -1 -1 1 0.04 -1 -1 34096 -1 -1 41 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66204 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 25.8 MiB 1.28 1297 11961 2982 7937 1042 64.7 MiB 0.11 0.00 4.87442 -165.154 -4.87442 4.87442 0.86 0.000247758 0.000194377 0.0143637 0.0115832 -1 -1 -1 -1 34 3216 23 6.89349e+06 577847 618332. 2139.56 1.67 0.0852979 0.0711736 25762 151098 -1 2649 21 1893 3214 203652 46646 4.26589 4.26589 -158.116 -4.26589 0 0 787024. 2723.27 0.33 0.06 0.15 -1 -1 0.33 0.0155538 0.0135473 183 3 156 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 7.96 vpr 64.41 MiB 0.04 7116 -1 -1 1 0.04 -1 -1 34128 -1 -1 27 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65960 30 32 371 295 1 235 89 17 17 289 -1 unnamed_device 25.4 MiB 2.94 1092 10979 2817 6746 1416 64.4 MiB 0.17 0.00 3.839 -121.777 -3.839 3.839 0.98 0.000441345 0.000363369 0.0257301 0.0211391 -1 -1 -1 -1 34 2618 26 6.89349e+06 380534 618332. 2139.56 1.56 0.0867903 0.0713688 25762 151098 -1 2074 21 1763 2588 168159 38996 3.22491 3.22491 -115.245 -3.22491 0 0 787024. 2723.27 0.36 0.05 0.13 -1 -1 0.36 0.0140539 0.0121861 160 59 60 30 56 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 6.40 vpr 63.86 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 34352 -1 -1 22 27 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65392 27 32 269 226 1 168 81 17 17 289 -1 unnamed_device 25.0 MiB 1.90 891 13031 4385 6839 1807 63.9 MiB 0.08 0.00 4.27455 -123.837 -4.27455 4.27455 0.88 0.000184085 0.000149002 0.0142203 0.0114659 -1 -1 -1 -1 34 1853 18 6.89349e+06 310065 618332. 2139.56 1.39 0.0581159 0.0477984 25762 151098 -1 1640 21 1113 1611 114697 25627 3.3585 3.3585 -115.073 -3.3585 0 0 787024. 2723.27 0.33 0.04 0.13 -1 -1 0.33 0.0103017 0.00892797 112 34 54 27 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 10.71 vpr 64.62 MiB 0.03 7392 -1 -1 1 0.04 -1 -1 34256 -1 -1 32 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66176 32 32 493 378 1 323 96 17 17 289 -1 unnamed_device 26.1 MiB 3.37 1698 16521 4103 10154 2264 64.6 MiB 0.16 0.00 5.18181 -174.668 -5.18181 5.18181 1.04 0.000265145 0.000210142 0.0228871 0.018312 -1 -1 -1 -1 36 3888 24 6.89349e+06 451003 648988. 2245.63 3.94 0.137289 0.111989 26050 158493 -1 3272 21 2386 3392 238955 53056 4.48045 4.48045 -166.615 -4.48045 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0175676 0.0152242 219 95 62 31 95 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 8.26 vpr 64.74 MiB 0.03 7396 -1 -1 1 0.04 -1 -1 34020 -1 -1 31 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66296 31 32 455 371 1 306 94 17 17 289 -1 unnamed_device 25.9 MiB 3.36 1472 15004 3471 10071 1462 64.7 MiB 0.12 0.00 5.05307 -164.793 -5.05307 5.05307 0.90 0.000247168 0.000195851 0.0190581 0.0152569 -1 -1 -1 -1 34 3480 40 6.89349e+06 436909 618332. 2139.56 1.72 0.0913766 0.0754129 25762 151098 -1 2963 20 2123 2468 187484 43087 4.40468 4.40468 -163.383 -4.40468 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0150613 0.0129923 201 124 0 0 124 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 7.39 vpr 64.36 MiB 0.04 7172 -1 -1 1 0.05 -1 -1 33704 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65908 32 32 355 304 1 244 85 17 17 289 -1 unnamed_device 25.4 MiB 2.43 1086 15895 5952 7404 2539 64.4 MiB 0.11 0.00 4.35779 -139.935 -4.35779 4.35779 0.86 0.000196513 0.000154549 0.0187007 0.0148915 -1 -1 -1 -1 34 3131 30 6.89349e+06 295971 618332. 2139.56 1.76 0.0706631 0.0579697 25762 151098 -1 2338 18 1627 1856 142254 32742 3.39065 3.39065 -134.794 -3.39065 0 0 787024. 2723.27 0.31 0.05 0.13 -1 -1 0.31 0.0121563 0.0105594 149 89 0 0 89 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 7.46 vpr 64.61 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 33948 -1 -1 23 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66156 32 32 364 282 1 225 87 17 17 289 -1 unnamed_device 25.6 MiB 2.72 1129 14295 4007 8660 1628 64.6 MiB 0.12 0.00 4.63878 -154.018 -4.63878 4.63878 0.89 0.000221645 0.000175474 0.0189825 0.0153859 -1 -1 -1 -1 34 2755 27 6.89349e+06 324158 618332. 2139.56 1.48 0.0801164 0.0663292 25762 151098 -1 2226 19 1342 1861 126147 30965 3.85766 3.85766 -146.209 -3.85766 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0137556 0.0118396 151 34 90 30 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 7.46 vpr 64.65 MiB 0.03 7216 -1 -1 1 0.04 -1 -1 34064 -1 -1 31 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66204 31 32 443 336 1 280 94 17 17 289 -1 unnamed_device 25.8 MiB 2.61 1343 18838 5810 10490 2538 64.7 MiB 0.17 0.00 4.61515 -155.312 -4.61515 4.61515 0.95 0.000244291 0.000194006 0.0250394 0.0202275 -1 -1 -1 -1 34 3244 21 6.89349e+06 436909 618332. 2139.56 1.60 0.0979624 0.0807479 25762 151098 -1 2597 21 2025 2807 194143 43948 3.77966 3.77966 -148.471 -3.77966 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0155825 0.013467 195 64 87 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 7.71 vpr 64.62 MiB 0.03 7156 -1 -1 1 0.04 -1 -1 34016 -1 -1 28 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66168 30 32 373 297 1 235 90 17 17 289 -1 unnamed_device 25.5 MiB 3.01 1242 16773 5664 8452 2657 64.6 MiB 0.12 0.00 4.37249 -137.399 -4.37249 4.37249 0.86 0.000211268 0.000167176 0.0193814 0.0155287 -1 -1 -1 -1 36 2869 33 6.89349e+06 394628 648988. 2245.63 1.57 0.0815018 0.0664254 26050 158493 -1 2473 21 1568 2457 188141 40018 3.9099 3.9099 -136.708 -3.9099 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0136958 0.0118542 162 61 58 30 58 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 7.43 vpr 64.86 MiB 0.02 7196 -1 -1 1 0.04 -1 -1 34044 -1 -1 28 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66412 32 32 407 319 1 260 92 17 17 289 -1 unnamed_device 25.9 MiB 2.33 1384 17066 6142 9147 1777 64.9 MiB 0.16 0.00 5.13217 -171.938 -5.13217 5.13217 0.89 0.00023582 0.000186192 0.0219399 0.0176453 -1 -1 -1 -1 34 3483 24 6.89349e+06 394628 618332. 2139.56 1.71 0.0864031 0.0708656 25762 151098 -1 2698 19 1973 2685 204802 44705 4.18775 4.18775 -160.479 -4.18775 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0155188 0.0133254 173 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 7.76 vpr 64.55 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 34080 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66100 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 25.5 MiB 2.88 1428 17431 4990 10284 2157 64.6 MiB 0.14 0.00 3.82792 -135.136 -3.82792 3.82792 0.86 0.000241718 0.000194069 0.0239271 0.0194815 -1 -1 -1 -1 34 3179 35 6.89349e+06 380534 618332. 2139.56 1.55 0.0925907 0.076244 25762 151098 -1 2876 19 1893 2606 184564 41930 3.32106 3.32106 -138.565 -3.32106 0 0 787024. 2723.27 0.33 0.06 0.16 -1 -1 0.33 0.0147564 0.0129005 175 65 63 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 6.25 vpr 64.05 MiB 0.02 6924 -1 -1 1 0.04 -1 -1 33964 -1 -1 21 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65592 29 32 287 238 1 178 82 17 17 289 -1 unnamed_device 25.5 MiB 1.76 801 14322 5270 6630 2422 64.1 MiB 0.09 0.00 3.809 -119.904 -3.809 3.809 0.86 0.000169579 0.000133423 0.0151884 0.0121468 -1 -1 -1 -1 34 1853 19 6.89349e+06 295971 618332. 2139.56 1.36 0.061842 0.0507652 25762 151098 -1 1634 19 1294 1726 121999 27555 3.08426 3.08426 -114.795 -3.08426 0 0 787024. 2723.27 0.31 0.04 0.14 -1 -1 0.31 0.0104306 0.00910264 118 34 58 29 29 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 7.21 vpr 64.46 MiB 0.02 6972 -1 -1 1 0.04 -1 -1 34212 -1 -1 20 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66004 32 32 334 290 1 222 84 17 17 289 -1 unnamed_device 25.5 MiB 2.51 1028 8502 1925 6217 360 64.5 MiB 0.07 0.00 4.34059 -128.583 -4.34059 4.34059 0.86 0.000188447 0.000148345 0.0102278 0.00820964 -1 -1 -1 -1 34 2849 34 6.89349e+06 281877 618332. 2139.56 1.61 0.0699605 0.0572263 25762 151098 -1 2099 23 1603 1909 143510 33601 3.6283 3.6283 -127.147 -3.6283 0 0 787024. 2723.27 0.32 0.05 0.13 -1 -1 0.32 0.0136011 0.0117286 135 82 0 0 82 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 6.72 vpr 64.46 MiB 0.03 7168 -1 -1 1 0.04 -1 -1 33960 -1 -1 24 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66008 31 32 365 281 1 225 87 17 17 289 -1 unnamed_device 25.4 MiB 1.84 1184 15255 6384 8070 801 64.5 MiB 0.11 0.00 4.58005 -151.573 -4.58005 4.58005 0.89 0.000213701 0.000169337 0.019834 0.0162575 -1 -1 -1 -1 34 2906 27 6.89349e+06 338252 618332. 2139.56 1.58 0.0746907 0.061735 25762 151098 -1 2310 21 1760 2644 184833 41713 4.05996 4.05996 -150.94 -4.05996 0 0 787024. 2723.27 0.31 0.06 0.13 -1 -1 0.31 0.014386 0.0125433 154 34 93 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 6.50 vpr 63.91 MiB 0.02 7164 -1 -1 1 0.04 -1 -1 33692 -1 -1 21 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65444 29 32 297 254 1 193 82 17 17 289 -1 unnamed_device 25.0 MiB 1.95 958 13610 5420 5754 2436 63.9 MiB 0.09 0.00 3.4949 -108.08 -3.4949 3.4949 0.87 0.000175511 0.000137886 0.0149764 0.0119638 -1 -1 -1 -1 34 2293 24 6.89349e+06 295971 618332. 2139.56 1.39 0.0524993 0.0428111 25762 151098 -1 1868 20 1149 1340 90962 21165 2.91591 2.91591 -109.378 -2.91591 0 0 787024. 2723.27 0.32 0.04 0.14 -1 -1 0.32 0.0116716 0.0101811 123 56 29 29 52 26 +fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 7.15 vpr 64.16 MiB 0.02 7052 -1 -1 1 0.04 -1 -1 34180 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65704 32 32 314 256 1 194 82 17 17 289 -1 unnamed_device 25.3 MiB 2.50 991 12186 3867 6660 1659 64.2 MiB 0.09 0.00 3.839 -135.491 -3.839 3.839 0.91 0.000203991 0.000163072 0.0151611 0.012243 -1 -1 -1 -1 34 2458 23 6.89349e+06 253689 618332. 2139.56 1.49 0.0674714 0.0555768 25762 151098 -1 2107 19 1554 2199 180715 37826 3.13446 3.13446 -130.567 -3.13446 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0122366 0.0107457 127 34 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 7.62 vpr 64.32 MiB 0.04 7160 -1 -1 1 0.05 -1 -1 34080 -1 -1 27 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65868 31 32 387 307 1 242 90 17 17 289 -1 unnamed_device 25.4 MiB 2.85 1211 12351 3377 8033 941 64.3 MiB 0.09 0.00 4.27594 -141.751 -4.27594 4.27594 0.86 0.000227756 0.000180009 0.0156681 0.0126273 -1 -1 -1 -1 34 2952 20 6.89349e+06 380534 618332. 2139.56 1.51 0.0740924 0.0608915 25762 151098 -1 2565 19 1981 2687 180618 43090 3.6674 3.6674 -142.71 -3.6674 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0135313 0.0117764 164 64 58 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 6.71 vpr 63.88 MiB 0.02 7264 -1 -1 1 0.05 -1 -1 34148 -1 -1 21 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65408 31 32 308 262 1 197 84 17 17 289 -1 unnamed_device 25.2 MiB 2.12 1059 8685 2032 5995 658 63.9 MiB 0.06 0.00 3.20612 -110.242 -3.20612 3.20612 0.88 0.000193538 0.000155191 0.010244 0.00827964 -1 -1 -1 -1 34 2412 19 6.89349e+06 295971 618332. 2139.56 1.40 0.0573375 0.0470102 25762 151098 -1 2008 20 1094 1360 103866 23561 2.97521 2.97521 -111.445 -2.97521 0 0 787024. 2723.27 0.29 0.04 0.14 -1 -1 0.29 0.0113236 0.00981993 125 55 31 31 53 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 7.25 vpr 63.27 MiB 0.02 7080 -1 -1 1 0.05 -1 -1 33884 -1 -1 25 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 383 307 1 242 89 17 17 289 -1 unnamed_device 24.7 MiB 2.41 1275 17711 6428 9355 1928 63.3 MiB 0.14 0.00 4.24029 -141.492 -4.24029 4.24029 0.87 0.000218022 0.000172363 0.0217635 0.0173612 -1 -1 -1 -1 34 2871 22 6.89349e+06 352346 618332. 2139.56 1.50 0.0800387 0.0656068 25762 151098 -1 2493 20 1561 2255 205313 41710 3.6346 3.6346 -134.296 -3.6346 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.015108 0.0131016 162 65 52 26 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 8.08 vpr 64.57 MiB 0.03 7368 -1 -1 1 0.04 -1 -1 33876 -1 -1 31 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66120 31 32 422 339 1 277 94 17 17 289 -1 unnamed_device 25.6 MiB 3.20 1343 17134 5604 8974 2556 64.6 MiB 0.15 0.00 5.0297 -160.896 -5.0297 5.0297 0.88 0.000236401 0.000185624 0.0238975 0.0192684 -1 -1 -1 -1 34 3451 22 6.89349e+06 436909 618332. 2139.56 1.62 0.0894686 0.072973 25762 151098 -1 2779 19 2122 3000 209289 46480 4.28509 4.28509 -156.232 -4.28509 0 0 787024. 2723.27 0.31 0.07 0.13 -1 -1 0.31 0.0153414 0.0132137 185 93 31 31 92 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 8.05 vpr 64.26 MiB 0.02 6916 -1 -1 1 0.04 -1 -1 33868 -1 -1 21 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65804 32 32 333 279 1 216 85 17 17 289 -1 unnamed_device 25.2 MiB 3.34 1150 11245 3098 7003 1144 64.3 MiB 0.08 0.00 3.53115 -123.341 -3.53115 3.53115 0.87 0.000191956 0.000152105 0.0134255 0.010837 -1 -1 -1 -1 34 2757 25 6.89349e+06 295971 618332. 2139.56 1.48 0.0670052 0.0549417 25762 151098 -1 2406 21 1546 2161 156275 34456 3.12676 3.12676 -125.567 -3.12676 0 0 787024. 2723.27 0.33 0.05 0.14 -1 -1 0.33 0.0136749 0.0117882 137 61 32 32 60 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 6.55 vpr 63.44 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 33892 -1 -1 19 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64960 32 32 339 283 1 218 83 17 17 289 -1 unnamed_device 24.7 MiB 1.93 960 9803 2241 6661 901 63.4 MiB 0.08 0.00 3.817 -127.178 -3.817 3.817 0.88 0.000194034 0.000153099 0.0128513 0.0104375 -1 -1 -1 -1 34 2445 23 6.89349e+06 267783 618332. 2139.56 1.40 0.0550695 0.0454127 25762 151098 -1 1949 22 1454 1750 106721 27622 3.20811 3.20811 -124.459 -3.20811 0 0 787024. 2723.27 0.33 0.04 0.13 -1 -1 0.33 0.012449 0.0107003 138 63 32 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 9.25 vpr 64.68 MiB 0.03 7180 -1 -1 1 0.04 -1 -1 34376 -1 -1 27 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66228 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 25.8 MiB 2.48 1238 13147 2986 8190 1971 64.7 MiB 0.10 0.00 4.60895 -158.911 -4.60895 4.60895 0.90 0.000224634 0.00017755 0.0165373 0.0133414 -1 -1 -1 -1 42 2704 19 6.89349e+06 380534 744469. 2576.02 3.48 0.110379 0.0907518 27202 183097 -1 2337 20 1816 2236 168530 36541 3.74226 3.74226 -147.266 -3.74226 0 0 949917. 3286.91 0.36 0.05 0.16 -1 -1 0.36 0.0141929 0.0122898 178 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 6.65 vpr 63.78 MiB 0.03 7320 -1 -1 1 0.04 -1 -1 34012 -1 -1 26 29 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65312 29 32 367 293 1 231 87 17 17 289 -1 unnamed_device 25.0 MiB 2.57 1165 15639 4840 8583 2216 63.8 MiB 0.12 0.00 3.69045 -118.464 -3.69045 3.69045 0.90 0.000206669 0.000163271 0.0189307 0.0151556 -1 -1 -1 -1 30 2493 21 6.89349e+06 366440 556674. 1926.21 0.94 0.0573164 0.0475628 25186 138497 -1 2048 22 1565 2117 122502 28169 2.97676 2.97676 -113.932 -2.97676 0 0 706193. 2443.58 0.28 0.04 0.12 -1 -1 0.28 0.0135679 0.0117437 157 62 56 29 58 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 9.16 vpr 64.58 MiB 0.03 7488 -1 -1 1 0.05 -1 -1 34048 -1 -1 29 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66132 32 32 469 381 1 315 93 17 17 289 -1 unnamed_device 25.7 MiB 2.65 1517 16893 4853 9389 2651 64.6 MiB 0.14 0.00 4.95684 -167.658 -4.95684 4.95684 0.85 0.000260532 0.000209059 0.0232811 0.018842 -1 -1 -1 -1 34 3787 43 6.89349e+06 408721 618332. 2139.56 3.16 0.155834 0.128527 25762 151098 -1 3073 21 2565 2958 226911 49629 4.57149 4.57149 -168.414 -4.57149 0 0 787024. 2723.27 0.39 0.08 0.13 -1 -1 0.39 0.0188044 0.0162182 203 127 0 0 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 5.20 vpr 63.93 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 33736 -1 -1 16 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65468 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 25.2 MiB 1.15 798 6670 1580 4567 523 63.9 MiB 0.05 0.00 2.99217 -104.93 -2.99217 2.99217 0.89 0.000164816 0.000130508 0.00802316 0.00652684 -1 -1 -1 -1 32 2009 25 6.89349e+06 225501 586450. 2029.24 0.93 0.0388393 0.0324445 25474 144626 -1 1633 17 905 1467 98390 22564 2.77591 2.77591 -111.21 -2.77591 0 0 744469. 2576.02 0.29 0.04 0.13 -1 -1 0.29 0.00917871 0.00802156 104 4 85 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 8.29 vpr 63.29 MiB 0.03 7272 -1 -1 1 0.04 -1 -1 34168 -1 -1 28 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 418 338 1 273 92 17 17 289 -1 unnamed_device 24.4 MiB 3.20 1436 17687 5331 10067 2289 63.3 MiB 0.15 0.00 5.59526 -182.613 -5.59526 5.59526 0.86 0.000231769 0.000183716 0.023119 0.0185471 -1 -1 -1 -1 34 3460 38 6.89349e+06 394628 618332. 2139.56 1.65 0.0963889 0.0783871 25762 151098 -1 2818 20 2257 2934 227494 49378 4.91074 4.91074 -179.107 -4.91074 0 0 787024. 2723.27 0.34 0.07 0.25 -1 -1 0.34 0.0158688 0.01369 179 92 28 28 92 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 10.43 vpr 64.23 MiB 0.04 7080 -1 -1 1 0.05 -1 -1 33476 -1 -1 24 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65776 32 32 376 318 1 259 88 17 17 289 -1 unnamed_device 25.4 MiB 2.96 1228 17248 5165 9655 2428 64.2 MiB 0.14 0.00 4.94918 -162.793 -4.94918 4.94918 0.86 0.000215527 0.000169988 0.0214541 0.0172562 -1 -1 -1 -1 38 2827 20 6.89349e+06 338252 678818. 2348.85 4.05 0.108491 0.0884019 26626 170182 -1 2466 21 2302 2900 204738 45823 4.16159 4.16159 -155.406 -4.16159 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.015129 0.0132029 161 96 0 0 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 7.54 vpr 64.49 MiB 0.03 7180 -1 -1 1 0.04 -1 -1 33984 -1 -1 25 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66040 32 32 401 316 1 253 89 17 17 289 -1 unnamed_device 25.6 MiB 2.66 1223 15335 4617 8313 2405 64.5 MiB 0.13 0.00 3.74935 -130.887 -3.74935 3.74935 0.87 0.000224967 0.000178303 0.0201438 0.016268 -1 -1 -1 -1 34 2949 22 6.89349e+06 352346 618332. 2139.56 1.68 0.0925099 0.0771385 25762 151098 -1 2455 21 1607 2192 170274 37420 3.1004 3.1004 -127.579 -3.1004 0 0 787024. 2723.27 0.32 0.06 0.13 -1 -1 0.32 0.0156903 0.0135711 170 65 61 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 8.12 vpr 63.69 MiB 0.03 7444 -1 -1 1 0.04 -1 -1 34380 -1 -1 33 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65216 32 32 500 382 1 323 97 17 17 289 -1 unnamed_device 24.9 MiB 2.86 1555 21409 7403 11274 2732 63.7 MiB 0.19 0.00 5.15944 -175.489 -5.15944 5.15944 0.89 0.000264584 0.000208976 0.0282474 0.0225807 -1 -1 -1 -1 34 4120 50 6.89349e+06 465097 618332. 2139.56 1.94 0.1129 0.0932452 25762 151098 -1 3155 19 2589 3065 236422 52400 4.8551 4.8551 -171.566 -4.8551 0 0 787024. 2723.27 0.32 0.07 0.13 -1 -1 0.32 0.0183137 0.015899 224 96 64 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 6.14 vpr 63.68 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 33880 -1 -1 16 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65208 30 32 246 229 1 160 78 17 17 289 -1 unnamed_device 25.0 MiB 1.60 857 12860 4315 6531 2014 63.7 MiB 0.07 0.00 3.11018 -96.6789 -3.11018 3.11018 0.90 0.000155181 0.000122226 0.0136816 0.0110283 -1 -1 -1 -1 34 1785 19 6.89349e+06 225501 618332. 2139.56 1.29 0.0532119 0.0438963 25762 151098 -1 1575 16 677 697 55663 12945 2.31406 2.31406 -91.2888 -2.31406 0 0 787024. 2723.27 0.32 0.03 0.13 -1 -1 0.32 0.00820774 0.00718987 93 56 0 0 53 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 6.65 vpr 62.88 MiB 0.03 6984 -1 -1 1 0.05 -1 -1 33864 -1 -1 21 30 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64392 30 32 296 244 1 181 83 17 17 289 -1 unnamed_device 23.9 MiB 1.95 936 13763 4424 7248 2091 62.9 MiB 0.09 0.00 4.23979 -138.455 -4.23979 4.23979 0.88 0.000176156 0.000139181 0.0152404 0.0122558 -1 -1 -1 -1 34 2069 19 6.89349e+06 295971 618332. 2139.56 1.39 0.0610836 0.0501228 25762 151098 -1 1752 19 1387 2094 145324 33469 3.41345 3.41345 -131.279 -3.41345 0 0 787024. 2723.27 0.32 0.05 0.14 -1 -1 0.32 0.013382 0.0118796 124 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 7.85 vpr 63.77 MiB 0.03 6948 -1 -1 1 0.03 -1 -1 33628 -1 -1 18 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65304 32 32 314 256 1 199 82 17 17 289 -1 unnamed_device 25.0 MiB 3.06 1009 8448 2021 6048 379 63.8 MiB 0.08 0.00 4.33609 -148.866 -4.33609 4.33609 0.86 0.000188702 0.000148982 0.0108085 0.00874381 -1 -1 -1 -1 34 2842 26 6.89349e+06 253689 618332. 2139.56 1.67 0.0571653 0.0474936 25762 151098 -1 2320 21 1677 2902 215640 48416 3.8476 3.8476 -150.457 -3.8476 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.012441 0.0107962 129 34 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 6.28 vpr 63.61 MiB 0.02 6960 -1 -1 1 0.04 -1 -1 33964 -1 -1 24 25 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65140 25 32 251 214 1 162 81 17 17 289 -1 unnamed_device 25.1 MiB 1.69 638 13031 3446 7568 2017 63.6 MiB 0.08 0.00 3.8441 -98.0419 -3.8441 3.8441 0.91 0.000148241 0.000116908 0.0124021 0.00993332 -1 -1 -1 -1 34 1735 20 6.89349e+06 338252 618332. 2139.56 1.35 0.0530287 0.0433486 25762 151098 -1 1462 18 873 1225 71875 17963 3.18111 3.18111 -99.3117 -3.18111 0 0 787024. 2723.27 0.32 0.03 0.13 -1 -1 0.32 0.0093407 0.00808074 107 34 50 25 25 25 +fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 8.87 vpr 64.67 MiB 0.03 7260 -1 -1 1 0.06 -1 -1 34164 -1 -1 28 32 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66224 32 32 432 346 1 288 92 17 17 289 -1 unnamed_device 25.9 MiB 3.71 1455 17273 5876 8561 2836 64.7 MiB 0.16 0.00 4.52275 -153.489 -4.52275 4.52275 0.89 0.000247932 0.000198553 0.0244503 0.019949 -1 -1 -1 -1 34 4203 34 6.89349e+06 394628 618332. 2139.56 1.81 0.0901629 0.0748059 25762 151098 -1 3085 22 2661 3895 270970 59887 3.86266 3.86266 -150.482 -3.86266 0 0 787024. 2723.27 0.31 0.07 0.14 -1 -1 0.31 0.0164082 0.0140969 190 94 32 32 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 8.57 vpr 63.43 MiB 0.03 7208 -1 -1 1 0.05 -1 -1 33836 -1 -1 27 31 0 0 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64956 31 32 421 339 1 274 90 17 17 289 -1 unnamed_device 24.4 MiB 3.52 1331 13758 3863 8023 1872 63.4 MiB 0.12 0.00 4.9912 -162.029 -4.9912 4.9912 0.89 0.000233943 0.000185266 0.0183647 0.014801 -1 -1 -1 -1 34 3056 27 6.89349e+06 380534 618332. 2139.56 1.67 0.0932378 0.0770933 25762 151098 -1 2595 21 2071 2940 200601 47642 4.1898 4.1898 -157.301 -4.1898 0 0 787024. 2723.27 0.36 0.07 0.19 -1 -1 0.36 0.0170416 0.0147851 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 d627c7d0b85..1ceb9578fa8 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 8.71 vpr 65.38 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 97 14 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:50 gh-actions-runner-vtr-auto-spawned135 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66944 14 8 926 934 0 517 119 12 12 144 clb auto 27.6 MiB 0.40 4978 9171 1462 7157 552 65.4 MiB 0.21 0.01 4.85854 -36.6925 -4.85854 nan 0.38 0.00226244 0.001991 0.0945504 0.082642 52 6841 26 1.8e+06 1.746e+06 452692. 3143.70 5.22 1.22756 1.05858 12180 91053 -1 6642 23 3992 14975 576861 90555 4.88853 nan -35.9466 -4.88853 0 0 594734. 4130.10 0.19 0.31 0.08 -1 -1 0.19 0.150949 0.136693 -k6_N10_40nm.xml apex2.pre-vpr.blif common 9.58 vpr 67.03 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 115 38 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:50 gh-actions-runner-vtr-auto-spawned135 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68636 39 3 1113 1117 0 675 157 13 13 169 clb auto 29.5 MiB 0.53 7879 13693 2337 10136 1220 67.0 MiB 0.30 0.01 6.02154 -17.5859 -6.02154 nan 0.45 0.0028102 0.00246118 0.117499 0.103818 62 13086 48 2.178e+06 2.07e+06 652532. 3861.14 6.02 1.0391 0.894937 15366 127615 -1 11563 30 6785 30387 1264252 174643 5.82632 nan -17.1242 -5.82632 0 0 801739. 4744.02 0.17 0.37 0.07 -1 -1 0.17 0.134439 0.121141 -k6_N10_40nm.xml apex4.pre-vpr.blif common 7.04 vpr 65.39 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 9 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:50 gh-actions-runner-vtr-auto-spawned135 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66960 9 19 897 916 0 569 123 12 12 144 clb auto 27.6 MiB 0.47 6709 9578 1569 7337 672 65.4 MiB 0.22 0.01 5.16784 -84.6504 -5.16784 nan 0.37 0.00236091 0.00202291 0.0896899 0.0795875 62 10796 38 1.8e+06 1.71e+06 546237. 3793.31 3.57 0.718352 0.625054 13040 106280 -1 9528 24 5403 25371 1032193 149160 5.31039 nan -84.6173 -5.31039 0 0 671089. 4660.34 0.21 0.41 0.10 -1 -1 0.21 0.148545 0.133948 -k6_N10_40nm.xml bigkey.pre-vpr.blif common 9.29 vpr 66.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 94 229 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:50 gh-actions-runner-vtr-auto-spawned135 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68464 263 197 1372 1603 1 490 554 17 17 289 io auto 29.1 MiB 0.32 4312 159734 46622 103443 9669 66.9 MiB 0.69 0.01 3.07033 -729.814 -3.07033 3.07033 0.91 0.00284645 0.00259273 0.224153 0.200395 34 7551 23 4.05e+06 1.692e+06 688919. 2383.80 4.39 0.960078 0.860808 21366 134962 -1 7110 17 2315 10686 592079 112425 3.1266 3.1266 -779.621 -3.1266 0 0 845950. 2927.16 0.34 0.29 0.12 -1 -1 0.34 0.137212 0.125624 -k6_N10_40nm.xml clma.pre-vpr.blif common 35.55 vpr 90.90 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 378 62 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:50 gh-actions-runner-vtr-auto-spawned135 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 93080 383 82 3674 4077 1 2351 843 22 22 484 clb auto 53.7 MiB 1.73 30084 406803 150647 202517 53639 90.9 MiB 4.76 0.05 8.58818 -372.88 -8.58818 8.58818 1.73 0.0116669 0.00952614 1.2421 1.0465 80 49364 38 7.2e+06 6.804e+06 2.49993e+06 5165.15 17.71 4.82435 4.06394 50556 522948 -1 43579 26 21059 94912 4449370 570004 8.46141 8.46141 -379.797 -8.46141 0 0 3.14482e+06 6497.55 0.85 1.29 0.30 -1 -1 0.85 0.454226 0.400725 -k6_N10_40nm.xml des.pre-vpr.blif common 10.21 vpr 64.85 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 101 256 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:50 gh-actions-runner-vtr-auto-spawned135 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66408 256 245 954 1199 0 613 602 18 18 324 io auto 26.6 MiB 0.24 4828 140357 37125 96029 7203 64.9 MiB 0.56 0.01 4.31026 -789.244 -4.31026 nan 1.06 0.00295092 0.00275592 0.172656 0.160844 34 7705 26 4.608e+06 1.818e+06 779010. 2404.35 5.17 1.062 0.987559 24000 152888 -1 7130 18 2525 6134 402061 81348 4.49788 nan -806.729 -4.49788 0 0 956463. 2952.05 0.38 0.23 0.13 -1 -1 0.38 0.123016 0.115293 -k6_N10_40nm.xml diffeq.pre-vpr.blif common 7.40 vpr 65.88 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 64 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:50 gh-actions-runner-vtr-auto-spawned135 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67460 64 39 1371 1410 1 554 198 12 12 144 clb auto 28.0 MiB 0.34 3809 23814 5171 17235 1408 65.9 MiB 0.27 0.01 6.20988 -1165.59 -6.20988 6.20988 0.37 0.0024161 0.00215718 0.116118 0.102969 34 5732 42 1.8e+06 1.71e+06 320785. 2227.68 3.33 1.059 0.922835 10464 62065 -1 5209 22 3174 9420 385735 66218 6.26652 6.26652 -1186.82 -6.26652 0 0 394711. 2741.05 0.14 0.25 0.05 -1 -1 0.14 0.144545 0.129925 -k6_N10_40nm.xml dsip.pre-vpr.blif common 9.29 vpr 66.72 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 97 229 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:50 gh-actions-runner-vtr-auto-spawned135 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68324 229 197 1370 1567 1 538 523 16 16 256 io auto 28.7 MiB 0.35 4639 156367 46237 102482 7648 66.7 MiB 0.78 0.01 3.20322 -726.151 -3.20322 3.20322 0.76 0.00358135 0.00313658 0.24981 0.224605 34 8368 47 3.528e+06 1.746e+06 604079. 2359.69 4.65 1.11832 1.00687 18880 118149 -1 7459 13 2689 9149 571229 113616 3.28489 3.28489 -779.779 -3.28489 0 0 742044. 2898.61 0.29 0.26 0.11 -1 -1 0.29 0.118119 0.1095 -k6_N10_40nm.xml elliptic.pre-vpr.blif common 25.49 vpr 78.52 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 235 131 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:50 gh-actions-runner-vtr-auto-spawned135 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80400 131 114 3421 3535 1 1210 480 18 18 324 clb auto 41.4 MiB 0.98 11455 124428 34728 84130 5570 78.5 MiB 1.30 0.02 8.08387 -4695.24 -8.08387 8.08387 1.02 0.00650682 0.00542484 0.467206 0.395934 50 19350 40 4.608e+06 4.23e+06 1.06618e+06 3290.67 8.28 2.31175 1.98073 27232 214208 -1 16443 24 8056 35475 1612694 233265 7.93357 7.93357 -4714.53 -7.93357 0 0 1.36711e+06 4219.48 0.54 0.89 0.20 -1 -1 0.54 0.454355 0.401092 -k6_N10_40nm.xml ex1010.pre-vpr.blif common 49.10 vpr 81.94 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 299 10 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:50 gh-actions-runner-vtr-auto-spawned135 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 83904 10 10 2659 2669 0 1414 319 20 20 400 clb auto 45.5 MiB 1.48 26670 58036 15610 40440 1986 81.9 MiB 1.44 0.02 6.99148 -66.5608 -6.99148 nan 1.36 0.00806264 0.0070899 0.517831 0.437174 90 47190 31 5.832e+06 5.382e+06 2.27845e+06 5696.13 36.26 4.35191 3.65217 44092 472493 -1 40435 27 13453 81187 4495090 507770 6.68929 nan -64.8044 -6.68929 0 0 2.84047e+06 7101.17 1.14 1.88 0.49 -1 -1 1.14 0.603621 0.535117 -k6_N10_40nm.xml ex5p.pre-vpr.blif common 8.89 vpr 63.96 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 82 8 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:50 gh-actions-runner-vtr-auto-spawned135 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65500 8 63 761 824 0 451 153 12 12 144 clb auto 26.2 MiB 0.33 4564 13650 2467 10070 1113 64.0 MiB 0.21 0.01 4.36001 -198.144 -4.36001 nan 0.37 0.00195987 0.00169055 0.0831115 0.0735505 46 8116 47 1.8e+06 1.476e+06 409728. 2845.33 5.88 1.06237 0.917436 11608 81817 -1 7004 30 4945 21003 896494 141905 4.47246 nan -203.996 -4.47246 0 0 527971. 3666.47 0.17 0.39 0.07 -1 -1 0.17 0.148506 0.132448 -k6_N10_40nm.xml frisc.pre-vpr.blif common 28.67 vpr 78.51 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 242 20 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:50 gh-actions-runner-vtr-auto-spawned135 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80392 20 116 3175 3291 1 1258 378 18 18 324 clb auto 41.2 MiB 1.00 15098 76874 18624 53343 4907 78.5 MiB 1.16 0.02 9.88726 -5092.35 -9.88726 9.88726 1.05 0.00665797 0.00599117 0.442129 0.381299 60 25951 46 4.608e+06 4.356e+06 1.28013e+06 3951.02 13.75 2.84249 2.45024 29492 257832 -1 21144 26 8391 35581 1929606 263963 9.98478 9.98478 -5145.99 -9.98478 0 0 1.60155e+06 4943.04 0.59 0.88 0.26 -1 -1 0.59 0.4177 0.369904 -k6_N10_40nm.xml misex3.pre-vpr.blif common 7.77 vpr 64.44 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 86 14 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:50 gh-actions-runner-vtr-auto-spawned135 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65984 14 14 828 842 0 506 114 12 12 144 clb auto 26.9 MiB 0.37 4946 8118 1259 6320 539 64.4 MiB 0.19 0.01 4.99427 -64.5608 -4.99427 nan 0.37 0.00211355 0.00186547 0.0833963 0.074194 50 7449 35 1.8e+06 1.548e+06 439064. 3049.06 4.35 0.920941 0.800099 11896 86528 -1 6915 25 4736 20579 777903 117189 4.85973 nan -63.5848 -4.85973 0 0 562980. 3909.58 0.18 0.37 0.08 -1 -1 0.18 0.148807 0.134079 -k6_N10_40nm.xml pdc.pre-vpr.blif common 33.01 vpr 82.99 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 311 16 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:50 gh-actions-runner-vtr-auto-spawned135 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84984 16 40 2839 2879 0 1521 367 20 20 400 clb auto 46.4 MiB 1.35 24941 68643 17504 47903 3236 83.0 MiB 1.44 0.03 7.11101 -257.274 -7.11101 nan 1.36 0.00744919 0.00604379 0.482496 0.405502 78 41725 45 5.832e+06 5.598e+06 2.00674e+06 5016.85 18.40 3.44483 2.89111 41300 418538 -1 35794 21 11768 65698 3038822 387442 7.18904 nan -255.486 -7.18904 0 0 2.53133e+06 6328.34 0.94 1.47 0.42 -1 -1 0.94 0.543167 0.482265 -k6_N10_40nm.xml s298.pre-vpr.blif common 5.30 vpr 63.47 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 77 4 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:50 gh-actions-runner-vtr-auto-spawned135 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64992 4 6 726 732 1 405 87 11 11 121 clb auto 25.8 MiB 0.32 3932 4503 604 3722 177 63.5 MiB 0.12 0.00 7.20975 -57.1746 -7.20975 7.20975 0.30 0.00166347 0.00143928 0.0567918 0.0510537 44 6222 32 1.458e+06 1.386e+06 324964. 2685.65 2.08 0.534956 0.467537 9582 65203 -1 5554 23 3368 16222 637492 96172 6.94914 6.94914 -58.3727 -6.94914 0 0 420935. 3478.80 0.13 0.31 0.06 -1 -1 0.13 0.133267 0.120808 -k6_N10_40nm.xml s38584.1.pre-vpr.blif common 42.39 vpr 87.91 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 376 38 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:50 gh-actions-runner-vtr-auto-spawned135 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 90024 39 304 4677 4982 1 2202 719 22 22 484 clb auto 50.5 MiB 1.20 15134 255020 73345 166893 14782 87.9 MiB 2.48 0.03 5.66276 -3253.04 -5.66276 5.66276 1.70 0.00895338 0.0080486 0.769275 0.668321 40 23370 39 7.2e+06 6.768e+06 1.34575e+06 2780.48 12.86 4.27094 3.66185 37996 272632 -1 21030 29 11717 32882 1453579 252466 5.64983 5.64983 -3333.79 -5.64983 0 0 1.68761e+06 3486.79 0.72 1.11 0.25 -1 -1 0.72 0.683978 0.600785 -k6_N10_40nm.xml seq.pre-vpr.blif common 10.86 vpr 66.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 101 41 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:50 gh-actions-runner-vtr-auto-spawned135 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67768 41 35 1006 1041 0 615 177 13 13 169 clb auto 28.6 MiB 0.51 6961 16049 2946 11365 1738 66.2 MiB 0.27 0.01 5.03195 -143.664 -5.03195 nan 0.45 0.00259569 0.0022472 0.102585 0.091288 60 12020 38 2.178e+06 1.818e+06 630658. 3731.70 6.85 1.30662 1.13307 15198 124941 -1 10354 24 5139 23293 962130 137023 5.06992 nan -144.115 -5.06992 0 0 788291. 4664.44 0.25 0.44 0.12 -1 -1 0.25 0.175092 0.157621 -k6_N10_40nm.xml spla.pre-vpr.blif common 20.76 vpr 77.89 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 241 16 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:50 gh-actions-runner-vtr-auto-spawned135 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79760 16 46 2232 2278 0 1201 303 18 18 324 clb auto 40.5 MiB 1.05 17032 51153 12014 36600 2539 77.9 MiB 1.04 0.02 6.29481 -217.773 -6.29481 nan 1.01 0.00634457 0.00524369 0.372158 0.314051 70 30122 46 4.608e+06 4.338e+06 1.48298e+06 4577.10 9.54 2.28636 1.93005 31752 300704 -1 25154 21 9819 54210 2459519 309528 6.20862 nan -218.942 -6.20862 0 0 1.85205e+06 5716.21 0.67 1.10 0.31 -1 -1 0.67 0.400553 0.355764 -k6_N10_40nm.xml tseng.pre-vpr.blif common 6.78 vpr 66.42 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 105 52 -1 -1 success ee5eb02-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-16T14:20:50 gh-actions-runner-vtr-auto-spawned135 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68012 52 122 1461 1583 1 525 279 13 13 169 clb auto 28.5 MiB 0.31 3192 45829 11147 32251 2431 66.4 MiB 0.37 0.01 5.68935 -1256.78 -5.68935 5.68935 0.45 0.00254401 0.00225098 0.140974 0.124712 30 5287 29 2.178e+06 1.89e+06 350324. 2072.92 2.82 0.851944 0.744919 12006 67531 -1 4334 25 2585 6950 258089 51105 5.34065 5.34065 -1250.43 -5.34065 0 0 430798. 2549.10 0.16 0.22 0.06 -1 -1 0.16 0.142636 0.127565 +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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_40nm.xml alu4.pre-vpr.blif common 8.55 vpr 64.16 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 97 14 -1 -1 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65700 14 8 926 934 0 517 119 12 12 144 clb auto 25.0 MiB 0.45 4999 8879 1390 6975 514 64.2 MiB 0.20 0.01 5.06551 -38.2757 -5.06551 nan 0.39 0.00158196 0.0012423 0.0754693 0.0645508 -1 -1 -1 -1 44 7317 35 1.8e+06 1.746e+06 394711. 2741.05 4.48 0.974727 0.839816 11464 79652 -1 6325 25 4240 16737 572059 90972 5.28978 nan -37.6562 -5.28978 0 0 511253. 3550.37 0.18 0.38 0.07 -1 -1 0.18 0.171255 0.155339 +k6_N10_40nm.xml apex2.pre-vpr.blif common 8.76 vpr 65.77 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 114 38 -1 -1 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 67348 39 3 1113 1117 0 676 156 13 13 169 clb auto 26.1 MiB 0.64 7918 14821 2638 10792 1391 65.8 MiB 0.42 0.01 5.90722 -17.5854 -5.90722 nan 0.47 0.00428283 0.00360168 0.158762 0.140089 -1 -1 -1 -1 62 12758 32 2.178e+06 2.052e+06 652532. 3861.14 3.88 0.891905 0.775114 15366 127615 -1 12093 24 6108 26868 1139076 155556 5.87992 nan -17.0763 -5.87992 0 0 801739. 4744.02 0.27 0.51 0.12 -1 -1 0.27 0.197711 0.179939 +k6_N10_40nm.xml apex4.pre-vpr.blif common 7.45 vpr 64.08 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 9 -1 -1 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65620 9 19 897 916 0 568 123 12 12 144 clb auto 24.7 MiB 0.49 6597 8358 1363 6514 481 64.1 MiB 0.19 0.01 5.19652 -86.8303 -5.19652 nan 0.44 0.00160423 0.00130893 0.0649628 0.0555845 -1 -1 -1 -1 62 10982 47 1.8e+06 1.71e+06 546237. 3793.31 3.33 0.741005 0.643997 13040 106280 -1 9579 21 5364 24872 1046880 149326 5.03227 nan -84.8202 -5.03227 0 0 671089. 4660.34 0.23 0.50 0.12 -1 -1 0.23 0.177829 0.163428 +k6_N10_40nm.xml bigkey.pre-vpr.blif common 9.99 vpr 65.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 94 229 -1 -1 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 66924 263 197 1372 1603 1 490 554 17 17 289 io auto 26.0 MiB 0.35 4212 164282 47526 106315 10441 65.4 MiB 0.78 0.02 3.05705 -725.981 -3.05705 3.05705 0.94 0.00334655 0.00301206 0.234591 0.208045 -1 -1 -1 -1 34 7528 42 4.05e+06 1.692e+06 688919. 2383.80 4.29 1.00599 0.908762 21366 134962 -1 6867 33 2424 13103 677175 119194 3.17846 3.17846 -777.926 -3.17846 0 0 845950. 2927.16 0.32 0.50 0.12 -1 -1 0.32 0.243965 0.224381 +k6_N10_40nm.xml clma.pre-vpr.blif common 53.86 vpr 99.28 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 378 62 -1 -1 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 101660 383 82 3674 4077 1 2351 843 22 22 484 clb auto 44.9 MiB 1.83 30549 402823 142899 206657 53267 89.2 MiB 5.23 0.05 8.7359 -383.85 -8.7359 8.7359 1.88 0.00834877 0.00695853 1.07286 0.923594 -1 -1 -1 -1 82 48712 38 7.2e+06 6.804e+06 2.55950e+06 5288.23 31.07 6.05508 5.20259 51036 532374 -1 43297 30 19011 83057 4028148 511030 8.46475 8.46475 -382.529 -8.46475 0 0 3.19792e+06 6607.28 1.18 1.87 0.56 -1 -1 1.18 0.724703 0.653856 +k6_N10_40nm.xml des.pre-vpr.blif common 9.27 vpr 63.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 101 256 -1 -1 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64720 256 245 954 1199 0 613 602 18 18 324 io auto 24.3 MiB 0.27 5159 153062 41234 104524 7304 63.2 MiB 0.60 0.01 4.28923 -781.99 -4.28923 nan 1.03 0.002153 0.00196752 0.148706 0.1361 -1 -1 -1 -1 34 8066 28 4.608e+06 1.818e+06 779010. 2404.35 3.63 0.821265 0.765208 24000 152888 -1 7164 19 2563 6031 374253 76766 4.50349 nan -804.077 -4.50349 0 0 956463. 2952.05 0.40 0.27 0.14 -1 -1 0.40 0.135267 0.127789 +k6_N10_40nm.xml diffeq.pre-vpr.blif common 7.93 vpr 64.43 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 64 -1 -1 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65980 64 39 1371 1410 1 554 198 12 12 144 clb auto 25.4 MiB 0.37 3793 23238 4852 16990 1396 64.4 MiB 0.28 0.01 6.24025 -1157.57 -6.24025 6.24025 0.39 0.00335821 0.00300612 0.102044 0.08794 -1 -1 -1 -1 40 5281 28 1.8e+06 1.71e+06 360446. 2503.10 3.45 1.01636 0.871411 11036 71301 -1 4925 24 2937 9067 339685 56676 5.88073 5.88073 -1121.49 -5.88073 0 0 452692. 3143.70 0.15 0.20 0.06 -1 -1 0.15 0.116545 0.103723 +k6_N10_40nm.xml dsip.pre-vpr.blif common 10.21 vpr 64.30 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 97 229 -1 -1 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65840 229 197 1370 1567 1 538 523 16 16 256 io auto 24.9 MiB 0.38 4415 147943 42606 98009 7328 64.3 MiB 0.77 0.02 3.18783 -727.102 -3.18783 3.18783 0.79 0.00326911 0.00293461 0.205804 0.181127 -1 -1 -1 -1 34 7936 31 3.528e+06 1.746e+06 604079. 2359.69 4.76 1.08751 0.989647 18880 118149 -1 7501 20 2885 10852 600445 118475 3.31799 3.31799 -783.818 -3.31799 0 0 742044. 2898.61 0.30 0.37 0.11 -1 -1 0.30 0.160366 0.148406 +k6_N10_40nm.xml elliptic.pre-vpr.blif common 29.63 vpr 76.77 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 235 131 -1 -1 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 78608 131 114 3421 3535 1 1210 480 18 18 324 clb auto 35.8 MiB 1.20 11509 124428 34916 83664 5848 76.8 MiB 1.47 0.02 7.81896 -4594.55 -7.81896 7.81896 1.23 0.00490272 0.00416823 0.501458 0.437676 -1 -1 -1 -1 52 19076 33 4.608e+06 4.23e+06 1.09957e+06 3393.73 11.32 2.52655 2.16379 27876 225772 -1 16531 29 8448 38500 1750625 246163 8.69104 8.69104 -4955.1 -8.69104 0 0 1.44575e+06 4462.18 0.56 1.06 0.23 -1 -1 0.56 0.518916 0.469916 +k6_N10_40nm.xml ex1010.pre-vpr.blif common 32.22 vpr 80.43 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 299 10 -1 -1 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 82360 10 10 2659 2669 0 1414 319 20 20 400 clb auto 38.2 MiB 1.56 26484 59125 15547 41544 2034 80.4 MiB 1.48 0.02 6.80918 -66.5982 -6.80918 nan 1.65 0.00611757 0.00502514 0.401782 0.339863 -1 -1 -1 -1 88 45411 38 5.832e+06 5.382e+06 2.22978e+06 5574.46 18.53 2.68233 2.289 43692 465500 -1 39456 22 11837 71298 3838439 446395 6.90678 nan -65.5747 -6.90678 0 0 2.79850e+06 6996.25 1.31 1.85 0.49 -1 -1 1.31 0.576954 0.526166 +k6_N10_40nm.xml ex5p.pre-vpr.blif common 8.67 vpr 62.95 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 82 8 -1 -1 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64460 8 63 761 824 0 451 153 12 12 144 clb auto 24.0 MiB 0.36 4546 14468 2684 10639 1145 62.9 MiB 0.26 0.01 4.52309 -198.681 -4.52309 nan 0.49 0.00118271 0.000925606 0.101229 0.0900942 -1 -1 -1 -1 48 7679 49 1.8e+06 1.476e+06 423548. 2941.31 5.16 1.03606 0.893613 11752 84318 -1 6741 20 4041 16856 693280 109643 4.56024 nan -202.106 -4.56024 0 0 546237. 3793.31 0.18 0.27 0.08 -1 -1 0.18 0.102123 0.0923636 +k6_N10_40nm.xml frisc.pre-vpr.blif common 32.16 vpr 76.61 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 242 20 -1 -1 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 78444 20 116 3175 3291 1 1258 378 18 18 324 clb auto 35.6 MiB 1.06 15200 83704 21342 56824 5538 76.6 MiB 1.48 0.02 10.1942 -5061.1 -10.1942 10.1942 1.08 0.00401498 0.00333417 0.448156 0.384818 -1 -1 -1 -1 66 23294 41 4.608e+06 4.356e+06 1.41374e+06 4363.40 14.13 3.13219 2.66893 30784 283492 -1 20823 28 8182 34116 1795170 239772 10.1571 10.1571 -5117.17 -10.1571 0 0 1.74632e+06 5389.88 0.72 1.14 0.28 -1 -1 0.72 0.542692 0.493117 +k6_N10_40nm.xml misex3.pre-vpr.blif common 5.65 vpr 63.42 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 86 14 -1 -1 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 64940 14 14 828 842 0 506 114 12 12 144 clb auto 24.3 MiB 0.38 4991 8118 1153 6434 531 63.4 MiB 0.15 0.00 5.13587 -64.2902 -5.13587 nan 0.37 0.0011707 0.000925661 0.048805 0.0408116 -1 -1 -1 -1 50 8073 34 1.8e+06 1.548e+06 439064. 3049.06 2.16 0.446754 0.377437 11896 86528 -1 6977 26 4796 20765 798472 121233 4.85006 nan -63.2822 -4.85006 0 0 562980. 3909.58 0.18 0.32 0.08 -1 -1 0.18 0.125351 0.112776 +k6_N10_40nm.xml pdc.pre-vpr.blif common 32.76 vpr 81.49 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 311 16 -1 -1 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 83448 16 40 2839 2879 0 1523 367 20 20 400 clb auto 39.0 MiB 1.43 24942 64704 16677 44788 3239 81.5 MiB 1.42 0.03 7.27693 -259.552 -7.27693 nan 1.26 0.00568217 0.00467654 0.369104 0.312774 -1 -1 -1 -1 78 41220 45 5.832e+06 5.598e+06 2.00674e+06 5016.85 17.01 2.93999 2.50795 41300 418538 -1 36144 27 12902 71935 3331960 415531 7.24242 nan -258.014 -7.24242 0 0 2.53133e+06 6328.34 1.04 1.94 0.55 -1 -1 1.04 0.660417 0.596839 +k6_N10_40nm.xml s298.pre-vpr.blif common 5.60 vpr 61.77 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 77 4 -1 -1 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 63252 4 6 726 732 1 405 87 11 11 121 clb auto 22.7 MiB 0.33 3977 4119 472 3530 117 61.8 MiB 0.10 0.00 7.38718 -56.765 -7.38718 7.38718 0.30 0.00133896 0.00108184 0.0368954 0.0314565 -1 -1 -1 -1 44 5890 23 1.458e+06 1.386e+06 324964. 2685.65 2.24 0.609443 0.540495 9582 65203 -1 5254 19 3129 14914 527685 80308 7.3132 7.3132 -57.2714 -7.3132 0 0 420935. 3478.80 0.14 0.21 0.06 -1 -1 0.14 0.0896852 0.0815176 +k6_N10_40nm.xml s38584.1.pre-vpr.blif common 38.22 vpr 84.25 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 376 38 -1 -1 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 86272 39 304 4677 4982 1 2202 719 22 22 484 clb auto 42.8 MiB 1.32 15650 242144 68758 160205 13181 84.2 MiB 2.35 0.03 5.44641 -3327.79 -5.44641 5.44641 1.71 0.00656979 0.00543636 0.565273 0.475594 -1 -1 -1 -1 40 24228 47 7.2e+06 6.768e+06 1.34575e+06 2780.48 7.44 2.63965 2.26236 37996 272632 -1 21279 23 11874 32892 1399589 243648 5.92989 5.92989 -3408.15 -5.92989 0 0 1.68761e+06 3486.79 0.79 1.17 0.26 -1 -1 0.79 0.690226 0.635166 +k6_N10_40nm.xml seq.pre-vpr.blif common 8.81 vpr 63.88 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 101 41 -1 -1 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65408 41 35 1006 1041 0 615 177 13 13 169 clb auto 24.5 MiB 0.49 6944 18033 3441 12761 1831 63.9 MiB 0.33 0.01 5.06306 -144.978 -5.06306 nan 0.45 0.00364476 0.00320262 0.109417 0.0945381 -1 -1 -1 -1 56 11680 34 2.178e+06 1.818e+06 580647. 3435.78 4.35 0.988846 0.86544 14694 116443 -1 10597 27 5797 27392 1163582 167814 5.66737 nan -145.761 -5.66737 0 0 743711. 4400.66 0.24 0.51 0.10 -1 -1 0.24 0.212922 0.194882 +k6_N10_40nm.xml spla.pre-vpr.blif common 21.16 vpr 76.15 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 247 16 -1 -1 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 77976 16 46 2232 2278 0 1199 309 18 18 324 clb auto 34.4 MiB 1.15 17279 43113 9193 31493 2427 76.1 MiB 1.44 0.03 6.43461 -229.123 -6.43461 nan 1.23 0.00792158 0.00661981 0.410443 0.353326 -1 -1 -1 -1 70 28837 35 4.608e+06 4.446e+06 1.48298e+06 4577.10 7.91 1.8057 1.54802 31752 300704 -1 25754 24 9647 52568 2412425 314678 6.5762 nan -233.44 -6.5762 0 0 1.85205e+06 5716.21 0.66 1.20 0.29 -1 -1 0.66 0.47383 0.434105 +k6_N10_40nm.xml tseng.pre-vpr.blif common 5.45 vpr 64.27 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 105 52 -1 -1 success v8.0.0-11160-g9b23a7edd-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-07T07:28:02 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 65816 52 122 1461 1583 1 525 279 13 13 169 clb auto 25.2 MiB 0.34 3205 42185 9478 30169 2538 64.3 MiB 0.30 0.01 5.73017 -1218.51 -5.73017 5.73017 0.48 0.00160768 0.00134372 0.0787468 0.0649553 -1 -1 -1 -1 30 5038 31 2.178e+06 1.89e+06 350324. 2072.92 0.92 0.326072 0.27382 12006 67531 -1 4389 18 2512 6814 252428 49786 5.32906 5.32906 -1222.04 -5.32906 0 0 430798. 2549.10 0.15 0.26 0.06 -1 -1 0.15 0.14434 0.131338 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 4e9ea14f313..7fc0b70f933 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 367.70 vpr 255.37 MiB -1 -1 31.14 121716 20 43.19 -1 -1 67472 -1 -1 852 133 25 0 success v8.0.0-11338-g859198ca6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-20T21:37:26 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 261500 133 179 14228 14085 1 7083 1189 37 37 1369 clb auto 123.8 MiB 53.10 117836 599309 196739 380552 22018 182.5 MiB 11.63 0.11 23.1215 -208573 -23.1215 23.1215 3.38 0.0382481 0.0333622 3.95983 3.37186 106 179556 26 7.54166e+07 5.96187e+07 9.14078e+06 6676.98 198.76 17.2336 14.3118 197548 1947000 -1 164690 15 31392 123620 10307277 1812580 24.0339 24.0339 -215080 -24.0339 0 0 1.15824e+07 8460.47 3.43 4.41 1.98 -1 -1 3.43 1.92455 1.68797 -k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 496.43 vpr 745.26 MiB -1 -1 60.99 614664 14 58.39 -1 -1 121832 -1 -1 2715 257 0 11 success v8.0.0-11338-g859198ca6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-20T21:37:26 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 763148 257 32 36080 33722 1 19553 3015 63 63 3969 clb auto 300.4 MiB 90.38 246763 2158443 772925 1359244 26274 745.3 MiB 50.19 0.44 19.4596 -25520.8 -19.4596 19.4596 34.09 0.0952443 0.0781376 10.2209 8.54358 74 397392 33 2.36641e+08 1.5068e+08 2.02178e+07 5093.92 125.28 35.3079 29.1402 502298 4195434 -1 378911 20 104646 475755 22175267 3259151 19.4991 19.4991 -26097.4 -19.4991 0 0 2.53694e+07 6391.88 7.41 11.68 3.81 -1 -1 7.41 5.48104 4.77976 -k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 89.32 parmys 244.67 MiB -1 -1 14.59 250544 5 3.77 -1 -1 54964 -1 -1 487 36 0 0 success v8.0.0-11338-g859198ca6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-20T21:37:26 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 140608 36 100 10178 7632 1 2732 623 28 28 784 clb auto 89.3 MiB 20.76 41184 242592 73081 153746 15765 136.0 MiB 4.27 0.04 14.9875 -2383.56 -14.9875 14.9875 1.86 0.0193649 0.0174862 1.8419 1.62956 72 69983 32 4.25198e+07 2.62464e+07 3.68518e+06 4700.49 29.46 6.72933 5.81422 95106 749155 -1 63097 16 12536 64454 2770164 398593 15.2548 15.2548 -2604.77 -15.2548 0 0 4.61751e+06 5889.69 1.22 1.66 0.66 -1 -1 1.22 0.9881 0.887227 -k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 24.90 vpr 69.71 MiB -1 -1 17.50 44848 3 0.69 -1 -1 35456 -1 -1 44 196 1 0 success v8.0.0-11338-g859198ca6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-20T21:37:26 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71380 196 193 1201 1346 1 607 434 15 15 225 io auto 31.1 MiB 0.78 2881 141646 37557 91040 13049 69.7 MiB 0.68 0.01 2.23678 -1115.4 -2.23678 2.23678 0.47 0.00362552 0.00335236 0.325459 0.302516 54 5510 24 1.03862e+07 2.91934e+06 739051. 3284.67 2.07 1.13914 1.04556 23798 149426 -1 4937 10 1403 2096 114005 28759 2.55976 2.55976 -1206.25 -2.55976 0 0 960420. 4268.53 0.21 0.13 0.14 -1 -1 0.21 0.102543 0.0959233 -k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 3.69 vpr 65.11 MiB -1 -1 0.45 18616 3 0.09 -1 -1 33168 -1 -1 68 99 1 0 success v8.0.0-11338-g859198ca6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-20T21:37:26 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66668 99 130 344 474 1 227 298 12 12 144 clb auto 26.5 MiB 0.27 552 74923 20922 40083 13918 65.1 MiB 0.26 0.00 1.839 -120.424 -1.839 1.839 0.28 0.00129199 0.00122277 0.102042 0.0965578 48 1164 17 5.66058e+06 4.21279e+06 394078. 2736.65 0.91 0.367475 0.337745 13662 75965 -1 1145 11 414 679 32589 9455 1.91109 1.91109 -137.23 -1.91109 0 0 503203. 3494.47 0.10 0.05 0.08 -1 -1 0.10 0.035192 0.0325943 -k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 8.85 vpr 68.35 MiB -1 -1 0.55 22080 5 0.17 -1 -1 33736 -1 -1 32 162 0 5 success v8.0.0-11338-g859198ca6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-20T21:37:26 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69992 162 96 1075 892 1 666 295 16 16 256 mult_36 auto 29.4 MiB 0.41 5055 92509 33442 52071 6996 68.4 MiB 0.64 0.01 15.9193 -1240.37 -15.9193 15.9193 0.53 0.00315432 0.00296675 0.30951 0.291232 58 9876 32 1.21132e+07 3.70461e+06 904541. 3533.36 3.90 1.06328 0.982011 27572 180683 -1 8878 22 3192 5533 1083737 291539 17.1532 17.1532 -1343.36 -17.1532 0 0 1.15318e+06 4504.63 0.25 0.38 0.17 -1 -1 0.25 0.151927 0.140762 -k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 9.76 vpr 66.72 MiB -1 -1 0.41 21008 5 0.12 -1 -1 33248 -1 -1 22 66 0 5 success v8.0.0-11338-g859198ca6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-20T21:37:26 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 68324 66 96 778 595 1 467 189 16 16 256 mult_36 auto 28.0 MiB 0.53 3573 45175 14938 25152 5085 66.7 MiB 0.39 0.01 12.2285 -757.263 -12.2285 12.2285 0.53 0.00230803 0.00218323 0.2038 0.192801 50 8523 27 1.21132e+07 3.16567e+06 780532. 3048.95 5.44 0.750368 0.693192 26044 153858 -1 7163 20 2809 5509 1198298 310403 12.8568 12.8568 -832.718 -12.8568 0 0 1.00276e+06 3917.05 0.22 0.35 0.15 -1 -1 0.22 0.103269 0.0956276 -k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 477.77 vpr 610.11 MiB -1 -1 74.15 447368 97 66.41 -1 -1 112860 -1 -1 2136 114 45 8 success v8.0.0-11338-g859198ca6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-20T21:37:26 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 624756 114 102 35834 31925 1 16958 2405 56 56 3136 clb auto 280.9 MiB 74.85 224009 1838489 687206 1122174 29109 610.1 MiB 43.99 0.37 73.2586 -54434.5 -73.2586 73.2586 25.39 0.0872279 0.0767864 11.3837 9.50435 98 329588 26 1.8697e+08 1.42948e+08 2.01848e+07 6436.49 127.02 42.0754 34.7844 445422 4317135 -1 307706 23 65057 254480 13440564 2273392 73.6114 73.6114 -66011.6 -73.6114 0 0 2.55970e+07 8162.30 7.57 9.08 4.07 -1 -1 7.57 5.51456 4.75525 -k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 84.01 vpr 348.96 MiB -1 -1 16.34 116488 5 3.04 -1 -1 44588 -1 -1 476 506 44 0 success v8.0.0-11338-g859198ca6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-20T21:37:26 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 357332 506 553 3236 3734 1 2872 1579 50 50 2500 memory auto 51.4 MiB 4.55 14901 1187218 580691 417492 189035 349.0 MiB 5.50 0.06 8.03883 -2150.62 -8.03883 8.03883 20.16 0.0219445 0.0197475 3.01805 2.69551 38 23357 13 1.47946e+08 4.97661e+07 6.86579e+06 2746.32 16.17 8.00614 7.23691 258216 1426232 -1 22374 13 4016 5175 1160600 269604 8.64853 8.64853 -2567.37 -8.64853 0 0 8.69102e+06 3476.41 2.54 0.98 1.23 -1 -1 2.54 0.768259 0.710936 -k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 15.62 vpr 71.84 MiB -1 -1 1.59 25704 2 0.12 -1 -1 34256 -1 -1 30 311 15 0 success v8.0.0-11338-g859198ca6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-20T21:37:26 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73560 311 156 1015 1158 1 965 512 28 28 784 memory auto 31.3 MiB 0.71 8349 207259 73816 122605 10838 71.5 MiB 1.13 0.01 4.5269 -4365.4 -4.5269 4.5269 1.82 0.00557979 0.00495316 0.591587 0.523027 36 15431 16 4.25198e+07 9.83682e+06 1.94918e+06 2486.20 5.13 1.87474 1.66248 76314 389223 -1 13730 14 2745 3128 742950 198312 4.95855 4.95855 -4919.44 -4.95855 0 0 2.40571e+06 3068.51 0.62 0.35 0.34 -1 -1 0.62 0.198937 0.179955 -k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 30.34 vpr 81.54 MiB -1 -1 7.90 51664 5 1.68 -1 -1 39548 -1 -1 168 193 5 0 success v8.0.0-11338-g859198ca6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-20T21:37:26 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83496 193 205 2718 2652 1 1369 571 20 20 400 memory auto 40.9 MiB 2.87 10575 249211 90019 133068 26124 81.5 MiB 1.85 0.02 5.53026 -2784.54 -5.53026 5.53026 0.88 0.00736758 0.00665018 0.813283 0.731178 50 19323 46 2.07112e+07 1.17942e+07 1.26946e+06 3173.65 10.12 2.82678 2.51542 41784 253636 -1 16442 15 4721 11413 624128 127185 5.79232 5.79232 -3051.63 -5.79232 0 0 1.63222e+06 4080.54 0.38 0.47 0.23 -1 -1 0.38 0.305266 0.279833 -k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 52.69 vpr 103.67 MiB -1 -1 6.46 61980 8 3.05 -1 -1 42504 -1 -1 244 385 2 1 success v8.0.0-11338-g859198ca6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-20T21:37:26 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 106160 385 362 4415 4299 1 2362 994 26 26 676 io auto 53.0 MiB 8.08 29183 556290 212335 319704 24251 96.0 MiB 4.62 0.06 9.18054 -9446.5 -9.18054 9.18054 1.60 0.0153406 0.0142679 1.6251 1.49464 92 44179 23 3.69863e+07 1.46421e+07 3.92083e+06 5800.04 19.57 6.55478 6.01499 91740 820014 -1 41506 20 9902 33047 1818146 309187 9.29877 9.29877 -10144.5 -9.29877 0 0 4.98093e+06 7368.25 1.26 1.22 0.75 -1 -1 1.26 0.737495 0.685759 -k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 23.72 vpr 82.93 MiB -1 -1 4.66 41280 3 0.68 -1 -1 37620 -1 -1 123 236 1 6 success v8.0.0-11338-g859198ca6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-20T21:37:26 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84920 236 305 3199 3011 1 1513 671 19 19 361 io auto 42.5 MiB 2.68 12095 282527 93676 174328 14523 82.9 MiB 1.90 0.02 4.7904 -2847.33 -4.7904 4.7904 0.79 0.00802231 0.00741571 0.83035 0.764718 64 23617 30 1.72706e+07 9.55296e+06 1.47376e+06 4082.44 8.06 2.93159 2.67701 41203 295207 -1 21366 18 6086 15313 1635446 361729 5.15058 5.15058 -3067.02 -5.15058 0 0 1.84179e+06 5101.91 0.41 0.71 0.27 -1 -1 0.41 0.378054 0.350113 -k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 27.93 vpr 80.84 MiB -1 -1 3.34 43892 3 1.04 -1 -1 37908 -1 -1 139 38 0 0 success v8.0.0-11338-g859198ca6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-20T21:37:26 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82784 38 36 2739 2488 1 1037 213 16 16 256 clb auto 40.3 MiB 1.92 9128 40218 10132 27089 2997 80.8 MiB 0.78 0.01 10.3799 -2787.19 -10.3799 10.3799 0.53 0.00516063 0.00454781 0.364504 0.32122 56 16068 50 1.21132e+07 7.49127e+06 870502. 3400.40 16.23 3.24393 2.75453 27064 172478 -1 13809 24 5138 11418 504076 89163 11.2466 11.2466 -3173.01 -11.2466 0 0 1.11200e+06 4343.75 0.24 0.45 0.16 -1 -1 0.24 0.309246 0.27251 -k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 16.60 vpr 71.74 MiB -1 -1 3.69 31628 16 0.38 -1 -1 34936 -1 -1 61 45 3 1 success v8.0.0-11338-g859198ca6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-20T21:37:26 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73464 45 32 1192 1151 1 777 142 14 14 196 memory auto 32.8 MiB 2.49 6770 27892 7763 16391 3738 71.7 MiB 0.52 0.01 10.6266 -7111.67 -10.6266 10.6266 0.40 0.00344149 0.0030467 0.283243 0.250631 66 13438 26 9.20055e+06 5.32753e+06 787562. 4018.17 6.30 1.10022 0.952047 22236 154735 -1 11272 15 3555 9222 855714 196445 11.011 11.011 -7492.44 -11.011 0 0 978561. 4992.66 0.22 0.20 0.15 -1 -1 0.22 0.102289 0.0949868 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 83.52 vpr 228.48 MiB -1 -1 12.86 98772 5 5.48 -1 -1 66316 -1 -1 705 169 0 0 success v8.0.0-11338-g859198ca6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-20T21:37:26 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 233960 169 197 23225 21365 1 6465 1071 33 33 1089 clb auto 146.8 MiB 9.53 38502 581633 189279 364211 28143 204.5 MiB 6.96 0.07 3.48434 -13716.4 -3.48434 3.48434 2.73 0.0289844 0.0247237 3.24148 2.73894 50 61758 38 6.0475e+07 3.79954e+07 3.66263e+06 3363.29 26.97 11.5367 9.59015 117303 744553 -1 54195 15 15816 25265 1003144 195297 4.08695 4.08695 -15188 -4.08695 0 0 4.71657e+06 4331.10 1.14 1.65 0.62 -1 -1 1.14 1.50588 1.34017 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 132.56 vpr 267.11 MiB -1 -1 11.37 121076 3 8.48 -1 -1 74232 -1 -1 676 115 0 40 success v8.0.0-11338-g859198ca6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-20T21:37:26 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 273516 115 145 22864 19301 1 9618 976 40 40 1600 mult_36 auto 143.3 MiB 8.61 78318 518749 168154 327137 23458 211.5 MiB 8.26 0.09 5.07351 -23104.7 -5.07351 5.07351 4.20 0.0300223 0.0258337 3.50358 2.97601 84 131724 41 9.16046e+07 5.2273e+07 8.77086e+06 5481.79 65.52 15.3224 12.8424 210428 1853892 -1 115201 16 33583 50208 8812164 1814028 5.17295 5.17295 -26324.8 -5.17295 0 0 1.11533e+07 6970.83 3.12 3.48 1.70 -1 -1 3.12 1.66894 1.49038 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 369.48 vpr 1022.46 MiB -1 -1 14.48 194064 3 5.72 -1 -1 152152 -1 -1 1500 149 0 179 success v8.0.0-11338-g859198ca6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-20T21:37:26 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1047000 149 182 55415 37074 1 28634 2010 80 80 6400 mult_36 auto 293.6 MiB 22.08 289611 1739170 612856 1060789 65525 1022.5 MiB 37.73 0.26 14.0186 -51623.9 -14.0186 14.0186 58.77 0.0783948 0.0660188 11.4294 9.75543 96 414554 40 3.90281e+08 1.51724e+08 4.11781e+07 6434.07 150.78 41.1201 35.0147 901880 8701757 -1 380833 19 98955 116799 16016094 3153201 14.607 14.607 -56017.4 -14.607 0 0 5.14892e+07 8045.19 15.28 8.18 8.48 -1 -1 15.28 4.29498 3.80612 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 2.99 vpr 63.64 MiB -1 -1 0.94 22092 4 0.13 -1 -1 33308 -1 -1 15 11 0 0 success v8.0.0-11338-g859198ca6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-20T21:37:26 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65164 11 2 303 283 2 80 28 7 7 49 clb auto 25.2 MiB 0.21 257 1330 280 924 126 63.6 MiB 0.05 0.00 2.03512 -164.27 -2.03512 1.89824 0.06 0.000798357 0.000728318 0.029264 0.0269059 38 303 13 1.07788e+06 808410 91552.7 1868.42 0.32 0.177582 0.15151 3900 17126 -1 305 12 158 279 4674 1521 2.08112 1.97387 -171.184 -2.08112 0 0 117020. 2388.16 0.02 0.04 0.02 -1 -1 0.02 0.0262262 0.0233786 +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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 324.81 vpr 256.13 MiB -1 -1 25.08 126476 20 45.16 -1 -1 70516 -1 -1 852 133 25 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 262276 133 179 14228 14085 1 7083 1189 37 37 1369 clb auto 125.4 MiB 43.09 117836 599309 196739 380552 22018 183.8 MiB 12.23 0.12 23.1215 -208573 -23.1215 23.1215 4.06 0.0229932 0.0189934 2.55961 2.1197 -1 -1 -1 -1 106 179556 26 7.54166e+07 5.96187e+07 9.14078e+06 6676.98 171.07 11.7681 9.84887 197548 1947000 -1 164690 15 31392 123620 10307277 1812580 24.0339 24.0339 -215080 -24.0339 0 0 1.15824e+07 8460.47 3.80 3.36 1.97 -1 -1 3.80 1.57347 1.43291 +k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 509.69 vpr 746.12 MiB -1 -1 51.37 650124 14 72.14 -1 -1 123724 -1 -1 2715 257 0 11 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 764024 257 32 36080 33722 1 19553 3015 63 63 3969 clb auto 301.6 MiB 92.59 246763 2158443 772925 1359244 26274 746.1 MiB 59.23 0.53 19.4596 -25520.8 -19.4596 19.4596 43.69 0.0991431 0.0880274 11.4343 9.85355 -1 -1 -1 -1 74 397392 33 2.36641e+08 1.5068e+08 2.02178e+07 5093.92 116.44 33.3094 28.6876 502298 4195434 -1 378911 20 104646 475755 22175267 3259151 19.4991 19.4991 -26097.4 -19.4991 0 0 2.53694e+07 6391.88 8.94 10.08 4.11 -1 -1 8.94 4.89274 4.39544 +k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 88.72 parmys 272.51 MiB -1 -1 13.84 279048 5 4.67 -1 -1 58908 -1 -1 487 36 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 142748 36 100 10178 7632 1 2732 623 28 28 784 clb auto 91.0 MiB 21.95 41184 242592 73081 153746 15765 138.0 MiB 4.80 0.05 14.9875 -2383.56 -14.9875 14.9875 2.21 0.0129487 0.0110609 1.43682 1.24098 -1 -1 -1 -1 72 69983 32 4.25198e+07 2.62464e+07 3.68518e+06 4700.49 26.77 5.08409 4.38321 95106 749155 -1 63097 16 12536 64454 2770164 398593 15.2548 15.2548 -2604.77 -15.2548 0 0 4.61751e+06 5889.69 1.59 1.74 0.73 -1 -1 1.59 0.990711 0.917468 +k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 21.87 vpr 71.30 MiB -1 -1 14.91 49412 3 0.81 -1 -1 39432 -1 -1 44 196 1 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 73016 196 193 1201 1346 1 607 434 15 15 225 io auto 32.4 MiB 0.82 2881 141646 37557 91040 13049 71.3 MiB 0.48 0.01 2.23678 -1115.4 -2.23678 2.23678 0.53 0.00158296 0.00138302 0.152199 0.134459 -1 -1 -1 -1 54 5510 24 1.03862e+07 2.91934e+06 739051. 3284.67 1.73 0.5956 0.537331 23798 149426 -1 4937 10 1403 2096 114005 28759 2.55976 2.55976 -1206.25 -2.55976 0 0 960420. 4268.53 0.28 0.09 0.14 -1 -1 0.28 0.0735321 0.0698142 +k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 3.55 vpr 66.57 MiB -1 -1 0.43 22092 3 0.09 -1 -1 37168 -1 -1 68 99 1 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 68164 99 130 344 474 1 227 298 12 12 144 clb auto 27.7 MiB 0.27 552 74923 20922 40083 13918 66.6 MiB 0.18 0.00 1.839 -120.424 -1.839 1.839 0.34 0.000489282 0.000433246 0.0407589 0.0362824 -1 -1 -1 -1 48 1164 17 5.66058e+06 4.21279e+06 394078. 2736.65 0.80 0.164534 0.149196 13662 75965 -1 1145 11 414 679 32589 9455 1.91109 1.91109 -137.23 -1.91109 0 0 503203. 3494.47 0.15 0.03 0.08 -1 -1 0.15 0.0208013 0.0195976 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 8.83 vpr 69.90 MiB -1 -1 0.64 25432 5 0.19 -1 -1 37896 -1 -1 32 162 0 5 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 71576 162 96 1075 892 1 666 295 16 16 256 mult_36 auto 30.9 MiB 0.46 5055 92509 33442 52071 6996 69.9 MiB 0.51 0.01 15.9193 -1240.37 -15.9193 15.9193 0.68 0.0015859 0.00140686 0.149834 0.132668 -1 -1 -1 -1 58 9876 32 1.21132e+07 3.70461e+06 904541. 3533.36 3.72 0.589142 0.532931 27572 180683 -1 8878 22 3192 5533 1083737 291539 17.1532 17.1532 -1343.36 -17.1532 0 0 1.15318e+06 4504.63 0.36 0.28 0.18 -1 -1 0.36 0.0947421 0.0880003 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 9.57 vpr 68.30 MiB -1 -1 0.32 24620 5 0.13 -1 -1 37276 -1 -1 22 66 0 5 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 69936 66 96 778 595 1 467 189 16 16 256 mult_36 auto 29.6 MiB 0.55 3573 45175 14938 25152 5085 68.3 MiB 0.29 0.00 12.2285 -757.263 -12.2285 12.2285 0.65 0.000995461 0.000883256 0.0922782 0.0822799 -1 -1 -1 -1 50 8523 27 1.21132e+07 3.16567e+06 780532. 3048.95 5.11 0.409745 0.372422 26044 153858 -1 7163 20 2809 5509 1198298 310403 12.8568 12.8568 -832.718 -12.8568 0 0 1.00276e+06 3917.05 0.32 0.30 0.16 -1 -1 0.32 0.0718146 0.0672527 +k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 496.51 vpr 606.34 MiB -1 -1 72.22 468060 97 78.25 -1 -1 116276 -1 -1 2136 114 45 8 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 620892 114 102 35834 31925 1 16958 2405 56 56 3136 clb auto 281.9 MiB 77.70 224009 1838489 687206 1122174 29109 592.9 MiB 49.97 0.44 73.2586 -54434.5 -73.2586 73.2586 35.07 0.106846 0.0950681 11.2949 9.47645 -1 -1 -1 -1 98 329588 26 1.8697e+08 1.42948e+08 2.01848e+07 6436.49 118.64 35.1763 29.5592 445422 4317135 -1 307706 23 65057 254480 13440564 2273392 73.6114 73.6114 -66011.6 -73.6114 0 0 2.55970e+07 8162.30 9.89 7.73 4.55 -1 -1 9.89 4.73122 4.20062 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 89.21 vpr 350.07 MiB -1 -1 14.46 122872 5 3.66 -1 -1 48824 -1 -1 476 506 44 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 358468 506 553 3236 3734 1 2872 1579 50 50 2500 memory auto 52.4 MiB 5.65 14901 1187218 580691 417492 189035 350.1 MiB 4.09 0.06 8.03883 -2150.62 -8.03883 8.03883 24.86 0.0144994 0.0130744 1.72128 1.53557 -1 -1 -1 -1 38 23357 13 1.47946e+08 4.97661e+07 6.86579e+06 2746.32 16.68 5.09572 4.66972 258216 1426232 -1 22374 13 4016 5175 1160600 269604 8.64853 8.64853 -2567.37 -8.64853 0 0 8.69102e+06 3476.41 3.61 0.88 1.28 -1 -1 3.61 0.659839 0.627228 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 16.51 vpr 73.62 MiB -1 -1 1.34 28964 2 0.14 -1 -1 38148 -1 -1 30 311 15 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 75384 311 156 1015 1158 1 965 512 28 28 784 memory auto 33.0 MiB 0.81 8349 207259 73816 122605 10838 73.5 MiB 0.91 0.01 4.5269 -4365.4 -4.5269 4.5269 2.44 0.0031902 0.00270961 0.342872 0.291936 -1 -1 -1 -1 36 15431 16 4.25198e+07 9.83682e+06 1.94918e+06 2486.20 5.12 1.17136 1.03587 76314 389223 -1 13730 14 2745 3128 742950 198312 4.95855 4.95855 -4919.44 -4.95855 0 0 2.40571e+06 3068.51 0.98 0.26 0.42 -1 -1 0.98 0.144488 0.133882 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 28.83 vpr 82.96 MiB -1 -1 6.82 56356 5 2.11 -1 -1 43248 -1 -1 168 193 5 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 84948 193 205 2718 2652 1 1369 571 20 20 400 memory auto 42.3 MiB 3.00 10575 249211 90019 133068 26124 83.0 MiB 1.86 0.03 5.53026 -2784.54 -5.53026 5.53026 1.17 0.00784051 0.00692952 0.538147 0.466394 -1 -1 -1 -1 50 19323 46 2.07112e+07 1.17942e+07 1.26946e+06 3173.65 9.03 1.8473 1.6227 41784 253636 -1 16442 15 4721 11413 624128 127185 5.79232 5.79232 -3051.63 -5.79232 0 0 1.63222e+06 4080.54 0.49 0.30 0.22 -1 -1 0.49 0.205107 0.189662 +k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 53.04 vpr 104.67 MiB -1 -1 5.55 66140 8 4.06 -1 -1 44600 -1 -1 244 385 2 1 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 107184 385 362 4415 4299 1 2362 994 26 26 676 io auto 54.5 MiB 8.84 29183 556290 212335 319704 24251 97.6 MiB 4.88 0.06 9.18054 -9446.5 -9.18054 9.18054 1.98 0.0101161 0.00915198 1.06062 0.942321 -1 -1 -1 -1 92 44179 23 3.69863e+07 1.46421e+07 3.92083e+06 5800.04 18.24 4.38791 3.98119 91740 820014 -1 41506 20 9902 33047 1818146 309187 9.29877 9.29877 -10144.5 -9.29877 0 0 4.98093e+06 7368.25 1.69 1.20 0.81 -1 -1 1.69 0.656737 0.615698 +k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 22.71 vpr 84.69 MiB -1 -1 4.15 46188 3 0.77 -1 -1 41180 -1 -1 123 236 1 6 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 86724 236 305 3199 3011 1 1513 671 19 19 361 io auto 44.2 MiB 3.02 12095 282527 93676 174328 14523 84.7 MiB 1.80 0.02 4.7904 -2847.33 -4.7904 4.7904 1.01 0.00475692 0.00419108 0.487869 0.427259 -1 -1 -1 -1 64 23617 30 1.72706e+07 9.55296e+06 1.47376e+06 4082.44 7.08 1.72231 1.53573 41203 295207 -1 21366 18 6086 15313 1635446 361729 5.15058 5.15058 -3067.02 -5.15058 0 0 1.84179e+06 5101.91 0.54 0.52 0.28 -1 -1 0.54 0.260433 0.242527 +k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 16.88 vpr 82.59 MiB -1 -1 2.61 47840 3 1.63 -1 -1 43276 -1 -1 139 38 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 84572 38 36 2739 2488 1 1037 213 16 16 256 clb auto 41.7 MiB 2.01 9128 40218 10132 27089 2997 82.6 MiB 0.75 0.01 10.3799 -2787.19 -10.3799 10.3799 0.67 0.0031974 0.00263526 0.226806 0.186202 -1 -1 -1 -1 56 16068 50 1.21132e+07 7.49127e+06 870502. 3400.40 4.79 1.22753 1.02924 27064 172478 -1 13809 24 5138 11418 504076 89163 11.2466 11.2466 -3173.01 -11.2466 0 0 1.11200e+06 4343.75 0.37 0.56 0.18 -1 -1 0.37 0.351289 0.320843 +k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 16.29 vpr 73.24 MiB -1 -1 3.23 35696 16 0.58 -1 -1 39152 -1 -1 61 45 3 1 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 74996 45 32 1192 1151 1 777 142 14 14 196 memory auto 34.4 MiB 2.71 6770 27892 7763 16391 3738 73.2 MiB 0.45 0.01 10.6266 -7111.67 -10.6266 10.6266 0.50 0.00151583 0.00118772 0.156468 0.127234 -1 -1 -1 -1 66 13438 26 9.20055e+06 5.32753e+06 787562. 4018.17 5.61 0.667494 0.564625 22236 154735 -1 11272 15 3555 9222 855714 196445 11.011 11.011 -7492.44 -11.011 0 0 978561. 4992.66 0.32 0.38 0.18 -1 -1 0.32 0.17151 0.160227 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 89.41 vpr 227.05 MiB -1 -1 12.23 103792 5 8.15 -1 -1 69768 -1 -1 705 169 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 232500 169 197 23225 21365 1 6465 1071 33 33 1089 clb auto 147.2 MiB 10.55 38502 581633 189279 364211 28143 205.0 MiB 7.73 0.08 3.48434 -13716.4 -3.48434 3.48434 3.44 0.029148 0.0255229 3.14458 2.71195 -1 -1 -1 -1 50 61758 38 6.0475e+07 3.79954e+07 3.66263e+06 3363.29 27.35 11.2456 9.67324 117303 744553 -1 54195 15 15816 25265 1003144 195297 4.08695 4.08695 -15188 -4.08695 0 0 4.71657e+06 4331.10 1.64 1.90 0.63 -1 -1 1.64 1.71176 1.5725 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 135.04 vpr 266.34 MiB -1 -1 10.10 125444 3 13.31 -1 -1 77788 -1 -1 676 115 0 40 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 272732 115 145 22864 19301 1 9618 976 40 40 1600 mult_36 auto 144.7 MiB 9.48 78318 518749 168154 327137 23458 213.1 MiB 8.43 0.09 5.07351 -23104.7 -5.07351 5.07351 5.17 0.0207948 0.0174979 2.67051 2.26501 -1 -1 -1 -1 84 131724 41 9.16046e+07 5.2273e+07 8.77086e+06 5481.79 63.02 12.7516 10.9727 210428 1853892 -1 115201 16 33583 50208 8812164 1814028 5.17295 5.17295 -26324.8 -5.17295 0 0 1.11533e+07 6970.83 3.53 3.20 1.89 -1 -1 3.53 1.54081 1.4174 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 398.05 vpr 1.00 GiB -1 -1 17.06 198672 3 6.49 -1 -1 156000 -1 -1 1500 149 0 179 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 1053036 149 182 55415 37074 1 28634 2010 80 80 6400 mult_36 auto 292.4 MiB 23.58 289611 1739170 612856 1060789 65525 1028.4 MiB 36.81 0.26 14.0186 -51623.9 -14.0186 14.0186 70.20 0.052047 0.0437678 8.407 7.16781 -1 -1 -1 -1 96 414554 40 3.90281e+08 1.51724e+08 4.11781e+07 6434.07 151.16 30.9254 26.7588 901880 8701757 -1 380833 19 98955 116799 16016094 3153201 14.607 14.607 -56017.4 -14.607 0 0 5.14892e+07 8045.19 21.03 10.13 10.35 -1 -1 21.03 5.43046 4.98055 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 2.48 vpr 65.96 MiB -1 -1 0.71 26472 4 0.15 -1 -1 36516 -1 -1 15 11 0 0 success v8.0.0-11451-g5181cb646 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-190-generic x86_64 2024-10-03T13:06:42 qlsof04.quicklogic.om /home/smahmoudi/Desktop/openfpga/OpenFPGA/vtr-verilog-to-routing/vtr_flow/tasks 67548 11 2 303 283 2 80 28 7 7 49 clb auto 27.5 MiB 0.23 257 1330 280 924 126 66.0 MiB 0.03 0.00 2.03512 -164.27 -2.03512 1.89824 0.07 0.000259772 0.000192209 0.0122172 0.009962 -1 -1 -1 -1 38 303 13 1.07788e+06 808410 91552.7 1868.42 0.22 0.0790984 0.0648563 3900 17126 -1 305 12 158 279 4674 1521 2.08112 1.97387 -171.184 -2.08112 0 0 117020. 2388.16 0.02 0.02 0.02 -1 -1 0.02 0.0175899 0.0160956 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 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